hey all,
can anyone tell me what is wrong with this??
VB Code:
FileName = App.Path & "\Scores\High Score.cam" 'get high scores from file Open FileName For Input As 1 Do Until EOF(1) Line Input #1, HScore.Name Line Input #1, HScore.Score Loop Close #1
in a code module, i have a Public Type which is where the HScore.Name and HScore.Score came from. when i try to run the program, it comes up with a mismatch error and when i click debug, it highlights the .Score part of HScore.Score
thanks
