Contents

Posts in microsoft.public.dotnet.languages.vb

 

How to display multiple columns in a datagridview ...  Replies (1) 8 January 2006
How is it possible to have 2 or more columns of data with headers showing in the dropdownlist of the combox in a datagridview? Using Vs2005 and VB.Net. Can't seem to find any doc on this. I know t...

 

VB.NET wizard form  Replies (2) 7 January 2006
Hi all, I'm writing an app in VB.NET and want it to look and behave like a typical application wizard (i.e. with the usual Next, Cancel, Back etc). Should I be looking to use multiple forms or...

 

Connecting to the internet  Replies (2) 7 January 2006
Hi EveryBody: By using VB.Net Is there any way to make connection to the internet by adding refreance to my project and without using the win32 api functions ? Any help will be appreciated ...

 

I need the ContextMenu NOT to show at certain time ...  Replies (1) 7 January 2006
I have the ContextMenu property for a ListBox set at design time. When I right-click the ListBox, the ContextMenu appears as it should. However, I do not want the ContextMenu to show when the use...

 

Project help  Replies (1) 7 January 2006
I need a routine that will step through a text file of consistent structure and, based on the content of each line, construct and save another text file. Outline of the project is as follows: 1...

 

Summary of issues with VS 2005  Replies (4) 7 January 2006
I'm looking to purchase VS 2005 some time in the near future. I've read a lot of grief on the web and in this ng as to the flaws and problems with the VS 2005 release (and I understand MS is comin...

 

Vs2005 datagridview bug.  Replies (1) 7 January 2006
During a form's development I noticed that when I changed bound dataset defintions with the dataset designer (for instance adding a column to one), when I come back and look at the form the orderi...

 

VS2005 combox question  Replies (1) 7 January 2006
The scenario is that of the employees table wherein there's an EmployeeId and a ReportsTo field in the same table. The combobox is one in a datagrid view that lets you select an employee from the ...

 

Annoying  Replies (1) 7 January 2006
Here are the steps. I create a form, create a dataset with two related tables, drag the datatables to the form to create related tables. Create a new dataset to use as a lookup. Run the form to c...

 

Reading/Writing Extended File Properties  Replies (1) 7 January 2006
Does anybody know how to read/write extended file properties such as comments, keywords, author, etc. in VB.NET? I can't find anything anywhere. It may be because I don't know where to start or e...

 

WMI and screensaver  Replies (1) 7 January 2006
I am using WMI to login into and remotely reboot my Windows 2003 server. The only problem is that if the screensaver is active or monitor off and needs to be unlocked by a password, it will allow...

 

The vs 2005 designer goes crazy and so am I  Replies (1) 7 January 2006
I'm trying to get a combox in a datagridview to be displaying diffrent filtered data each time it lands on a row. I thought of adding the follwing code as a test. Later I would have verified that ...

 

ListView vs. ListBox in my Program  Replies (1) 7 January 2006
I currently have a listbox in my program which I populate with data from a random access file as follows: For T = 1 To HighestPointID FileGet(1, Point(T), T) ListBox_Point.Items.Add(T...

 

Access SubQuery Help Needed.....................  Replies (1) 7 January 2006
Don't know if this is the proper newsgroup to post to. Sorry if not. Can't figure this one out. Using Access 2003. I have 2 tables, IMast (table of part info) and THist (part transaction histor...

 

VS2005 Debugging SQL2005 Stored Procedure  Replies (1) 7 January 2006
Hi, I'm getting an exception when I debug stored procedure on SQL2005 System.InvalidOperationException was unhandled Message="The requested operation requires a SqlClr context, which is only ...

 

Virtual Serial Port Bluetooth System.IO.Ports  Replies (1) 7 January 2006
Hi All, I'm trying to connect to a virtual port (COM19, OUTGOING, "Bluetooth Serial Port") using VS2005 System.IO.Ports. When I ran the ff code below here's what happens. 1) VS2005 Compiles w/...

 

bindaing a DATE field  Replies (1) 7 January 2006
Hi, VB.net project with ms-access database, I've a DATETIME field that I like to bind in my Form, it ontains the date only : - If I use a TextBox the problem is that There is an hour (12:00) added ...

 

Controls Display Slowly  Replies (1) 7 January 2006
This has been bothering me for some time now and perhaps someone can help me. I'm using VB.Net. I created a form that I will be using to call all the rest of my forms from. (MainMenu). Then I began ...

 

VS.NET 2003: How to get WinForm's menu item name o ...  Replies (1) 6 January 2006
On design time menu item name can be obtained this way: menuEntry.Site.Name and how to get it on runtime when menuEntry.Site = Nothing? Thank you, Shamil...