| Thread | Last Post | Replies |
|
| Framework 2 NewsGroup | 08 Sep 2005 21:36 GMT | 2 |
What is the NewsGroup for Framework 2.0, Visual Basic 2005. Thanks, Richard
|
| Finding a Form or Control by its Handle | 08 Sep 2005 21:12 GMT | 2 |
Is there a way fro me to find or get access to a Form/Control given the fact that I know its windows handle?
|
| Threading, InvokeRequired | 08 Sep 2005 20:06 GMT | 2 |
I have an exception handling procedure which displays an error message to the user. This is done by creating an instance of the custom form ErrorDisplay and showing that instance as a modal dialog, parented to the main MDI window. The code is as follows.
|
| 3rd Try: Help Button functionality | 08 Sep 2005 17:57 GMT | 2 |
OK, Since no one can tell me if you can have the Help Button AND Min/Max in the control box (or why not) I'll just accept that you can't, and that I have to use a toolbar button.
|
| NotifyIcon ContextMenu Popup | 08 Sep 2005 17:35 GMT | 3 |
I have a windowless notifyicon with a ContextMenu on it. Since there is no main window with this app, I would like to have a singleclick event on the icon to open the contextmenu. Creating the eventhandler for the click event is easy, but the contextmenu.show() method is ...
|
| controls on mdiParent not behind Child forms | 08 Sep 2005 17:00 GMT | 3 |
I have looked everywhere and can't seem to find why all my child forms of my mdiform shows behind my controls on the form? Dim frm As New frmMyFrm frm.MdiParent = Me frm.Show()
|
| Loading a form 'cleanly' | 08 Sep 2005 08:44 GMT | 2 |
I was not quite able to find good search terms so sorry if this is redundant. What I am trying to do is have my form load cleanly. I have many controls and I literally watch the form draw before my eyes. This happens on several test machines with ngenned code. We use VB.NET.
|
| DataGrid ReadOnly and NullText do not work | 08 Sep 2005 01:33 GMT | 1 |
I have the following code... DataGridTableStyle ts = new DataGridTableStyle(); dgTest.TableStyles.Clear(); ts.MappingName = "Test";
|
| Problem with forms not properly disposed | 07 Sep 2005 23:16 GMT | 4 |
To be able to explain what's happening, I will use a short example: The example is created in VB.Net 1.1. I have a form with a combobox on it. The datasource is set to a global datatable object which is instanciated on a vb module.
|
| Loading cursor resources dont work | 07 Sep 2005 23:00 GMT | 3 |
I have difficulties trying to load a cursor from a resource file. Using VS 2003 -- opening a new vanilla C# windows form, adding a new vanilla cursor file -- setting Build Action to 'Embedded Resource'. In my code I use:
|
| How to capture urls with a custom protocol | 07 Sep 2005 17:50 GMT | 1 |
If I want to create an app that captures requests for certain urls, like a skype catches callto:, how would i do that? For insance: I enter klaus://usenetrules in my browser, and my app starts (or is already running) and receives the "klaus://usenetrules" as some kind
|
| Selective Smart Client deployment in .Net 1.1 | 07 Sep 2005 16:24 GMT | 1 |
I would like to be able to detect updates on a server and update the client as described in the deployment model for smart clients. It remains crutial however that I can present this as an option to the user. I can see that .Net 2.0 has a "CheckForUpdate" feature, but I cannot ...
|
| controls not visible in design mode | 07 Sep 2005 12:46 GMT | 2 |
ALL, I recently had to reinstall Visual Studio .NET 2003. This was because I got a new computer at my company, and in fact will need to reinstall a whole bunch of apps. In any case, when I try to load the "design" view of my one
|
| Multiple Forms Help | 07 Sep 2005 09:27 GMT | 3 |
I am hoping someone can help me. Is there any way to get a form to act like a cross between a mdi child from and a dialog box? I need to be able to display the results of a users search from a main form into another "popup" form and still be able to interact with the main form. ...
|
| Editable TabPage title | 07 Sep 2005 08:43 GMT | 1 |
How would i make the TabPage's title editable? I know I could have like a text box to set it but i want the user to be able to edit it directly. Thanks in advance!
|