| Thread | Last Post | Replies |
|
| VB.Net Code to read File Names | 28 Jul 2005 18:38 GMT | 6 |
I want the VB.Net program to read and file names from a directory. I thought the best thing to do was to place these file names into a "temporary" MS Access database for sorting, etc. So I'm looking for sample code that will instantiate MS Access (one that
|
| Two datatables | 28 Jul 2005 18:11 GMT | 3 |
I have a dataset that was created from an xml file. That dataset has two tables. I would like to create a third datatable that brings some of the fields from each datatable together.
|
| AddHandler Removal | 28 Jul 2005 18:06 GMT | 1 |
Is it possible to remove an event handler once it's installed with AddHandler? Below is the event I added and it works fine. Later in my code I want to remove it. I tried using this statement: (AddHandler mOwner.CmdFirst.Click,
|
| WaitForExit: No process is associated with this object. | 28 Jul 2005 17:01 GMT | 2 |
Using the following code, I get the error "No process is associated with this object" when calling the WinZip.WaitForExit() method. After I click the "Break" or "Continue" button on the dialog, the app exits but then the command window opens and the process runs on its own. Could
|
| Translating Columns As Rows In a DataSet | 28 Jul 2005 16:17 GMT | 6 |
The code i'm writing is using VB .NET and is for a web service returning a dataset, which is in turn to be used by an ASP .NET application displaying a datagrid. I'm currently populating a datagrid using a "select top 1 column 1, column2,
|
| MSFlexGrid not supported? | 28 Jul 2005 16:07 GMT | 2 |
after I migrated to dotNet, migration wizard transferred over my vb6.0 Msflexgrid activex com as a dll, it putted it in my bin dir as AxInterop.MSFlexGridLib.dll. however, I can't use this control at all. each time, I opened up my form layout. I get this message:
|
| Simple question regarding modules | 28 Jul 2005 15:55 GMT | 2 |
i have a situation where I have a VB .Net Module built that contains all of the functions I need. I now need to add a form to the project and i need the form to sdisplay and the module code to write to the form. I am having trouble figuring out how to do this.
|
| Stored Procedure | 28 Jul 2005 15:55 GMT | 3 |
I have code below that will only execute half of a procedure!!! I can execute it fine in SQLServer. The parametars are setup the same as are the returning params for other sProcs that run fine. I have checked everything
|
| File.Exists does not work on some machines | 28 Jul 2005 15:54 GMT | 6 |
I'm using If File.Exists("c:\docs\myfile.txt") msgbox("Found") End
|
| string replacement - regex? | 28 Jul 2005 15:48 GMT | 2 |
Hi & help, I'm trying to parse arithmetic expressions such as 4*(7-2.1). The first thing I'm trying is to add spaces to get: 4 * ( 7 - 2.1 ). I thought that Regular Expressions would be the way to go. I tried:
|
| instantion of class at class level or in new()? | 28 Jul 2005 15:04 GMT | 10 |
Public Class Controller Dim mx As New HelperClass 'here, where I have it now ???? Sub New() 'or here??? Dim mx As New HelperClass
|
| structure with array issues | 28 Jul 2005 14:31 GMT | 2 |
my program keep crashing itself it executes a structure with static array members such as this: module myModule: ....
|
| Saving BitMaps in VB.Net 2005 | 28 Jul 2005 13:42 GMT | 3 |
Will 2005 allow saving bitmaps containing >256 colors using the .save method?
 Signature Dennis in Houston
|
| How to wait for command window to exit? | 28 Jul 2005 13:39 GMT | 4 |
I have loop that calls a Sub that runs the following code: Dim WinZip As System.Diagnostics.Process Dim args As String = " -Pru -ex " & lblFolder.Text & "\" & PCName & ".zip @""" & appPth & "WksBkup.txt"""
|
| Full Vb.Net demo application | 28 Jul 2005 13:18 GMT | 3 |
I'm looking for a full Vb.Net windows-GUI Demo Project. Especially, I'm interested in complex windows forms designed and programmed in High Standards enabling a process of complete Data Manipulation (Insert/Update/Delete)
|