| Thread | Last Post | Replies |
|
| How to suppress KeyUp event? | 18 Jun 2007 10:01 GMT | 2 |
In certain situations during the execution of my application I want to disable certain keys from performing their normal functionality. I am trying to do this by setting e->SuppressKeyPress to true in the KeyDown event, but this appears to only suppress the KeyPress event (as it ...
|
| Embed Windows Live Messenger? | 18 Jun 2007 04:12 GMT | 1 |
I would like to embed an already-running instance of Windows Live Messenger in my WinForm. I have a general office-workflow app that would benefit from being able to send/receive text within the app instead of using the full-blown client.
|
| Help with classes | 17 Jun 2007 23:02 GMT | 5 |
Problem is when I update a copy of a object variable it updates the object variable it was copied from. see code below.. Sub Main() Dim cat1 As New cat
|
| MultiScreen Startup Position | 17 Jun 2007 19:53 GMT | 1 |
I'm persisting the Form Startup location. On dual monitors, the Top is -700 or so, 700 points above 0,0, on the extended monitor Above the laptop. When the external monitor is removed and the application starts, it is "off the screen", positioned on the Above monitor which is ...
|
| VB 6.0 ActiveX Documnet upgrade to VS.Net ? | 17 Jun 2007 17:04 GMT | 1 |
VB 6.0 ActiveX Documnet upgrade to VS.Net ? I want upgrade a C/S WinForm Client to B/S Browse safe is not importment VB 6.0 ActiveX Document is good way
|
| Drop down button | 17 Jun 2007 13:05 GMT | 3 |
I am looking for a drop down button control like Infragistics's ultra drop down button but I don't want to purchase the whole suit for one control. Any recommendations would be appreciated. Thanks
|
| Encoder Parameters - System.Drawing.Imaging | 17 Jun 2007 06:52 GMT | 1 |
I found an example on the msdn showing how to save JPG files with a quality: myEncoderParameter = New EncoderParameter(myEncoder, CType(25L, Int32)) myEncoderParameters.Param(0) = myEncoderParameter Of course, in a normal application, you'd want the quality to be dynamic,
|
| auto update error | 17 Jun 2007 00:12 GMT | 1 |
i have a windows form application that goes to the webserver to verify that it has the latest version. Recently i started receiving URLDownloadToCacheFile failed with HRESULT '-2146697191'
|
| Reference Caller's Application Variables from DLL | 16 Jun 2007 23:50 GMT | 3 |
I want to be able to access some global variables (defined in a winforms "ApplicationEvents.vb") from a DLL. I assume I need to pass a reference to the application object to the DLL. If so, how would I define it in the DLL and how would I set it
|
| How to add an mdi container within a panel | 16 Jun 2007 19:13 GMT | 1 |
I have an app where i'm using a split container and within one of the panels I want to have a MDI container. I created a form, set it's ismdicontainer property to true, and set it's parent to the panel that I want it to show up in. Of course I get the exception that I cannot
|
| Converting List<T> structures to BindingList<T> | 16 Jun 2007 17:03 GMT | 3 |
I am having trouble realising how to data bind a hierarchical structure for data binding to a hierarchical grid. My aim is to have a hierarchical structure built of List<T> collections and convert it to BindingList<T>. The reason for this is that the former could
|
| regex help | 16 Jun 2007 00:42 GMT | 1 |
i need a regular expression which would match the exact word in a given string. for ex my input is as below and my pattern is .ocx
|
| Designer auto assigning bogus string resource values | 15 Jun 2007 23:19 GMT | 1 |
We are experiencing weird behavior from the VS2005 designer. It seems that at random, the designer generated code will assign a global:: resource string to a text property of a control. We see this happening when the text property has no default value.
|
| What event fires when tabbing to a hidden TextBox in VB.Net | 15 Jun 2007 18:04 GMT | 2 |
I have a Windows.Forms.Panel object that contains a column of TextBox objects. When I tab to a text box that is below the visible area of the Panel, the panel automatically scrolls vertically to make the TextBox visible. What I need to know is what event gets fired when this ...
|
| ?? Why is PictureBox.AllowDrop Discouraged ?? | 15 Jun 2007 05:29 GMT | 2 |
Does anyone know why the PictureBox.AllowDrop property is discouraged? The documentation indicates, "This property supports the .NET Framework infrastructure and is not intended to be used directly from your code." WHY??
|