Search found 9 matches

by cryptid
Sat Oct 22, 2005 6:56 am
Forum: QBASIC and QB64 Questions & Answers
Topic: List of few basic questions
Replies: 24
Views: 25857

So far what i feel is that FB is more superior ro QB so i have another Question,Should i learn FB or VB6?which 1 u think is a better option?
by cryptid
Wed Oct 19, 2005 1:34 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: List of few basic questions
Replies: 24
Views: 25857

List of few basic questions

what is the diffrence between QB v4.5, P.D.S v7.1 and FB how do they differ? can QB codes be compiled using FB? y use FB? are the file generated by FB smaller than file generated by QB (the .exe file)? are the files generated by QB 7.1 smaller than the files generated by QB 4.5? are the files genera...
by cryptid
Tue Oct 18, 2005 2:13 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: check for file existence and then condition statement
Replies: 30
Views: 42325

Nathan1993 wrote:easy.

Code: Select all

SHELL "yourbatchfilegoeshere.bat"
well i know i can use shell but i want the program to be 100% Qbasic i dont want to generate batch files( i feel it is a bit messy) so can the same batch file be translated into QBasic i mean translate the above batch file to QB code
by cryptid
Tue Oct 18, 2005 9:59 am
Forum: QBASIC and QB64 Questions & Answers
Topic: check for file existence and then condition statement
Replies: 30
Views: 42325

sorry

actually all i wanted to do is check for a file and then append to it i know how it is done in Batch: ====================================== if exist "C:\myfile.txt" goto append if exist "C:\WiNDOWS\myfile.txt" goto appendix :append Echo Hi this lineis being putin by cryptid>>C:\...
by cryptid
Fri Sep 30, 2005 3:14 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Registry creation to Run Wscript files
Replies: 2
Views: 4611

Registry creation to Run Wscript files

ok here is my problem,i usually make a new .reg file using the command Open file.reg for output as #1 so that the programs that i creat run at startup but i was trying to eneter this value in REGEDIT.exe as Wscript C:\file.vbs C:\file.bat using the .reg file generated by my programs that looks like ...
by cryptid
Thu Sep 29, 2005 5:16 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Multiple files appending
Replies: 6
Views: 9669

Multiple files appending

Well i have to edit multiple files situated in diffrent locations in the computer i know it can be done using the command [open "C:\file.txt" for append as #1] but my problem is that i have to append the same lines in the other files also so is there a way that i can append the same lines ...
by cryptid
Thu Aug 18, 2005 3:20 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Compiling .Bas files from MS-DOS
Replies: 4
Views: 11381

Compiling .Bas files from MS-DOS

is there are way to compile a .Bas file to .exe from MS-Dos say i have a .Bas file and the qb.exe and the other files such as link.exe BC.exe & the .lib files in the same folder will it be possible to compile the program into a .exe file OR is there a command like |C:\WINDOWS\QB45\qb -c File.bas...
by cryptid
Thu Aug 18, 2005 1:53 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: In simple words "modifying a text line"
Replies: 1
Views: 3368

In simple words "modifying a text line"

ok my earlier post did not return any results so i am posting question again in a more simple manner Want to Make a program that will read a Text file and will add few words in the begging of the lines in the text file as well as in the ending of the line Say the text file "file.txt" has t...
by cryptid
Thu Aug 18, 2005 3:39 am
Forum: QBASIC and QB64 Questions & Answers
Topic: prepending and appending
Replies: 1
Views: 3262

prepending and appending

hi this is my first post,, my problem is that i want to make a program that will take users input and it should prepend and append a certain word to the line that the user has entered for example : the user has entered the word "hi i am cryptid" what i want to do is that take that line and...