| Thread | Last Post | Replies |
|
| XmlTextWriter and WriteElementString | 17 Jul 2008 22:25 GMT | 2 |
I'm creating XML using the above. My problem is that if I have a string that is passed to WriteElementString such as WriteElementString("description", @"<![CDATA[<a href=""http://www.google.com"">Here is the link</a>]]>");
|
| what no TriState Checkboxes in TreeNodes ? | 17 Jul 2008 21:08 GMT | 1 |
I have a simple treeview, I want to put tri state checkboxes. I thought this would be standard, TreeViewNode has checkboxes, and checkboxes have tri state,
|
| DotNet way to calculate distances between cities | 17 Jul 2008 20:57 GMT | 5 |
Is there a way to calculate miles between two places in DotNet? Is there a third party tool available that can be incorporated into DotNet that would work well?
|
| Bring Parent to Front (on top of modaless child) | 17 Jul 2008 19:37 GMT | 3 |
I have a form that shows another child form using the Show() operation. Since the child is modaless, I would like the option that when I click anywhere on the parent form that the parent form comes in front of the child. I added a callback in the parent form to call
|
| Does lock{} work across methods? | 17 Jul 2008 19:12 GMT | 3 |
I have a class that ahs several methods. It pulls from a queue so it has to be singleton at that point. The question I have is: does the lock{} statement work across methods? If I have A(), B(), and C() and I do this:
|
| Passing Structures to Unmanaged Code | 17 Jul 2008 17:07 GMT | 15 |
I am attempting to write a .NET wrapper in C# for an SDK that has been supplied as a .LIB file and a .h header file. I have got most of the functions to work but am really struggling with the functions that require a structure to be passed to them. The function declaration in the ...
|
| Creatign new setting in userSettings section of app.config file | 17 Jul 2008 16:50 GMT | 8 |
.NET 2 Winforms application. How to create new setting and set it default value in userSettings section of app.config file or overwrite existing setting value ? I found code below in this list which modifies Application setting section
|
| Focus Stuck on TextBox | 17 Jul 2008 16:24 GMT | 10 |
When we have a text box that is bound to an int?, the text box will not allow the user to leave the control until it has a valid integer in it. This is actually very bad. If the user wants to remove the value, they can't anymore. They can't even leave the form! They are
|
| installation of usb ftdi chip | 17 Jul 2008 15:46 GMT | 3 |
I have to install the ftdi device driver additional to my normal software installation. Normally a usb driver will be installed when it is connected to the PC, but I need the driver dll after the software installation in any case, in order to get if an ftdi device is connected
|
| SocketException question | 17 Jul 2008 14:56 GMT | 4 |
Hello NG, in my application I get a SocketException in my receive callback method, if the remote socket closes. What would be the right way to treat this exception?
|
| Dynamically loading Assemblies within a Windows Service | 17 Jul 2008 14:31 GMT | 3 |
i'm planning on creating a Windows Service, which will have a simple loop in its OnStart override. In this loop, I dynamically want to load (job) Assemblies which have a single class implementing a JobInterface (just an Execute() method). The Service should then execute this method
|
| Sorting a table using hidden field | 17 Jul 2008 13:09 GMT | 6 |
I am reposting a question from about 3 weeks ago ("sorting capability"). I have an aspx page in which I get the data from a database dynamically, through C# code, by creating a dynamic table using TableHeaderCell and TableHeaderRow.
|
| Datagridview | 17 Jul 2008 10:39 GMT | 2 |
Good morning, I have a datagrid view with one textboxcolumn and one buttoncolumn. When I press the button on a row a folderbrowser dialog is shown. When I select a path and press ok write the result path on related text cell.
|
| Creating an Extended Generic List Collection | 17 Jul 2008 08:04 GMT | 3 |
I simply want to extend the List<T> object to include a property called VirtualCount. Basically, the list will hold my paged records, but the VirtualCount property will tell me how many records total are in the result set. It seems easy enough to create my class:
|
| Linq. Why do I get this error? | 17 Jul 2008 07:59 GMT | 2 |
I am using the following Linq Query: var filter = (from t in database.Tags where t.Name.StartsWith(q, StringComparison.CurrentCultureIgnoreCase)
|