C#
C# (see section on name, pronunciation) is an object-oriented programming language developed by Microsoft as part of the .NET initiative and later approved as a standard by ECMA (ECMA-334) and ISO (ISO/IEC 23270).
Application
Any
Platform
Any
License
Any
Hi
please help me for windows mobile ...
I am using stylesheet in an xml file and load this xml file into webbrowser control in PDA application made in C#(.net 2.0 compact framework) .
Now I...
I am trying to read the following xml and I'm getting a null values when I try to access any node beyond the soap:Body node. Any ideas what I'm doing wrong?...
// Using properties, get & set keywords
//=====================================
class Point
{
int myX; // myX is private
int myY; // myY is private
public int x
{...
i just need to know what is wrong with it exactly plz if any1 could help me
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using...
Hi!
I am new to C# and asp.net network programming so I hope someone can point me to the right direction in starting what I want to do.
I want to make a windows form application in C# that...
follow the steps.
Image[] img=new Image[]{Image1,Image2,Image3,Image4};
img.CopyTo(goober,0);
Hope this can help.
http://msdn.microsoft.com/en-us/library/aa289500(VS.71).aspx
Well I don't expect any responses on this either but I suppose it doesn't hurt to ask:
Right now I have an array, and I want to assign all the Image objects to the indices of the array. So far...
new file at the top and create a new "class" file.
That's it. You can reference this class throughout your numerous codebehind files.
i want to make an application which can send sms or recieve sms from gsm modem to tracking unit device.
i want to write my own whole code means no outer libraries have to use within it.
i want...
Ok I'm using Visual Web Developer 2008 express.
I'd like to be able to write a class to handle the job of grabbing all the files in a folder, stuffing them into an array, creating thumbnails,...
Hi,
I have this line in C#
Stack dirs = new Stack(20);
that I need to convert in Visual C++.
It's a part of a source listing (http://msdn.microsoft.com/en-us/library/bb513869.aspx) that...
Hi,
I'm quite new in c# programming and I have a little problem, I hope you'll help me. :)
I have a txt file that looks something like this:
123456 Ivan Losko
098765 Irene Kik
732647 Bilo...
Hi All,
I am having a .NET based Web Application. I am tracking total time between request and response using "Fiddler" tool. For the same page on local machine page takes 4sec to load (2 sec on...
Even better if the Photos directory is underneath the web root you can do: HttpContext.Current.Server.MapPath("/Photos") which resolves to the full physical path. If you leave off the forward slash...
Just above the block of code you posted the tutorial states: "First of all add a data grid control and a button to your form using the Visual Studio toolbox. We have set the Name property of the data...
It sounds like whatever you are programming may be a bit too intense for the standard .NET framework libraries. You should look into using DirectX. I have personally never used DirectX under C#,...
Note the portion of the code where you have:
if(y != 0)
z = x / y;
txtBox.Text = Convert.ToString(z);
The compiler complains here because if the variable y is zero then z is never...
When you call dataGridView1.Columns.RemoveAt(0) the column at index 1 is automatically moved to index 0. Therefore to remove the first two columns you would call RemoveAt(0) twice.
I suspect you...