| Thread | Last Post | Replies |
|
| Creating symbolic links to files | 17 Jul 2007 20:41 GMT | 1 |
.NET 1.1 doesn't support creating symbolic links to files, like in Linux? Can i use C# to make a file point to another file? Thanks.
|
| ASPNET C# windows form and web form developing speed | 17 Jul 2007 20:21 GMT | 4 |
I am thinking in comparing developing speed between C# Windows Form and C# Web Form applications. Assuming the scenario is that we have 2 C# coding engineers, engineer A has 2 years experience on developing C# windows form, engineer B has 2
|
| Accessing %systemroot% value in code | 17 Jul 2007 19:31 GMT | 8 |
I can execute the following code, and it correctly decodes the system folder string. FileVersionInfo versionInfo = FileVersionInfo.GetVersionInfo("%systemroot%\\system32\\xyz.dll");
|
| administrative user or limited user | 17 Jul 2007 18:40 GMT | 2 |
I have a C# program that need to know whether the user that run the application is administrative user or limited user. Are there any methods in C# I can use?
|
| protected System.Web.UI.WebControls VS5 is removing | 17 Jul 2007 17:43 GMT | 4 |
I seem to be getting a lot of error messages regarding "The Name "whatever" does not exist in the current context" after Visual Studio 5 converts an older version of C# files. The name "whatever" existed before Visual Studio removed the "protected System.Web.UI.WebControls DataList ...
|
| "Bad Data" error and issues with Streams | 17 Jul 2007 17:26 GMT | 4 |
I'm actually encoding an encryption / decryption program. The encryption programes takes a file path in parameter, and encrypts the contents of the file and stores that into another file. I'm using AES for it is quick, and RSA to encrypt AES, to transmit AES
|
| Programmatically getting NTFS folder permissions | 17 Jul 2007 16:42 GMT | 7 |
Hey , I need to make a function in C# that gets the permissions on a folder and its sub folders. I wanted to list the users and the permissions they have been granted on folders. I dont know if it is conviniently possible. I am guessing that I'd probably have to use
|
| Binding data to controls? | 17 Jul 2007 16:00 GMT | 3 |
I made a windows form with a combo box and 4 text boxes. All 5 objects should get their data from a data set which is populated in the form load method. The combo box has item ids. When the users selects an item from the combo box I'd like the 4 text boxes to get populated ...
|
| File Upload: *.CSV | 17 Jul 2007 15:24 GMT | 1 |
I would like to check to see if the file that I am uploading to my server is of type CSV. I am currently doing that with the following snippet: HttpPostedFile file = UploadBox.PostedFile;
|
| showing read me file while installing application | 17 Jul 2007 14:56 GMT | 1 |
I'm creating a installer for my c# application using setup and deployment project. I created a installer and able to install my application successfully. I need to show the readme file at the end of installion.
|
| resizing forms? | 17 Jul 2007 14:29 GMT | 1 |
i am faily new to GUI programming and have a little problem with the resizing of a DataGridView Control in my App. I just want it to grow as one increases the window size, but only at the bottom, left and right border. The distance to the top should be kept as it is. There are ...
|
| C# and C++ | 17 Jul 2007 14:27 GMT | 6 |
I have a main function in C++ that works with command line arguments.. I need to convert to to a static void function that takes String arguments and can be called using a C# project . How do I do this. Thanks
|
| C# 1.1 Windows Control LostFocus GotFocus question | 17 Jul 2007 14:26 GMT | 2 |
In my .Net 1.1 C# windows form Form1 I have nothing but 2 TextBox controls on the Form1, the T1 and T2. I would like to test the sequence of the GotFocus LostFocus things, so I have the following code on the Form1.
|
| Showing Flash file (.swf) in Web browser control. | 17 Jul 2007 13:58 GMT | 1 |
I am using .Net 1.1 VS 2003 to create my windows form application. Is there any way to show a .swf file like the way we show it in internet browser. when i used 'Navigate' methos od Web browser, it is giving me a script error.
|
| <newbie> DataGridView question | 17 Jul 2007 13:25 GMT | 2 |
.NET 2.0 I've added a DataGridView to my form. When I run this form the DataGridView gets an additional column left of the columns I added, This column shows either an right-arrow or a star (*).
|