Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. CodePost

    FILE NAMES

    Hi HHG. I had the same headace problem when FTPing my site files for the first time. All my links were in lowercase, all my files were in UPPERCASE, so no links would work. As correctly stated above by others, Qbasic can make only Short file names -- all uppercase (even if you put lowercase...
  2. CodePost

    A Compendium of QB-related MS KB Articles

    Whoops, that QBKB link should be.. http://qbnz.com/dav/qbkb/ - Dav
  3. CodePost

    A Compendium of QB-related MS KB Articles

    Thanks for sharing the link. I'd forgotten about that site. I also have a QB KB collection up, with a search engine. So far there's over 1650 articles about QB. http://qbnz/dav/qbkb/ - Dav
  4. CodePost

    Will manually compiling a program get rid of errors?

    Hi Barok. :) Wow, That's a bunch of errors. How about just giving 1 or 2 of those errors messages here. ;) Also, what's the BC & LINK lines you're using? - Dav
  5. CodePost

    Graphics Compression

    RLE is pretty simple and easy to do in QB, but only works well on simple images. I have a small (and very basic) RLE tutorial/demo thing here, if you want it. http://qbnz.com/dav/rle.bas - Dav
  6. CodePost

    HAs anyone heard of these compilers?

    yeah, I'd say PowerBasic too. For a windows basic compiler, Powerbasic is hard to beat. It's a strong basic compiler with a strong following and tech support. It produces small fast exe's needing no runtime. PureBasic also produces small exe's needing no runtime, but it's a little odd and...
  7. CodePost

    Integers

    Hello. I happened to just now be reading a document from the QuickBasic Knowledge Base that covers this stuff and have posted a small portion of it for you here since I can't dig up a url for it at the moment. You can get the entire QB KB (freeware) at my site if you'd like to have it. It's...
  8. CodePost

    Limiter trial of a Program

    Like Buff, I also usualy make a special compiled version for demo software with the extra features removed. Another good method is to have the program look for a 'key' file. If it's there, then have the program access the extra features. You could appened extra info on the end of the EXE...
  9. CodePost

    DEF SEG ADDRESSES

    &HFFA6 is where the bios font is stored. doing.... DEF SEG = &HAFFA6 ...points to this location. Then you can use PEEK to retrieve the font data. Here's a small SUB that uses this method which prints words on the screen without using PRINT. DEFINT A-Z DECLARE SUB BIOSPRINT (x%, y%...
  10. CodePost

    Qbasic 4.5 turning to exe

    This error can come from a few reasons, such as being in a directory (or using a filename) with the @ symbol in it. Another cause of this error may be that you are using the wrong version of the linker, as this document below from microsoft explains better than I can. - Dav Visit THE CODE...
  11. CodePost

    Illegal Function call, but.......

    Without more information it's hard to say what's causing this error with your program, although it does narrow down the bug searching knowing that it runs fine in the IDE but fails when compiled. Are you using CHAIN at all? If so, don't create a run-time needed EXE - create a standalone one or...
  12. CodePost

    LOAD BITMAP AND PHOTO VIA QBASIC

    I've written a number of BMP loaders in you can have -- for SCREEN 12, 13 and Vesa modes. They're on this page: http://home.carolina.rr.com/davs/codepost/archives/graphics.htm Here's a nice program on Toshi's project page that loads many kinds of BMP's...
  13. CodePost

    Limits to Val Function?

    Hmm ... I dunno ... It works correctly for me using Qbasic & QB4.5. Are you using v7.1 by any chance? If so, then are you linking with the NOFILTN.OBJ file that comes with PDS? There's a bug wih that. Linking with it result in invalid VAL() returns. Only thing I can suggest right now is -...

Part and Inventory Search

Back
Top