| Thread | Last Post | Replies |
|
| about variable | 18 Aug 2006 22:20 GMT | 4 |
Hi ,everyOne: i has a question, please help me. string strBB = "Hello World!"; string strAA = "strBB"
|
| Main form - Sub form problem | 18 Aug 2006 22:07 GMT | 1 |
I am building a Pocket PC application in C#. I have 5 forms (1 main and 4 sub forms). The main form must always load first. The sub forms are loaded from the main form. The application is run using Application.Run(new
|
| Displaying html stored in DB | 18 Aug 2006 21:58 GMT | 5 |
I am writing a web application using C#. I've come to the point that I need to display some html text that is stored in a database. Is there a server side control that I can use to show the html? In other words, read the data, then set the Text property (or something else) and it ...
|
| Representing a ulong as An Array of Bytes | 18 Aug 2006 21:54 GMT | 12 |
I need to store a uint in an array of bytes. Doing it old fashioned style works: byte[] b=new byte[8]; ulong ul = 1;
|
| Add Event that is viewable.. | 18 Aug 2006 21:35 GMT | 2 |
How do I add an event to an object (in this case a form) that is viewable in the GUI of VS2005? i.e. if I add the following to a form: public delegate void TestDelegate(int Test);
|
| Localizable=true has no effect | 18 Aug 2006 21:33 GMT | 2 |
I have a project with quite a number of dialogs in it all with Localizable=true, and all except one working fine. But the one is causing me trouble because even though Localizable=true is set, all strings (.Text properties and the like) are still written to
|
| Datagridview: Copy row to array | 18 Aug 2006 21:25 GMT | 3 |
My datagridview has columns with text AND integers. Please can someone help me with the code necessary to copy an entire selected row of mixed content cells to an array ? Thanks very much
|
| How to send SMS in VB.NET | 18 Aug 2006 21:20 GMT | 3 |
Dear Brothers and Sisters, Good evening to everybody, I am doing a new project in vb.net to send sms. I have searched for code in the internet. But , I couldn't find any
|
| web user control with ascx | 18 Aug 2006 20:33 GMT | 1 |
Hello has all, I am in .NET 2 and Visual Studio 2005 and I seek deseperement how to create a webusercontrol in the form of DLL (to insert it in the pallet tools of VS). Well on it is not a question of simple a usercontrol. I seek has to use a ascx allowing me to make my setting ...
|
| How do I update a datatable | 18 Aug 2006 20:29 GMT | 1 |
I need to loop through a datatable and update a particular field. This seems like it should be fairly easy but it is giving me fits. Here is the code that I have so far. foreach (DataRow row in dataTable.Rows)
|
| Global variable question. | 18 Aug 2006 20:02 GMT | 3 |
I'm switching over from VB and I have a question. Suppose I had a VB project with 2 forms and one variable. Call them Form1,Form2 and strUsername. Suppose I want to initialize strUsername to "jones" and use this value in Form1 and Form2 at any time.
|
| Inheritance problems with constructor | 18 Aug 2006 19:21 GMT | 3 |
if I create a Person, a Vehicle is created; that's fine. The problem is that if I create a Child the constuctor of Person is called before and a Vehicle is created then a Bike is created and the variable is overwritten. How can I prevent this?
|
| Reference datatable row without for loop | 18 Aug 2006 18:53 GMT | 6 |
If I have a datatable with 1 record only, can I reference the data in the row without a for loop? I can get to the data by using the following code, but it would be nice if I didn't have to use the For loop. foreach (DataRow row in dataTable.Rows)
|
| Read | 18 Aug 2006 18:20 GMT | 3 |
Lady only 24-Hrs +91 9810577227 Send email to info@lenstar.org get access code.
|
| FTP Drive Space | 18 Aug 2006 18:10 GMT | 2 |
I am developing a windows service with Visual Studio 2005 that automates the FTP of files to a remote server. I am wondering if anyone knows of a way I can programatically retrieve the available drive space on the remote server prior to the FTP transfer? I know that I can use
|