I have a vb.net windows application that accepts command line arguments
(e.g sales.exe -q12345) This opens the Sales app and opens quotation number 12345 for editing.
I'm trying to get the ...
I'm working on an application that will list the directory name and the file name so I can insert them into a database. Right now, I insert the data into listview so I can see it.
Example o...
Hi,
I have a texfile with the following structure:
*******
1
-
-
0 INVOICE
+ INVOICE
Number.. 0024945 Name
Custnumber ... 000001 Address1
Dat...
I am trying to create a change password page in ASP.NET (VB.NET) for users of a NT4 domain. The Web server is running IIS6 on Windows 2003 Server.
The SetPassword command is giving me a Sy...
I'm trying once again to accomplish something pretty simple, but it appears the DataReader can only return accurate results in the .RecordsAffected property if it is closed? In fact, on a SEL...
Hello Experts,
I'm wondering if there's a way for me to dynamically generate several panels at runtime. I can use the following code to generate a panel @ runtime, but how would I recode th...
I have a function that takes three argument all of which are objects ByRef
if I try to pass a string as one of the parameters when the string is a variable, I get an error that option stric...
Should be very simple
After i've processed a sub in the main window how to I get the console to close?
Code:
Module MainModule
Function Main(ByVal args() As String) As Integer
...
How would I open a specified folder in windows explorer?
Dim FolderPath as String
FolderPath = "C:\MyFolder
SystemDiagnostics.Open(FolderPath)???
I have a form with a webbrowser on it.
I'm trying to get my little app to fill in the login and password on this page...why isn't it working.
If I pull the page out by itself it works fine...
I am using VB.NET. I want to write an app that will send a key (specifically the down, up, right, or left) arrow keys and hold them down for X amount of seconds. Simply doing Sendkeys "{RIGH...
I developed one package using vb.net and Mssql server 2000 and working properly. Now I want to use my vb.net code with oracle database. I am updating table with command.executenonquery meth...
How do I embed and automate Word Documents in VB.Net? I am new to VB.Net and need to open a document(s), allow the user to make modifications, then save and close programatically.
Thanks,
...
I have a problem. I am newbie to vb net and can not get a child form to open properly.
I was used to the old form.show() method..(yes, it's been that long ago...)
If I set the parent form pr...
Basically I used the following link to create control array checkboxes in VB.NET ..
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_vstechart/html/vbtchcreatingcontrolar...
Hi,
I am making a Board Game for which i need the graphics display, I have done VB6 but it seems that Vb.Net has change that a lot and i can't figure the changes of it and i haev try msdn b...
I need to add a carriage return line feed in my string builder.
sb.Append(txtFname.text)
sb.Append(txtLname.text)
sb.Append( need a carriage return here)
I tried ("\n") but it just pri...
How might I modify a treeview to make the nodes alright to the right, instead of left? Like:
http://www.peirsontopeirson.com/one_CD/CD_Master/BizTalkMapper.htm
I would like to load and blend to or more images and save the result as one new image. Formats: jpg, tif (compressed and uncompressed), bmp and tga
How to do this in VB .NET?
I need so...
I am trying to figure out SendMessage but am still lost. Here is my function declaration:
Declare Auto Function SendMessage Lib "user32" ( _
ByVal hWnd As IntPtr, _
By...
Here is my code:
___________________________________________________________________________
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles But...
Hi
Is there anyway to change the color of the arrow in a combo box?
Thanks
Adam
I'm upgrading a VB6 App to VB.Net and I can't get one of the Methods to work. I'm working with a custom camera interface that I can use to capture images from a digital camera. The problem i...
I'm trying to use OpenFileDialog to select files to work with
When trying to access the result (OpenFileDialog1.Filename) I get this error
Run-time exception thrown : System.Security.Sec...
I would like to be able to select several controls at runtime, using the mouse dragging a rectangle over the controls, just like you select different files in a folder. Has anyone done this be...