Search found 8 matches

by rileyil77
Sun Jul 07, 2013 11:49 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Old Quick Basic 4.5 program I wrote....
Replies: 3
Views: 12561

Re: Old Quick Basic 4.5 program I wrote....

Is the image 24 bit? QB64 would need a 32 bit screen mode. SCREEN _NEWIMAGE(800, 600, 32) 'requires 32 bit screen mode to load i& = _LOADIMAGE("FATALITY.PNG", 32) ' or add 32 if loading image in SCREEN 0 IF i& < -1 THEN 'verify image handle value or function errors may occur w&...
by rileyil77
Sun Jul 07, 2013 2:37 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Old Quick Basic 4.5 program I wrote....
Replies: 3
Views: 12561

Old Quick Basic 4.5 program I wrote....

Friends, Last night while Burger2227 helped me through a message on here, I got to looking and found an old Mortal Kombat Guide I wrote in Quick Basic 4.5. I ran it through QB64 and everything was cool, except my HELP section and the final screen that loaded up which was an ANSI Graphic file. ANSI G...
by rileyil77
Sat Jul 06, 2013 6:49 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Writting program with QB64, need help!
Replies: 2
Views: 11736

Re: Writting program with QB64, need help!

SLEEP will wait until any key(except function keys) is pressed. Use k$ = INKEY$ after it to clear the key or it may end up in an INPUT later on. K$ = INPUT$(1) 'will wait for any key press. INPUT "", dummy$ 'will wait or take input until Enter is pressed. You could also use a do loop for ...
by rileyil77
Sat Jul 06, 2013 6:06 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Writting program with QB64, need help!
Replies: 2
Views: 11736

Writting program with QB64, need help!

Friends, Sorry, to ask, but I just recently started programming again. I thought... And I known I'm going to sound retarded, but I thought for example if I was doing say code like this: 'Inspection Software ' ' Written By: John Riley ' ' Version: 1.2013.7.5 ' ' Written with QB64. ' Converted to Web ...
by rileyil77
Mon Oct 15, 2012 5:18 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Brute Force Hacking...
Replies: 2
Views: 12006

We don't hack programs here. It is not your program if you don't know the password. Cool. I just figured since it was abandonware, and I'm the only one supporting it in the BBS world it wouldn't matter if I had away for new SysOps to register such a great BBS package. Thanks though. I will figure o...
by rileyil77
Sun Oct 14, 2012 10:24 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Brute Force Hacking...
Replies: 2
Views: 12006

Brute Force Hacking...

I have an old DOS Program that hasn't been supported since 2002. The company that created it went out of business in May of 2002. The program is an old DOS BBS Program, and without being registered will not accept any caller except the SysOp. I was going to use a batch file to brute crack it, howeve...
by rileyil77
Sat Jun 09, 2012 11:44 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: qBasic or vbDOS shelling and logging question...
Replies: 2
Views: 9053

RDMATH.EXE is already written. It requires a 16 Alphanumeric code in the xxxx-xxxx-xxxx-xxxx be inputed into it. I was wanting to know how to program a file that will repeatedly spit into the RDMATH.EXE the codes and log the codes it spits out also in a text file. Thanks for you help and I will stil...
by rileyil77
Sat Jun 09, 2012 5:35 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: qBasic or vbDOS shelling and logging question...
Replies: 2
Views: 9053

qBasic or vbDOS shelling and logging question...

To whom it concerns, I want to create a program that opens my program, rdmath.exe and then inputs multiple alphanumeric codes in the format xxxx-xxxx-xxxx-xxxx into rdmath.exe. After it inputs the code it should send the enter command into the program twice. It also needs to log everything it is doi...