| Thread | Last Post | Replies |
|
| parser problem with fields | 17 Jan 2008 10:49 GMT | 1 |
when using parser (TextFieldParser), is there any way to specify "and rest"? Something like tokens=1,2,* (first, second, rest)? What I mean exactly:
|
| WebBrowser control and not updating contents | 17 Jan 2008 09:36 GMT | 4 |
I am using a WebBrowser (.NET 2.0) control on my form and want to dynamically build the HTML for it. However, I am unable to get the Browser to show the HTML I am writing to the browser.
|
| Overriding DialogResult of a button on a form | 17 Jan 2008 07:27 GMT | 1 |
I have a form that I show as a dialog (i.e. Form.ShowDialog). On this form I have two buttons: one with a DialogResult of OK, and the other with a DialogResult of Cancel. However, if the user clicks on the one with a DialogResult value of OK, and something's wrong with data they
|
| Question about using DataBindings | 17 Jan 2008 06:21 GMT | 3 |
Let's say that I have a form on which a user can edit a Customer record. On the form I have a module level variable as follows: Private mo_CurrentCustomer As Customer where Customer is a class defined in the system. After the user makes
|
| How to add WebCam windows form that work all type of webcam | 17 Jan 2008 05:42 GMT | 3 |
I create one windows application that require webcam for photo capture on client machine that have D-link, creative, logitech web came. how to add minimum COM component use in without COM controls use I is Possible ?
|
| Dynamicaly updating a .config file | 16 Jan 2008 20:11 GMT | 7 |
VS2K8, .NET 2.0 In a standard SQL Server client application the connection string is stored in my .config file. I would like the user to be able to switch from one database to another
|
| Windows Forms Strange Behavior | 16 Jan 2008 18:21 GMT | 2 |
I have a Windows Forms application with an annoying bug in it that I cannot seem to track down. When an operation is performed by the user then in some cases the application ceases to be the active Window. This is still the case if I use
|
| Can a Backgroundworker have or reference an eventhandler? | 16 Jan 2008 16:32 GMT | 1 |
I have an app which has to wait for messages (using port.DataReceived) and process them when they come in. As I expect the traffic to be heavy, I want to do this using a Backgroundworker. Can I add an eventhandler in "DoIt" and expect the delegate to which it points to
|
| TransactionScope using | 16 Jan 2008 16:04 GMT | 1 |
I tried to use TransactionScope on to defferent TableAdapters like this: using (TransactionScope transScope = new TransactionScope(TransactionScopeOption.Required)) {
|
| setting focus to control after validation | 16 Jan 2008 09:19 GMT | 5 |
I have a number of controls on a tab page. I want to validate them all when the user tries to leave the tab. I then want to highlight the first control which fails validation. How can I do this? I try
|
| Merging Menus using class derived from MenuStrip | 16 Jan 2008 08:54 GMT | 3 |
I am having problems merging menus in an MDI application. The parent menu contains 'open' and 'close' under the 'file' menu. The child menu should append 'print' and 'preview' to the parent menu once the child form is activated.
|
| Design verbs | 15 Jan 2008 22:45 GMT | 2 |
Can I get "design verbs" from a control (System.Windows.Forms.Control) ? How ? I would like display them in a popup menu. Best Regards,
|
| Abort form closing | 15 Jan 2008 15:58 GMT | 4 |
I show my Form in dialog mode. So I have "Ok" button on it with DialogResult = Ok. What is the right way and how can I abort form closing from the button click event. Thanks a lot
|
| Detecting Minimize event causes loop | 15 Jan 2008 13:35 GMT | 7 |
Found some code to do this but seems to be causing a stack overflow due to a loop somewhere. Code is: ... public event EventHandler Minimize;
|
| Generate the Datalink in code | 15 Jan 2008 09:28 GMT | 1 |
I want to programmatically generate the Windows datalink window, so the end user can choose the database of his choice, and get back the connection string he generates, using the DataLink window. I had some old COM code a long time ago (with vb6) - - but I need to know
|