| Thread | Last Post | Replies |
|
| How do I know a SqlTransaction status? | 19 Sep 2006 08:56 GMT | 1 |
In my C# Windows form project, how do I know a specific SqlTransaction's status? e.g., the transaction is rollbacked or commited. Thanks for help. Jason
|
| Timeout call back in asynchronous web request. | 19 Sep 2006 08:21 GMT | 2 |
I am processing asynchronous web request with setting timeout using RegisterWaitForSingleObject. On beginwebrequest i am sending address of one callback which i want to execute when asynchronous web request complete.
|
| how to | 19 Sep 2006 08:01 GMT | 1 |
I would like to write an application with 2 button. For each button i would like to lounch an other application, and it verify if it is already run. Any ideas ? tnx
|
| regex question | 19 Sep 2006 07:15 GMT | 6 |
could someone help me putting together a regex expression for my problem? I need my search filter to treat spaces and commas in the query the same way no matter how many there are... Something like this:
|
| Resource for MessageBox | 19 Sep 2006 07:01 GMT | 2 |
I have the following line of C# code: MessageBox.Show(filesThatDoNotExist, "Files Not Found", MessageBoxButtons.OK); This line generates the following warning when I select "Run Code Analysis" CA1303 : Microsoft.Globalization : Form1.btnGenerateDocuments_Click(Object,
|
| download program | 19 Sep 2006 06:16 GMT | 2 |
I am looking for a 3rd party software that I can integrate with my app to do download files from the web. I saw some software they are all end user software, I don't see any development software to integrate with .net
|
| WebBrower Control: Close Script-Caused Dialogs Programmatically ? | 19 Sep 2006 06:06 GMT | 1 |
I have a Windows Forms application that uses a WebBrowser object to automatically visit a large number of web pages one at a time. The problem is that some of the web pages throw up a dialog such as the print dialog ( from an onload='window.print()' ). This then can cause all ...
|
| Sum column in GridView | 19 Sep 2006 06:01 GMT | 1 |
I'm using this function to sum the values of a column in a grid view and it's working fine but the only problem that is summing only the displayed page of my grid so if I go to the next page it will calculate only sum of the values of the column in that page
|
| Threading Question | 19 Sep 2006 05:16 GMT | 4 |
I have a background process which reads a table to see if there are any pending requests. If there are any, then it will start a worker thread (only 10 allowed at a time) and executes a method. In this method, I iniate a PROCESS and on completion, it reduces the available worker
|
| Converting double to string | 19 Sep 2006 04:56 GMT | 3 |
I am using the following command to convert a double to string: string.ToString("#.00") So 8.888 becomes 8.89. But 0.8888 becomes .89
|
| Time Conversion | 19 Sep 2006 04:32 GMT | 3 |
I wanted to convert a time value in the form of time_t into a readable form in C# or vice versa, in order to be able to subtract two time values and give the result in msecs. eg.
|
| Connection Question | 19 Sep 2006 03:12 GMT | 8 |
I was suggested by a member of this group not to use global connection object. Instead of it I was suggested to create a new one in every procedure and close it at the end of that procedure. What is the advantage of this approach?
|
| Dynamically adding menu items | 19 Sep 2006 02:22 GMT | 1 |
I want to be able to add menu items at run time. I know how to add the actual item but can't work out how to add the event handler. Any help would be appreciated. MJ
|
| Drop down a combobox programatically ? | 19 Sep 2006 01:07 GMT | 7 |
I'd like to drop down a combobox after validating the Leave() event, how can I do that ? Thanks
|
| Async sockets and threads | 19 Sep 2006 00:14 GMT | 4 |
I've written a async server app. This app start by connecting to a client and then send some data (BeginSend). When the data is sent, the server is starting to listen for incomming data. (BeginRecieve). In the receive callback I always call BeginRecieve again to keep listen for
|