Staredit Network

Staredit Network -> Computers and Technical -> VB6 Code problem
Report, edit, etc...Posted by Oo.Insane.oO on 2006-12-09 at 13:24:59
Im trying to make my program load .TBL files. It loads without erroring it just doesnt load the .TBL files where I want them

Heres my code:
CODE

Private Sub Open_Click()
CommonDialog1.ShowOpen

Open "stat_txt.tbl" For Input As #1
While Not EOF(1)
Line Input #1, temp$
alltext$ = alltext$ & temp$ & vbCrLf
Wend
StringListSpot.Text = alltext$
Close #1
End Sub


Thanks to anyone who can help me smile.gif
Report, edit, etc...Posted by Pyro-Fire on 2006-12-21 at 03:18:58
open the tbl file in notepad.

from here you will find your problem.

your going to need a plugin for your program.
Report, edit, etc...Posted by LegacyWeapon on 2006-12-27 at 08:49:05
[url=http://www.maplantis.org]
CODE
Open pathname For [B]Binary[/B] As 1
Get 1, [recnumber], varname


[recnumber] is where you start to get stuff (byte position)
varname is which variable it is loaded into (array)[/url]
Next Page (1)