I'm building Jetpad and I don't know the open or save code. Can someone please help me?
thanks
thanks
Open App.Path &"\usermate.txt" For Output As filenum1 Open App.Path &"\usermate.txt" For Append As filenum1
Open App.Path &"\usermate.txt" For Input As filenum1
Open App.Path &"\usermate.txt" For Output As filenum1 Open App.Path &"\usermate.txt" For Append As filenum1
Open App.Path &"\usermate.txt" For Input As filenum1
filenum1 = FreeFile Private Sub FS_Click(Index As Integer) Open App.Path & "\usermate.txt" For Output As filenum1 Write #filenum1, Text1.Text 'this being container of text being loaded in usermate.txt Close #filenum1 ' in your code here to have it do what you want End Sub
Private Sub Toolbar1_ButtonClick(ByVal Button As MSComctlLib.Button) End Sub
'Set visivility to false when form loads Private Sub Form_Load() Image1.Visible = False End Sub 'Bring snapshot in as needed Private Sub MyPicButton_Click() Image1.Visible = True End Sub Or Private Sub MyPicButton_Click() Picture1.Visible = True End Sub Depending on which control you are using..
'Set visivility to false when form loads Private Sub Form_Load() Image1.Visible = False End Sub 'Bring snapshot in as needed Private Sub MyPicButton_Click() Image1.Visible = True End Sub Or Private Sub MyPicButton_Click() Picture1.Visible = True End Sub Depending on which control you are using..
Comment