| Thread | Last Post | Replies |
|
| DataGridView | 21 Sep 2007 01:12 GMT | 1 |
I don’t want any rows in the DataGridView selected initially on the form programmed in C#. How can I do it? I have tried to set DataGridView.CurrentCell = null, but it doesn’t work for me. Any help is appreciated!
|
| Problem with faking a progress bar / threading. | 21 Sep 2007 01:00 GMT | 6 |
For an application I'm creating I want to create a 'fake' progress bar. By fake I mean a progress bar that looks like it's doing something but actually isn't.
|
| Import C++ DLL into C# | 21 Sep 2007 00:49 GMT | 4 |
I have a DLL written in C++. A number of the functions both expect a string (BSTR) and also return a string (BSTR) How do I define this in C# ?
|
| How do i insert explicit ID on an identity Column? | 21 Sep 2007 00:25 GMT | 4 |
I'm using C# and using objects: SqlDataAdapter, SqlCommand and SQLCommandBuilder.. I have problem while inserting value to identity column on database (MSSQLserver)..
|
| Search with regular expression | 20 Sep 2007 23:38 GMT | 4 |
hi, folks I am doing a automate tool to remove a project reference from the VS.NET solution file. Suppose the sln file has this project definition
|
| Active Directory: Disable *another* users account | 20 Sep 2007 22:45 GMT | 2 |
Hi, I am trying to work out how I can disable / enable **another** users Active Directory account not my own via C#. If I create a directory entry like so I need to know the other users password befoew I can do anything with the user. Obviously I will not
|
| Detect user activity | 20 Sep 2007 21:57 GMT | 2 |
I want to detect user activity (mouse move, key click). For certain critical areas (Form in my app.), I want to check whether there is any user activity for a certain interval. If not, then I want to log off the Form. I don't want to user Timer controls. Is there any build
|
| How to tell if a floppy is in the drive | 20 Sep 2007 19:33 GMT | 4 |
I don't suppose there is any way to tell if there is a floppy in a floppy drive without activating the drive and causing it to make a noise if there is no floppy in the drive. Is there?
|
| A design issue | 20 Sep 2007 19:12 GMT | 5 |
I just want to have your opinion about the problem. We have two applications running on two different plattforms in the same LAN network. On the first plattform we have windows and on the second plattform we have something called OpenVMS.
|
| Web Browser control - how to navigate to a local file. | 20 Sep 2007 17:08 GMT | 5 |
I have a web browser control that I'd like to point at a HTML file in my installation directory. I am doing something like: string path = Path.GetDirectoryName( Assembly.GetExecutingAssembly().GetModules()
|
| Using function keys to change Tabs ... and F8 kills it all ... AAAAAAAAAARGH | 20 Sep 2007 17:07 GMT | 1 |
Greeetings All .. For my users convenience I have mapped function keys F2 .. F12 to change the tabs on the Tabcontrol. Works like a charm <ominous music> until one hits F8</ominous music>
|
| Newline and Return characters in app.config | 20 Sep 2007 16:58 GMT | 1 |
I seem to be having some troubles inserting newline and return characters into my app.config file (I have them there for serial port newline settings). I can add them as (ampersand)#xA; and (ampersand)#xD; directly in the app.config XML, but if I (or any future developer) ...
|
| Manager? | 20 Sep 2007 16:52 GMT | 13 |
This isn't a technical question, but I do need advice. I am a Visual Basic programmer though I have used C in the past. My manager has given me the follwing task and 3 weeks to complete it. Implement a POC application in InfoPath Services 2007 based on at least 3
|
| c# SerialPort problem, write() interrupted | 20 Sep 2007 15:20 GMT | 3 |
I have a strange problem with the .NET serialPort class. When I write some data to the serialport, not all the data is immediately send: every once in a while, only ~50 characters of the 64 characters I'm sending gets send.
|
| Not all CSV column data being read into DataTable | 20 Sep 2007 15:16 GMT | 4 |
I read the CSV file into a DataTable. This is so I can fix invalid dates and other data I don't want in the database. Then I use SqlBulkCopy to insert the data into the SQL database. All the rows are being read and inserted into the table. The problem is that one of the ...
|