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 Chriss Miller 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: *

  • Users: quebasic2
  • Content: Threads
  • Order by date
  1. quebasic2

    Defint A-Z

    What does DEFINT A-Z stand for, qbasics helb file is very vague.
  2. quebasic2

    Reading from and .exe file

    I have an encryption program, and I would like to use it to encrypt certain executable files. Unfortunately, I get an error when I use and open statement to read the files. Why is this, and how do I get around it?
  3. quebasic2

    Are Global Varibles Evil?

    Anyone who has done any c, cpp, c# has been warned about the evils of using global varibles. You should not use them period according to most books. My question is: If you are not using them to excess, are they consider bad programming in Qbasic?
  4. quebasic2

    Sorting an array

    I was reading the faq on quicksort. Would not this be every bit as fast? It does not require the user to enter a start and quit point, it is nicer code, and easier to understand. var is your array: FOR a = UBOUND(var) TO 0 STEP -1 FOR b = 1 TO UBOUND(var) IF var(b) > var(a) THEN SWAP var(a)...
  5. quebasic2

    What is wrong with this?

    Here is my form processor. It doesn't work and I cannot find the problem. My server does not tell which line the problem is on. I have tried: CGI::Carp qw(fatalsToBrowser); but it does not make a difference. #!/usr/bin/perl &CheckReferingURL; &ParseForm; &GetDate; &SendSubmission...
  6. quebasic2

    Darkness Ethereal back from the dead?

    About a year ago, Dark Dread closed down his qbasic site, much to the dismay of many qbasic fans. He made three excellent rpgs: Cooey, Cooey 2, Matress Warrior. I checked on what was left of his site, and this month, he said that he may restart the website! check it out: http://de.tekscode.com/
  7. quebasic2

    Masking an image.

    In my program, I load my graphics from a gif file. But, on my character graphic, I need a mask for when I am moveing it around. How can I do that since it is a .gif file.
  8. quebasic2

    How to generate mazes in qbasic

    Quite a while back, someone asked for a angorism for generateing mazes using qbasic. I said that I hade seen programs that did that. I never found the program I was thinking about, but I found two others they are in a zip file at http://www.geocities.com/wreath2you/mazes.zip. I will leave...
  9. quebasic2

    Perl frome processor debug

    I am sure that I have the right paths to the perl bin and the sendmail, but my form processor does not work. My editor says that the codeing is correct, but the webserver gives me an error. Unfortunately it does not say what line the error is on. Could someone please look over the code and...
  10. quebasic2

    Renameing a file.

    Is there a command to rename a file in qbasic? I know how to use the shell command, and I know how to read from a file a write to another file then delete the old file, but I just wondered if you could just rename a file with qbasic.
  11. quebasic2

    How to change system time?

    How can you use qbasic to change the system time?
  12. quebasic2

    Time Stamp change?

    Is there away to use qbasic to change the time stamp on a file?
  13. quebasic2

    Uppercase or lowercase

    How can you make a varible all uppercase or all lowercase. example: INPUT: hi OUTPUT: HI or INPUT: HI OUTPUT: hi
  14. quebasic2

    string formating help

    I have a varible called $Red_Subtotal. The number can vary anywhere from 1 to in the thousands. How can I check to see if the number has two decimal places, if it does not, it will add .00 to the end of the string. It will not, however, change a number like $24.32. I also want my program to...
  15. quebasic2

    PHP number_format() to perl command

    Does anyone know the perl command that is like number_format in php?
  16. quebasic2

    Free web hosting with php support.?

    Does anyone know of a free website that has php support includeing the sendmail command? I need at least 5mb of space and 1gb transfer a month. Thanks in advance.
  17. quebasic2

    BLOAD BSAVE

    Can someone explain indepth how these commands work, or point me to a good tutorial. Thanks
  18. quebasic2

    Picture link

    I have a bunch of picture links on my site. Every time someone clicks on one, the browser puts a little gray square box around it. I'm sure you know what I am talking about, if not, click on a picture link on this site. Is their a way to get rid of that? Since my button changes when someone...
  19. quebasic2

    Printing with qbaisc

    I want my program to print to the computer. I have been using this: OPEN "LPT1:BIN" FOR OUTPUT AS #1 PRINT #1, thestring$ CLOSE #1 It works fine, except that after the printer gets through printing, the printer will not spit the paper out, and the light on it starts to blink. How can...
  20. quebasic2

    Mouse problem

    I used qbasic mouse routines in my program. As I made changes to the screen, I use inregs.ax = 2 to hide the mouse and then I used inregs.ax = 1 to show the mouse when I was through. It works fine on my windows 98 system, but on windows 2000, it leaves a picture of the mouse where I click It...

Part and Inventory Search

Back
Top