DaProgrammer
Programmer
Is there any alternative to using Input # array (which is not possible)?!? I have 659 numbers that must be assigned to 659 objects in an array.
The file is written like this...
N = req1(0).Value
T = Label1.Caption
Open "C:\MeritBA\" + T + ".mbd" For Output As #1
Write #1, N
For i = 1 To 659
Write #1, req1(i).Value
Next
Write #1, Label1.Caption
Close #1
I was attempting to open it like this....
filename = OpenDia1.filename
Open filename For Input As #1
Form8.Show
For i = 0 To 659
Input #1, Form8.req1(i).Value
Next
Close #1
End Sub
and I got an error. Is there anyway to do this?!? Form8.req1( 0 through 659 ).value are all checkboxes
PLEASE PLEASE PLEASE HELP!
-Eric
The file is written like this...
N = req1(0).Value
T = Label1.Caption
Open "C:\MeritBA\" + T + ".mbd" For Output As #1
Write #1, N
For i = 1 To 659
Write #1, req1(i).Value
Next
Write #1, Label1.Caption
Close #1
I was attempting to open it like this....
filename = OpenDia1.filename
Open filename For Input As #1
Form8.Show
For i = 0 To 659
Input #1, Form8.req1(i).Value
Next
Close #1
End Sub
and I got an error. Is there anyway to do this?!? Form8.req1( 0 through 659 ).value are all checkboxes
PLEASE PLEASE PLEASE HELP!
-Eric