depends on how the origional file is formated
for instance if it reads line by line or a silgle line to eof.
dim confdat,yourfile,variable(0 to number of file lines) as string
cmdl.action = 1
yourfile = cmdl.filename
x = 0
Open yourfile For Input As #1
Do While Not EOF(1)
Line Input #1, confdat
variable(X) = confdat
X = X + 1
Loop
Close #1
will put each line as 1 line in the variable(x) array then do someting with the info to identify the information you need then feed those variables to your text boxes.
if left$(variable(1),4) = "0x08" then textbox.text = right$(varabie(1),9)
like i said it depens on how the origional file is formated and how you format the input to the variable(x) when reading the file.
note if your going to use the if then statments outside the sub rutine then make the variable array global in a modual
cause i dont know how to make them global from within the sub.