| Thread | Last Post | Replies |
|
| run .exe from IE using ASP.NET script | 20 Feb 2005 20:59 GMT | 2 |
I have a module writen in VB.NET compiled using vbc as sync.exe. If I point IE to http://localhost/sync.exe the Windows Form loads perfectly. But I don't get the same if, from within ASP.NET code, I run the following ~ Dim a.s As Assembly = Assembly.LoadFrom("C:\Inetpub\wwwroot\sync ...
|
| Closing a form | 20 Feb 2005 16:25 GMT | 4 |
When you close a form using myForm.Close(), does that actually destroy the form and make it available for garbage collection? I just want to make sure that I'm not supposed to do something to it after to make sure that the memory can be claimed back.
|
| How to calculate "physical" width of string | 20 Feb 2005 14:23 GMT | 6 |
I'm trying to create a read-only RichTextBox that will dynamically adjust it's width to the string I throw into it. It should be a perfect fit. I must use RichTextBox, because some of the text can be in different color or be
|
| Handling the message pump for a UserControl | 20 Feb 2005 13:53 GMT | 1 |
Im wondering how a UserControl can be created using native win32 code. The reason for doing this is that i need to have access to the message pump and a way to render to it in the fastest possible way using managed DX. The "UserControl" will be hosted in a IE browser.
|
| Manage application (maximize/minimize/restore...) | 20 Feb 2005 11:56 GMT | 1 |
I need change the state (maximize/minimize/restore...) of an application acording to some events. How can make an application minimize or maximize itself. note: my app have a NotifyIcon with the ShowInTaskbar property in false, I
|
| When does a message processing thread get created for for Windows Form | 20 Feb 2005 07:02 GMT | 1 |
I have a Class Library that contains a Form and several helper classes. A thread gets created that performs processing of data behind the scenes and the Form never gets displayed (it is for debug puposes only and is not normally visable to the user.) The Thread function is actually ...
|
| SelectedIndexChanged event with listview | 20 Feb 2005 05:49 GMT | 3 |
I have a form with a listview to allow users to select an item. When they select one I fill in controls below it for them to modify the values. They can also just enter new values in the controls without selecting a listview item in order to insert new records. After entering ...
|
| Treeview scroll problem | 20 Feb 2005 05:37 GMT | 2 |
I have a treeview control on a form with Scrollable=True. If a user scrolls the list and then selects a node, the selected node returned by the AfterSelect event is always the topmost visible node in the list, not the node selected.
|
| how to make the toolbox in VS ide | 19 Feb 2005 21:31 GMT | 1 |
i found that the toolbox, properties column, help...etc are hide and slide out automatically and are neatly located as a tab-like at both left and right hand side of the VS IDE application. I am wondering how to make this
|
| SQL Query - Ok its from a windows app | 19 Feb 2005 17:39 GMT | 2 |
I think I need a nested query but here's the problem. I promise i've exerted my meager brain power on this problem & ask this as a last resot! 3 Tables
|
| BUG in Combobox.Location ? | 19 Feb 2005 17:25 GMT | 9 |
I want to draw combobox to bottom of form. I have following code : ComboBox C = new ComboBox(); C.Font=FontNormal; Size CSize=C.Size;
|
| How to pass an EventArgs to OnClick upon clicking a control | 19 Feb 2005 04:14 GMT | 1 |
When you click a control, OnClick is called which in turn calls the Click event. OnClick takes as an argument an object of type EventArgs which it then passes to Click. However, the default behavior is that the EventArgs that is sent is an empty one. I want to pass in some ...
|
| Secretion of documentation for Controls hosted in IE ? | 19 Feb 2005 02:09 GMT | 1 |
I develop .NET control which will host in IE (like applet). I want to set value of <INPUT> from this control. Is it possible. If no, is possible to change something in client-side from this control ? P.S.: I browsed .microsoft.com and also I tried to find something in
|
| GDI+ encoder CLSIDs, and image resampling | 19 Feb 2005 01:06 GMT | 2 |
Sorry if this is OT, but I got no joy in microsoft.public.win32.programmer/gdi. (1) I'm encoding to standard (built-in) formats: JPEG, BMP, GIF etc. I currently have the encoder CLSIDs hardcoded. Is that safe, or should I
|
| My Brain Hurts _ One last undetermined error | 18 Feb 2005 21:52 GMT | 6 |
I have an application based on the Issuevision example at MSDN. The program falls over at this line: Application.run(New MainForm) Call Stack//
|