Advertisement
Advertisement
| 06.15.2008 at 12:48PM PDT, ID: 23486570 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: |
Public Structure MyData
<VBFixedString(30)> Public Text1 As String
<VBFixedString(30)> Public Text2 As String
<VBFixedString(30)> Public Text3 As String
Public Option1 As Boolean
Public Option2 As Boolean
End Structure
Private Sub cmdSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdSave.Click
Dim MD As New MyData
MD.Text1 = TextBox2.Text
MD.Text2 = TextBox3.Text
MD.Text3 = ListBox1.SelectedItem
MD.Option1 = Me.CheckBox1.Checked
MD.Option2 = Me.RadioButton1.Checked
FileOpen(1, txtFileName.Text, OpenMode.Random, OpenAccess.Write, OpenShare.Shared, Len(MD))
FilePut(1, MD)
FileClose(1)
End Sub
Private Sub cmdOpen_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdOpen.Click
Dim MD As New MyData
FileOpen(1, txtFileName.Text, OpenMode.Binary, OpenAccess.Read, OpenShare.Shared, Len(MD))
FileGet(1, MD)
FileClose(1)
TextBox2.Text = MD.Text1
TextBox3.Text = MD.Text2
ListBox1.Text = MD.Text3
CheckBox1.Checked = MD.Option1
RadioButton1.Checked = MD.Option2
End Sub
End Class
|