| Thread | Last Post | Replies |
|
| Flicker in Customized Common Dialog | 14 Aug 2006 20:20 GMT | 2 |
I am creating various customized open file dialogs. When I display one of my large dialogs followed by one of the smaller dialogs, you can see the smaller dialog resize itself from the larger dialog's size. How do I avoid this? I am resizing the dialog in response to the Init
|
| Best way to move data from gridview to Sql table | 14 Aug 2006 19:45 GMT | 1 |
I am trying to move data from my Gridview, essentially a dataset, to a Sql table I created. I am trying to do this without having to create a stored proc that I have to call every time I interate through a row. So I am trying to see if this is conceptually possible.
|
| Generics Help | 14 Aug 2006 19:42 GMT | 11 |
I'm fairly new to C# and Generics and I'm wondering if anyone has some suggestions for me. I'm trying to implement a simple DAO framework using generics to keep my code as clean as I can, however I'm getting an error with what seems
|
| How do I invoke the editLabel on the treeview control? | 14 Aug 2006 18:58 GMT | 2 |
Hi, When the user select a tree node, right click and select the "Rename" option in my context menu, I would like to create the Edit Label ability for the user. I would like to have the blinking cursor on the selected node, which will be in rectangle frame, and allow the user to ...
|
| Windows service with sockets | 14 Aug 2006 18:29 GMT | 3 |
I am new to services and I have quite the task. I need a windows service that will, once started, open a socket and listen for client connections. When a connection is made, the client will want the service to query the db and return a value. This is for use with an IVR
|
| Appropriate event for a combobox | 14 Aug 2006 18:05 GMT | 2 |
I have a combobox with some values loaded from a database. I want to use a barcode reader to select a value in the combobox. But as soon as it is selected I want to fire an event. What event would be the most appropriate?
|
| Delimited String to Array | 14 Aug 2006 17:45 GMT | 18 |
New to C# (migrating from Delphi) and I'm not sure how to get a delimited string into an array of string. input: string looks like - 01-85-78-15-Q11 output: an array with elements - 01,85,78,15 etc...
|
| Object oriented method is inefficient with database calling | 14 Aug 2006 17:17 GMT | 13 |
Say i have a class car with properties: Color, Make, Model, Year, DriverID And a Driver class with properties: DriverID, Name The driverID PRIVATE property is the id of the driver from say a driver table (t_driver). This has a PUBLIC property accessor called Driver
|
| HttpWebRequest With Session | 14 Aug 2006 16:38 GMT | 3 |
I am using HttpWebRequest to get the content of a web page. the call to this web page is creating a session on the server. then, I wish to get the content of a 2nd web page on the same site, but this 2nd web page reads the session created on the 1st page. so when i call it with
|
| Newbie Question | 14 Aug 2006 16:34 GMT | 4 |
I am very new to .NET / C#. What I want to do is call a method which performs a search when the ENTER button on the keyboard is pressed. The way the application currently works is that I enter text into the textbox, then click the Search button.
|
| Another Newbie Question | 14 Aug 2006 16:18 GMT | 4 |
I need to be able to delete a tree node by clicking on the Delete key on the keyboard. (Basically, clicking on the Delete key calls a method which performs the delete.) An explanation and/or example would be very much appreciated.
|
| Repeater HeaderItem bind | 14 Aug 2006 16:06 GMT | 1 |
I would like to bind some fields in a Repeater components HeaderTemplate. I have no problems with using ItemTemplate and realise the HeaderTemplate cannot be directly bound (I guess its being rendered
|
| How to retrive an image from a resource file? | 14 Aug 2006 15:40 GMT | 2 |
Hi, i have a resourcefile with my project that contains a jepg image. Now i want to retrive that image to a Image m_Image in my program. Whats the best way to do this?
|
| Unhandled exception on class library project | 14 Aug 2006 15:16 GMT | 3 |
Hi group, is there anyway to catch unhandled exceptions on a class library project?? thanks in advance.
|
| Checking for columns in a DataRow | 14 Aug 2006 14:39 GMT | 3 |
I have a DataSet/DataTable read in from an XML file. I can loop through the DataRows in the DataTable, and do actions like this: string theName = dr["Name"].ToString(); My fear is that somebody is going to come along and slightly change the xml
|