| Thread | Last Post | Replies |
|
| Call stack window in C# Express | 24 May 2007 16:16 GMT | 8 |
VB had a call stack window (although I'm not sure that's the term). You could use it to see the chain of routines that brought you to where you were. Is there something like this in C# Express? I can't seem to find it.
|
| VB to c# conversion... | 24 May 2007 16:04 GMT | 4 |
any volunteers to convert VB source code below to c#? I really would appreciate that, because I wouldn't like to learn two new languages... This function can be found from ExceleTel Inc www-site and is copyrighted by the corresponding corporation. Unfortunately, they
|
| webservice | 24 May 2007 15:56 GMT | 2 |
I have an existing code-base with some functions which are used by a web application (aspx and ascx). Now I want to add a web-service front to these functions, so they are available via webservice calls.
|
| making a button not visible in a datagrid | 24 May 2007 15:29 GMT | 1 |
Ok I would expect this to be easy but am running into some problems. I have a templete column in my datagrid with a button. <asp:TemplateColumn HeaderText="E-Mail Proposal" ItemStyle-HorizontalAlign="Center">
|
| read Exchange 2003 message stores with C#? | 24 May 2007 15:26 GMT | 2 |
What are some ways I can read MS Exchange Server 2003 message stores using C#? -- Thanks in advance, Les Caudle
|
| Browser Object - NavigateComplete2 event. | 24 May 2007 15:21 GMT | 3 |
So I've got web pages that are going to be loaded that take a little while to load. Rather than having somebody sitting there staring at nothing while the page loads, I'd like to put up something and when the page finishes loading, show them the entire page.
|
| About DataGrid | 24 May 2007 15:18 GMT | 2 |
I have DataGrid in mt Form, How can I resize the DataGrid respectively to the Form size changes? Thanking you in anticipation!
|
| Dialog Handling Shortcut keys | 24 May 2007 14:29 GMT | 1 |
I'm trying to handle some shortcut keys within my application and I can't seem to get the code to work when you are trying to action against a ctrl + other character. I found a post
|
| socket receiveTimeout and sendTimeout properties | 24 May 2007 14:14 GMT | 1 |
VS 2005 help says they are only for the synchronous send and receive methods. So what about the asynchronous calls? How are timeouts handled?
|
| XPathNavigator SetValue wipes out XmlType | 24 May 2007 13:44 GMT | 2 |
Using VS2005, .NET 2.0. I have an xml document that I want to go through and set the values on attributes of elements. The elements are complex types defined in my schema (xsd) files.
|
| How to disable the DataGridView sorting? | 24 May 2007 11:40 GMT | 1 |
I'm using a DataGridView on a Form. I want to disable the clicking on the columns headers to disallow the sorting. How can I do that, but without deriving the DataGridView? Is there any other way to disable the sorting of the DataGridView without
|
| StringDictionary vs Dictionary<> | 24 May 2007 11:37 GMT | 4 |
are there any benefits in using StringDictionary over Dictionary<string, string> ? It appears they achieve the same thing... (I could be wrong of course). thanks,
|
| ADO.NET - Working with DataSet | 24 May 2007 10:52 GMT | 3 |
ADO.NET - Working with DataSet ========================= HI, I want to create an application that interact with a DB. I wont to use SQL statement, but I want to use DataSet.
|
| Stopping the Cancel button | 24 May 2007 08:42 GMT | 4 |
I have a dialog box with a Cancel button that I want to be activable with the ESC key. In the form the Cancel button is connected to the CancelButton property. Now my problem is that the OnClick event of the button must be able to "stop" the closing of the form: I want to change ...
|
| Synchronizing asynchronous HttpWebRequest | 24 May 2007 08:42 GMT | 6 |
I'm using HttpWebRequest. It seems that all the callback called from HttpWebRequest are in another thread (not in the "original" thread). Now my problem is that the "original" thread is the thread that maintains the interface (the forms). I want to signal from the "worker" thread ...
|