Click here to Skip to main content
15,915,172 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Generalnetwork Pin
fatidarya26-Nov-04 19:19
fatidarya26-Nov-04 19:19 
GeneralRe: network Pin
Dave Kreskowiak27-Nov-04 11:22
mveDave Kreskowiak27-Nov-04 11:22 
GeneralRe: network Pin
fatidarya28-Nov-04 9:55
fatidarya28-Nov-04 9:55 
GeneralRe: network Pin
Dave Kreskowiak28-Nov-04 17:23
mveDave Kreskowiak28-Nov-04 17:23 
GeneralImage Control Problem Pin
Anonymous26-Nov-04 16:27
Anonymous26-Nov-04 16:27 
GeneralRe: Image Control Problem Pin
Dave Kreskowiak29-Nov-04 2:56
mveDave Kreskowiak29-Nov-04 2:56 
Generalmultiple Forms Pin
quhaip8826-Nov-04 14:02
quhaip8826-Nov-04 14:02 
GeneralRe: multiple Forms Pin
Dennis C. Dietrich26-Nov-04 14:55
Dennis C. Dietrich26-Nov-04 14:55 
quhaip88 wrote:
At some point, I want to open Form2 and have the same data from the textbox on form1 displayed automtically in a textbox on form2.

After you've created an instance of Form2 you can manipulate its child objects like you do with any other object. So just set the TextBox's Text property and then call Show(). Assuming that you want to do that somewhere in the Form1 class the simplest example looks like this:
Dim MySecondForm As Form2 = New Form2()
MySecondForm.TextBox1.Text = Me.TextBox1.Text
MySecondForm.Show()

Best regards
Dennis
GeneralRe: multiple Forms Pin
quhaip8826-Nov-04 17:02
quhaip8826-Nov-04 17:02 
GeneralVery large file problem Pin
Bloomers26-Nov-04 12:18
Bloomers26-Nov-04 12:18 
GeneralRe: Very large file problem Pin
Dennis C. Dietrich26-Nov-04 15:28
Dennis C. Dietrich26-Nov-04 15:28 
GeneralRe: Very large file problem Pin
Shree28-Nov-04 3:07
Shree28-Nov-04 3:07 
Generalspecifying proxy for webbrowser Pin
ddd0126-Nov-04 10:47
ddd0126-Nov-04 10:47 
GeneralVB question Pin
Paps226-Nov-04 8:48
Paps226-Nov-04 8:48 
GeneralRe: VB question Pin
sam683ir28-Nov-04 2:46
sam683ir28-Nov-04 2:46 
GeneralRe: VB question Pin
Paps228-Nov-04 3:27
Paps228-Nov-04 3:27 
GeneralRe: Calling a c++ dll Pin
Dave Kreskowiak26-Nov-04 3:26
mveDave Kreskowiak26-Nov-04 3:26 
GeneralRe: Calling a c++ dll Pin
Member 142531829-Nov-04 4:14
Member 142531829-Nov-04 4:14 
GeneralNeed to extract open application window title bar Pin
Member 91913025-Nov-04 22:49
Member 91913025-Nov-04 22:49 
GeneralRe: Need to extract open application window title bar Pin
Dave Kreskowiak26-Nov-04 3:41
mveDave Kreskowiak26-Nov-04 3:41 
GeneralRe: Need to extract open application window title bar Pin
Member 91913028-Nov-04 16:38
Member 91913028-Nov-04 16:38 
GeneralRe: Need to extract open application window title bar Pin
Dave Kreskowiak28-Nov-04 17:20
mveDave Kreskowiak28-Nov-04 17:20 
GeneralRe: Need to extract open application window title bar Pin
Member 91913028-Nov-04 18:33
Member 91913028-Nov-04 18:33 
GeneralRe: Need to extract open application window title bar Pin
Dave Kreskowiak29-Nov-04 1:26
mveDave Kreskowiak29-Nov-04 1:26 
GeneralWant to read from an already opened Notepad file Pin
amitranjanmishra25-Nov-04 21:48
amitranjanmishra25-Nov-04 21:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.