| Thread | Last Post | Replies |
|
| Get Printer Device Names | 30 Nov 2004 12:10 GMT | 3 |
Hi, I wish to get all the names of printer devices using system.io or system.drawing.printing or any other method. I know that you can do this in Access so you should be able to do this in vb.net.
|
| DLL for use in Office applications | 30 Nov 2004 10:38 GMT | 5 |
If made myself a DLL-file containing classes I wish to use in Office applications (Access/Excel). How should I register the DLL to make it work with these applications? I've tried using RegAsm.exe, but maybe I've been using wrong
|
| Unspecified error on Database Connection in Multiple Threads | 30 Nov 2004 10:32 GMT | 2 |
I am starting up a number of threads. Each one specifies a connection to the same database. Sub ReaderThread() Dim cn As New System.Data.OleDb.OleDbConnection
|
| Direct trace info to textbox | 30 Nov 2004 09:58 GMT | 2 |
I want my trace information i a textbox in my application, is there a simple way of doing this? TIA /Kejpa
|
| How to change Character set in VB ActiveX control in browser | 30 Nov 2004 09:46 GMT | 2 |
I have a vb ActiveX control in a frame by itself. It itself contains a third party graphing control (Graphics Server). In short, a javascript function passes an HTML table object to the activeX control, it loops through the cells and charts it. There is also an option to export to ...
|
| Error when deleting last record | 30 Nov 2004 09:26 GMT | 3 |
I have an error when I try to delete last record in the record set. The code I'm using is: lcurrow = Me.BindingContext(DsTextProdMain, "TextProductsMain").Current
|
| DataGrid field binding? | 30 Nov 2004 08:52 GMT | 1 |
How do you get the System.Windows.Forms.binding for a field that is bound to a DataGrid Control? With textboxes, it's just the bindings item property, but I can't seem to find one that works for a datagrid column...
|
| Tracking a print job | 30 Nov 2004 08:47 GMT | 1 |
I need to select one of about 15 printers, which I have been able to do. Then I need to set that printer as the printer to use, run a Crystal Reports reports, and track if/when the printing job completes. Is there a book or article that can help me?
|
| How to use OpenFileDialog control to select directory path. | 30 Nov 2004 08:38 GMT | 4 |
I want to give option to user for selecting directory, just like for selecting file using OpenFileDialog control. How to make it possible? I tried it using "VisualBasic.Compatibility.VB6.DirListBox" control, but it
|
| Using Active Directory to search folder groups | 30 Nov 2004 08:38 GMT | 1 |
I am looking for a sample of System.DirectoryServices code that will allow me to do three things: 1. Iterate over all shared folders on a drive 2. Find the groups that are assigned to each folder
|
| Q: Parent of a form | 30 Nov 2004 08:32 GMT | 23 |
Suppose I have two forms: Form1 and Form2. I create and show an instance of Form2 in the code of Form1 e.g. Dim myForm2 = New Form2 myForm2.Show()
|
| Convert project | 30 Nov 2004 07:14 GMT | 1 |
how to convert the project developed in .NET-2003 To .net 2002 (Vb Project)
|
| collectionbase.item | 30 Nov 2004 06:26 GMT | 2 |
When creating a collection class that inherits CollectionBase what advantage is there for the Item property returning CType(List.Item(index), <objecttype> ) over List.Item(index). Looking at the help file I guess speed and that's a good thing but what is
|
| Capture DataColumn Tab Key | 30 Nov 2004 06:04 GMT | 1 |
I have a ComboBox in a datagrid. I override the OnKeyUp event to do some checking and it works fine. However, I can't capture the "Tab" key. I have tried capturing it on the DataGrid itself, but that doesn't do it either. Any thoughts as to how to catch the Tab key in a ...
|
| Programmatically Change the column width of columns in Data Grid | 30 Nov 2004 05:53 GMT | 1 |
How can I programmatically change the column width of columns in a data grid? Here is the code I use to fill the data grid: Dim sqlError As SqlError
|