Search found 63 matches

by Darren
Fri Jun 03, 2011 11:21 am
Forum: General category
Topic: ICON
Replies: 3
Views: 6232

ICON

Simply remove the "=" sign

for example.....

Appicon "C:MyIcon.ico"
by Darren
Fri Jun 03, 2011 7:07 am
Forum: General category
Topic: Convert a small Visual Basic 6 code to FnxBasic co
Replies: 0
Views: 4842

Convert a small Visual Basic 6 code to FnxBasic co

Can anybody help???Does anybody know how to change the following Visual Basic 6 code to FnxBasic code?Private Declare Function exec_dwgconvert Lib "dwgconvert.dll" (ByVal lpCmdLine As String, ByVal Flags As Long) As LongSub ConvertFile()    Parameters = Chr$(34) + Chr$(34) + Chr$...
by Darren
Fri May 13, 2011 11:28 am
Forum: General category
Topic: Opening and reading a text file line by line
Replies: 1
Views: 4638

Opening and reading a text file line by line

Please Help!!!Can anybody tell me how i can open a text file and read it "Line by Line"?Here is my Visual Basic 6 example.... :    Open "C:Test.txt" For Input As #1    Do While Not Eof(1)          Line Input #1, N$   &nb...