Search found 2443 matches
- Tue Nov 13, 2007 11:33 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: How to mix Shell commands with variables?
- Replies: 9
- Views: 8534
Those are Quotes
In certain DOS commands, you need Quotation marks in the command. CHR$(34) is simply a ". However, QB would think that was a string marker if you just used that. The character is preserved in the string command for use by DOS only. Look up the ASCII character codes somewhere. They are an important p...
- Tue Nov 13, 2007 11:17 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Problem with program...
- Replies: 23
- Views: 19616
You are using QB in an unfamiliar path
There are two ways this can happen. 1) The QB.EXE file cannot find a file outside of it's folder. Thus it asks for the path to it's folder files. You need to put the paths to all of QuickBasics EXE, Help, Include, and Library files into the Options menu of the IDE if they are not in the same folder ...
- Fri Nov 09, 2007 6:00 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: How to make 2 things happen at once in Qbasic
- Replies: 5
- Views: 6631
Loops are pretty fast, so you can make it appear to be doing two things at once. The only problem is if a procedure in the loop creates a delay of some kind. To print both the player and badguy you can print them both in a loop, but you will also have to find the new column and row too. This could b...
- Thu Nov 08, 2007 8:42 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: VB 6 Problem on WindowsNT
- Replies: 4
- Views: 7523
Those darn libraries
Ya better get used to them Mac, I hear that VB6 and VISTA don't like each other much.
So hi ho hi ho it's off to .NET we go.
Sounds like one of those errors M$ never fixed...........
Ted
So hi ho hi ho it's off to .NET we go.
Sounds like one of those errors M$ never fixed...........
Ted
- Wed Nov 07, 2007 12:20 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Insert image (what ever file type) into QBasic/Quick Basic
- Replies: 6
- Views: 9335
The process is a little hard to grasp at first. The Header.Pal string actually holds ASCII characters of the color values. If an asterisk (CHR$(42)) is in the string the color value = ASC("*") or 42. So you start reading the string with Blue = ASC(MID$(Header.pal, p, 1)) where p is a FOR loop variab...
- Tue Nov 06, 2007 2:18 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Insert image (what ever file type) into QBasic/Quick Basic
- Replies: 6
- Views: 9335
I don't think that BMP.BAS has any padder for the bitmap width and will skew some images. The following is the Bitmap Header Information from WOTSIT.org : TYPE BmpHeaderType Id AS STRING * 2 'Should be "BM" Size AS LONG 'Size of the data rr1 AS INTEGER rr2 AS INTEGER Offset AS LONG 'Position of star...
- Sat Nov 03, 2007 5:58 pm
- Forum: Freebasic Questions & Answers
- Topic: Can I make an image in Paint, then have a FB program load it
- Replies: 53
- Views: 102319
Well, that program looked like it should have worked, and after a lot of tries, I posted it at Network 54 Qbasic Forum and a guy got it working using PEEK instead of string manipulation of the color palette string. And it still cannot do large bitmaps in SCREEN 13! And now my old bitmap loaders will...
- Sat Nov 03, 2007 5:42 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: return from dos screen to window screen
- Replies: 12
- Views: 14234
?????????????
What do you mean by somewhat? Can you see the IDE header? How small does it get?
- Fri Nov 02, 2007 12:19 am
- Forum: Freebasic Questions & Answers
- Topic: Can I make an image in Paint, then have a FB program load it
- Replies: 53
- Views: 102319
Not everybody uses graphics in QB and needs Bitmaps either. I got a bitmap loader from here and the code did not even run! It took me a while to get it working, but it is still posted here wrong. It uses Interrupts to load SCREEN 13 bitmaps, but it still cannot load a full screen. If anybody wants t...
- Thu Nov 01, 2007 11:58 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: return from dos screen to window screen
- Replies: 12
- Views: 14234
- Wed Oct 31, 2007 6:31 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Passing arrays to subs
- Replies: 4
- Views: 6786
- Wed Oct 31, 2007 6:24 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Sprite flicker problem
- Replies: 8
- Views: 10545
SNARK LOL
Might as well call him a SNARK!
He is absolutely rude about giving thanks!
He is absolutely rude about giving thanks!
- Wed Oct 31, 2007 5:57 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: return from dos screen to window screen
- Replies: 12
- Views: 14234
- Sat Oct 27, 2007 4:46 pm
- Forum: Freebasic Questions & Answers
- Topic: Can I make an image in Paint, then have a FB program load it
- Replies: 53
- Views: 102319
PAINT is a piece of garbage!
You will need a decent picture editing program like Paint Shop or Photoshop. You might be able to use a decent scanner photo editor. Look around for one. The reason you need a decent editor is that QB can only use bitmaps of 4 or 8 Bits Per Pixel for images to be displayed in color. SCREEN 13 is bes...
- Thu May 10, 2007 12:55 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: how to view output while program is running
- Replies: 5
- Views: 9783
Just print it to the screen also
Wherever you produce output, also print it to the screen.
Example
PRINT #1, "Total: "; TotalSales
would be changed to
PRINT #1, "Total: "; TotalSales
PRINT "Total: "; TotalSales
Example
PRINT #1, "Total: "; TotalSales
would be changed to
PRINT #1, "Total: "; TotalSales
PRINT "Total: "; TotalSales
- Thu May 10, 2007 12:46 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: TRACE- VIEW OUTPUT AS IT IS GENERATED
- Replies: 2
- Views: 5421
Try this
The obvious answer:
Wherever you produce output, also print it to the screen.
Example
PRINT #1, "Total: "; TotalSales
would be changed to
PRINT #1, "Total: "; TotalSales
PRINT "Total: "; TotalSales
Wherever you produce output, also print it to the screen.
Example
PRINT #1, "Total: "; TotalSales
would be changed to
PRINT #1, "Total: "; TotalSales
PRINT "Total: "; TotalSales
- Thu Feb 15, 2007 1:44 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: How to make the computer think that a key has been pressed?
- Replies: 19
- Views: 29365
You can OUT a key value using &H60 on 98 and older machines. XP will not allow changes to settings in the BIOS keyboard including lites. Try the following to get the key press and release codes. Do: press$ = INKEY$ code = INP(&H60) locate 20, 20: PRINT press$; code LOOP UNTIL press$ = CHR$(27) The r...
- Thu Feb 15, 2007 1:26 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Vertical Retrace Question
- Replies: 6
- Views: 13116
- Thu Feb 15, 2007 1:20 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: OPEN COM() Problems with Belken USB/Serial adapter...HELP!
- Replies: 9
- Views: 18972
- Mon Aug 21, 2006 2:09 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Test 2 programs for a serial or parallel port
- Replies: 0
- Views: 6680
Test 2 programs for a serial or parallel port
I made some programs to monitor the serial and parallel ports. The problem is that I want to try to get some input from people that have devices on them. Whether they be something they made or a normal device to see how the programs perform. Eventually I want to be able to get QB to be able to work ...