Search found 5 matches
- Sep 18, 2014 1:48
- Forum: DOS
- Topic: New DOS Ver 1.00.0
- Replies: 14
- Views: 9328
New DOS Ver 1.00.0
I installed the new FreeBASIC-1.00.0-DOS. Cannot compile simple program. Keep getting error Msg F:\Fb_v1000\\lib\\dos\\i386go32: No such file or directory. The file i386go32.x is in the directory \lib\dos. Cannot even compile programs I was able to compile on FreeBASIC-.0901. It still works but not ...
- May 31, 2007 18:31
- Forum: DOS
- Topic: Shell in FBV017b 1 May, 2007
- Replies: 2
- Views: 2751
Shell in FBV017b 1 May, 2007
Drv, Thank you for your help. I found it to be my Color statement as I was using it. Cls: Color White, White: Cls: Color Black, White. I changed it to: Cls Color White, White Cls Color Black, White. Shell worked ok after I did this. To be sure I put it back to the original color statement and I was ...
- May 31, 2007 18:24
- Forum: DOS
- Topic: Dir in FBV017B 1 May, 2007
- Replies: 5
- Views: 3845
Dir in FBV017B 1 May, 2007
Found the problem. It appeared my color statement was the problem. I was using Cls: color White, White: Cls: Color Black, White I changed it to: Cls Color White, White Cls Color Black, White It seems the colon was having the affect of a new page with no writing on it. Once I removed the colons it wo...
- May 30, 2007 18:57
- Forum: DOS
- Topic: Shell in FBV017b 1 May, 2007
- Replies: 2
- Views: 2751
Shell in FBV017b 1 May, 2007
Shell command does not work inside a Sub or a Sub within a Sub. The program compiles ok but nothing shows on the screen.
- May 30, 2007 18:54
- Forum: DOS
- Topic: Dir in FBV017B 1 May, 2007
- Replies: 5
- Views: 3845
Dir in FBV017B 1 May, 2007
Dir compiles ok but does not show on screen. It is being run from a
sub inside a sub.
Dim Checksum As String
Checksum = Dir(*.*)
Do
Print Checksum
Checksum = Dir()
Loop While Len(checksum > 0
sub inside a sub.
Dim Checksum As String
Checksum = Dir(*.*)
Do
Print Checksum
Checksum = Dir()
Loop While Len(checksum > 0