AuthorMessage
dzadzuks
Ametuar
Posts: 135

have 2 forms. Need to get data from form1 to form2...
like things are takeing action in form1 but i get the debug in form2
thx 
Meka][Meka
Unstopable
Posts: 700

simple
Code:

Private Sub Form_Load()
    Form2.Show
    Form2.Caption = "lol simple"
End Sub

b_w_johan
Regular
Posts: 56

Form1.List1.AddItem File1.FileName
    '// how to make it add Drive1 followed by \ Dir1 again \ then filename??
hmmm now i only have the filename but WMP can't play yust by filename it needs the path to ....
any idea how to do it better way or any idea how to translate the editors not to real code ??
bluebear
n00b
Posts: 32

Form1.Caption = Dir1.Path & "\" & File1.FileName
C0D3Z3R0
Pro
Posts: 166

Quoted from dzadzuks
have 2 forms. Need to get data from form1 to form2...
like things are takeing action in form1 but i get the debug in form2
thx 

Something like this?
Private Sub Command1_Click()
Form2.Show
Form2.Text1.Text = Text1.Text
End Sub