Oni!
Wow...not much action here...
Anyways, I guess I'll be posting all my whining here.
Ok, so I'm doing two things for one program that are giving me trouble.
So you know, I'm creating a program for Dance With Intensity (a
ddr simulator.)
So first problem that's rather generic.
I have 9 rows of option buttons, and I know to get them to link independantly, they have to be in their own Form, Frame, or Picture Box.
But no matter what I do, I've grouped them by frame, I've grouped them by picture box (in this program I CANNOT group them by form), they won't link properly.
Anyone have a method confirmed to work?
Second...I'm trying to read input from a file.
And this is what I have.
Path = dirOne.Path
File = fileOne.FileName
Open Path & "\" & File For Input As #1
Do Until Title = "#TITLE"
Input #1, Title
Loop
Line Input #1, Junk
MsgBox Junk
Close #1
Basically, the 'Do Until Title = "#TITLE"'.
I want it to look through the whole file (loop through) and find any line starting with "#TITLE" and ANYTHING ELSE DOESN'T MATTER (Does the 'Like' command work for this?), then the Line Input get's that whole line (or will the whole line be in the title variable already?).
Fact is...it's skipping over the line that has the #TITLE, and...yeah.
Help?
Anyways, I guess I'll be posting all my whining here.
Ok, so I'm doing two things for one program that are giving me trouble.
So you know, I'm creating a program for Dance With Intensity (a
ddr simulator.)So first problem that's rather generic.
I have 9 rows of option buttons, and I know to get them to link independantly, they have to be in their own Form, Frame, or Picture Box.
But no matter what I do, I've grouped them by frame, I've grouped them by picture box (in this program I CANNOT group them by form), they won't link properly.
Anyone have a method confirmed to work?
Second...I'm trying to read input from a file.
And this is what I have.
Path = dirOne.Path
File = fileOne.FileName
Open Path & "\" & File For Input As #1
Do Until Title = "#TITLE"
Input #1, Title
Loop
Line Input #1, Junk
MsgBox Junk
Close #1
Basically, the 'Do Until Title = "#TITLE"'.
I want it to look through the whole file (loop through) and find any line starting with "#TITLE" and ANYTHING ELSE DOESN'T MATTER (Does the 'Like' command work for this?), then the Line Input get's that whole line (or will the whole line be in the title variable already?).
Fact is...it's skipping over the line that has the #TITLE, and...yeah.
Help?