| Thread | Last Post | Replies |
|
| Examples of VB.net commercial software packages | 06 Nov 2006 09:45 GMT | 6 |
Can anyone point me to examples of commercial software packages (i.e. sold through VARs or retail channels) that were programmed in VB.net? Thanks in advance.
|
| System.Type.GetType("System.int32") returns nothing, why? | 06 Nov 2006 07:34 GMT | 2 |
Sub LoadBoxes() Dim dtBoxes As New DataTable Dim aColumn(1) As DataColumn 'Primary key column With dtBoxes
|
| set itemheight in listbox | 06 Nov 2006 06:12 GMT | 3 |
I am trying to increase the itemheight in listbox so that it is easier for user to touch the item. Is it possible to do that while I set DrawMode=Normal? Do I have to set DrawMode to OwnerDraw in order to do any change? Any one got an idea?
|
| Open files in associated editors. | 06 Nov 2006 04:47 GMT | 1 |
I have a simple Application and I need to open my documents files in assoicated applications given the path name and the file name and the extension. For example I got all my files stoted in C:\Documents and under that I got
|
| regex.replace and trim | 06 Nov 2006 01:47 GMT | 3 |
bonjour hello I would like to trim a string of all its white spaces so i used myString.trim() but it doesn't work as supposed : unsecable space are remaining in the middle of my string...
|
| incorrect string format | 06 Nov 2006 00:55 GMT | 11 |
Don't know if this group covers web apps, but here goes. In VS 2005, I am trying to get variables to hold thier values during postback from the server. I convert a text box's user-keyed value to an integer and assign it to a module level variable, then convert the variable and ...
|
| System.AccessViolationException | 05 Nov 2006 22:06 GMT | 2 |
I am getting the following error message in my WinForms project: --- An unhandled exception of type 'System.AccessViolationException' occurred in System.Windows.Forms.dll
|
| Annoying Panels behavior | 05 Nov 2006 21:35 GMT | 1 |
I'm having a strange problem that I never had back in VB6 and can't figure out how to deal with it. I have a simple forms app with several navigation buttons on a form that show and hide an adjacent set of panels. These panels present several pages
|
| Why does activex control run 3x+ faster in vb5 than .net? | 05 Nov 2006 19:51 GMT | 16 |
I did a benchmark comparison of a National Instruments Active-x "Strip Chart" control in both Vb5 and vb.net(2005). The code is identical: For I = 1 to 10000 ARR(1,0) = J
|
| Can't override CultureInfo.ToString | 05 Nov 2006 19:19 GMT | 8 |
I am having difficulty overriding the ToString() method of CultureInfo using Visual Studio 2005. Exactly the same code works fine with Visual Studio .NET 2003. What I am doing is adding objects which are derived from CultureInfo to a
|
| Altering a DBF File | 05 Nov 2006 18:26 GMT | 9 |
IDE: Visual Studio 2005 Language: VB.NET Fox Pro Driver Version: 9.0.0.3504 Problem: I currently have a problem altering a DBF file. I do not get
|
| [Regular Expression] (aaa AND bbb) OR (ccc AND ddd) | 05 Nov 2006 16:39 GMT | 5 |
I need to implement a boolean evaluation in a Regular Expression like this: (aaa AND bbb) OR (ccc AND ddd) (see the #3 case)
|
| how to convert x.vb into x.Designer.vb and x.vb | 05 Nov 2006 14:12 GMT | 2 |
I like the vs2005 way of separating the designer code from my code. Is there a non-manual way of taking a 2003 .vb file and turning them into two files ( .vb and .Designer.vb) I have a solution of 24 projects that I'd like to convert
|
| SplitContainer | 05 Nov 2006 11:58 GMT | 2 |
Has anyone else given up on the splitcontainer and moved back to the splitter control? I have found the splitcontainer control to be unpredictable and buggy.
|
| Dynamically changing button label from a variable | 05 Nov 2006 07:24 GMT | 3 |
I have an arraylist that looks like this: 1,4,6 I have buttons called button1, button4, button6. I would like to change the text on the buttons that corispond to the numbers in the array. Is there a dynamic way to do this? or do I have
|