| Thread | Last Post | Replies |
|
| combobox dropdown | 07 Jun 2005 20:56 GMT | 2 |
In Access I use me.combobox.dropdown when the combobox get focus. How do I do it in vb.net? regards reidarT
|
| UserControl Woes | 07 Jun 2005 19:57 GMT | 3 |
I've created a custom UserControlwithin which I have placed a Panel. I've changed the Panel's "Modifier" property to Public so that it appears in the Properties Window of the UserControl. This way, I could modify the properties of the panel within the UserControl when I place a ...
|
| Request information regarding MSDE | 07 Jun 2005 18:48 GMT | 3 |
I have an instance of MSDE on my system (installed with VS I presume) and I want to start using it. As far as I can tell, there are no tools I can use so I'm going to have to roll my own. The first thing I want to do is figure out how to:
|
| Treeview and Delegate stuff... | 07 Jun 2005 18:47 GMT | 6 |
This is the exception i'm getting: System.InvalidOperationException: The action being performed on this control is being called from the wrong thread. You must marshal to the correct thread using Control.Invoke or Control.BeginInvoke to perform this action. I have multiple ...
|
| Need help on custom TypeConverter | 07 Jun 2005 17:47 GMT | 3 |
I am trying to write a TypeConverter for a simple custom class that stores four boolean properties. Here is the sample code: -------------------------------------------
|
| Color and brush convert | 07 Jun 2005 17:28 GMT | 2 |
I need a color to Brush convert function. something like this Function GetColorBrush(cColor as color) as brush dim sColor as string = cColor.name return brushes(sColor)
|
| Handling events of programmatically added controls | 07 Jun 2005 17:27 GMT | 8 |
When my program is launched, there is a textbox on the form. When the user enters a character into the textbox (TextChanged), a second, declared textbox is added using this block of code. Dim textbox2 As New TextBox
|
| Storing data without a database? | 07 Jun 2005 16:43 GMT | 1 |
Hey all, Someone I know is doing a one-time job for a rent-to-own business that involves making an inventory management/order tracking tool. Only problem: the client does not have sql server. Their setup involves
|
| Form Closing on its own | 07 Jun 2005 16:38 GMT | 3 |
OK, this is bizarre. I have used this method many times before and it never did this. The code is: Dim myFrm as New Form1 myFrm.ShowDialog()
|
| Convert this fixed string VB6 code in VB.NET and win ... | 07 Jun 2005 16:07 GMT | 6 |
... my eternal gratitude!!! :p Here is the problem. A sample of my original VB6 code : '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Public Type INFO
|
| Deployment projects | 07 Jun 2005 16:07 GMT | 3 |
I looked through the groups and didn't see a setup and deployment group so I hope this is the right place to post this question. I have a VS deployment project in my solution and I want to see a registry value that is the install directory that the user chooses. I see that there is ...
|
| odbc connection | 07 Jun 2005 15:10 GMT | 1 |
Hi, there is no system.data.odbc namespace in .Net 2002. Which classes to use to make odbc connection? I tried to use oledb namespace with odbc connection string, but it didn't
|
| Embedding XML in DLL | 07 Jun 2005 14:45 GMT | 1 |
I was wondering if i can embed an xml file in a vb.net app so that i dont have to install it as an external file. if this is possible please let me know how to proceed. Thanks
|
| How to get attribute | 07 Jun 2005 14:30 GMT | 1 |
if I have <XmlElement("MULTITHREADED")> _Public m_multithreaded As Boolean How do I get the attribute value at the run time? I need something like
|
| how to view the SOAP messages being sent out from the client side | 07 Jun 2005 13:42 GMT | 3 |
I would like to use the MSSOAPT3.exe to check the SOAP message sent to a .NET webservice. Does anyone out there know how to do this? (cuz i'm using a VB6 client side to consume the .NET webserivce - the webserivce is on my own computer).
|