AllExperts > Qbasic, Quickbasic 
Search      
Qbasic, Quickbasic
Volunteer
Answers to thousands of questions
 Home · More Qbasic, Quickbasic Questions · Question Library  · Free Encyclopedia ·
More Qbasic, Quickbasic Answers
Question Library

Ask a question about Qbasic, Quickbasic
Volunteer
Experts of the Month
Expert Login

Awards

About Us
Tell friends
Link to Us
Disclaimer

 
 
 
About Alex Barry
(Top Expert on this page)

Expertise
I have been a qbasic programmer since 2000, creating games, minor libraries and various small programs. I have experience using interrupts, graphics, file input/output, the mouse cursor, and using libraries. I have also learned FreeBASIC, c/c++, python, php and html.
I do not claim to be an absolute authority in any language, but I don't mind looking things up and learning with you.

Experience
Hobby programming since 2000

I no longer belong to any community programming groups, but do have knowledge of *basic dialects and C/C++

   

You are here:  Experts > Computing/Technology > Basic > Qbasic, Quickbasic

SubjectDate AskedExpert

ROUNDING OFF NUMBERS11/20/2009Alex Barry
  Q: Sir, i would like to ask how to round off numbers in Qbasic? for example: 9.1666667E-03 <- i need ...
  A: Oliver, QBasic doesn't have a built in ability to round numbers to decimal places. What I would ...
printing with qbasic11/19/2009Alex Barry
  Q: I run qbasic 4.5 in a window using xp professional. Have had no trouble printing to my xerox phaser ...
  A: Jack, Can I see your code for printing? In my opinion, it sounds like the problem is: 1) The code ...
put and get,,,11/18/2009Alex Barry
  Q: Explain how to use put and get statements... got a Qbasic class, and the project is to make a ...
  A: Tory, You'll have to be a little more specific for me to help you. There is a GET/PUT statement ...
Beep11/18/2009Alex Barry
  Q: Our teacher told us to create a program in Quick basic that used the beep statement. I don't know ...
  A: Henry, To make just a beep noise, in QBasic, you would do this: BEEP To make different notes, you ...
USB subroutines for Quickbasic11/15/2009Alex Barry
  Q: Alex, I am trying to write a Quickbasic program that will receive input from a MIDI keyboard that ...
  A: Robert, I don't think MIDI keyboards and USB combine (I may be wrong), and if they do, and you are ...
Qbasic Search/Replace string in text file.11/13/2009Alex Barry
  Q: I am zero in programming as I am a Hardware guy. I saw your posting about searching a string in ...
  A: K.Ayyappan, This is how I would do that: For the sake of simplicity, I'll assume you won't have ...
'Draw' Command in QuickBasic11/10/2009Alex Barry
  Q: I couldn't understand this line- DRAW "b m0," + STR$(yp+j) + ",8 c7" Could you please explain to me ...
  A: Kim, The draw statement information can be found here: ...
Some other questions10/22/2009Alex Barry
  Q: I have some general questions today. Please help me with them: 1. How do you input only 1 character ...
  A: Shane, There might be a DOS shortcut in the directory (a pif file). If there is, delete it. Then ...
Some other questions10/21/2009Alex Barry
  Q: I have some general questions today. Please help me with them: 1. How do you input only 1 character ...
  A: Shane, For question#1, you can use this code: PRINT "Question? [Y/N] "; DIM answer AS STRING * 1 ...
Search problem10/18/2009Alex Barry
  Q: I'm doing a library catalog program for my school project. I'm having problem in the Search() SUB ...
  A: Shane, I think this is the problem with your code: FOR M = START TO LEN(C$) P$ = MID$(C$, M, 1) IF ...
read statements10/13/2009Alex Barry
  Q: could you please explain read and data statements and how to use them. i have a very usless hardass ...
  A: corndog (nice nickname), I can definitely help you understand READ and DATA statements. A data ...
qbasic serialport on xp10/10/2009Alex Barry
  Q: I am developing some simple robotics projects - eg remote lawnmower. I was hoping to do some simple ...
  A: David, I do believe you are right about windows limiting access to hardware from a dos-prompt. ...
dos converting9/30/2009Alex Barry
  Q: Is there a way to convert messages sent to me in DOS form over to windows or through another tool? I ...
  A: Skip, Well, this isn't the DOS section, this is the QBasic section - I'm not as well in knowledge ...
array in qbasic function9/16/2009Alex Barry
  Q: Is it possible to pass array as an argument/parameter in qbasic function? if yes, please let me ...
  A: Ranj, Yes, to pass an array to a SUB/FUNCTION, this is what you'd need to do: DECLARE SUB ...
triangle9/4/2009Alex Barry
  Q: how can put for loop ina program and how can creat a triangle shap with a charactor
  A: navin, To make a for loop, this is what you do: FOR variable% = minvalue% TO maxvalue% [STEP ...
quick basic8/28/2009Alex Barry
  Q: i have told to take out the sum of first five even numbers.. how to do... explain
  A: Vasudha, Well, I don't know what you mean by "take out the sum" but I can tell you have to check to ...
batch file wanted8/19/2009Alex Barry
  Q: I'm trying to make a batch file to back up new documents to a flash drive so if the hard drive goes ...
  A: Jim, First, I want to note that this is the QBasic section, and not a DOS-Batch section, so ...
Input text file7/29/2009Alex Barry
  Q: I'm trying to input a text file,without commas, such as - John Doe 9 $2,000,000 Bill Niceguy 12 ...
  A: John, First, I want to address a problem I see with your example inputted information (and how we ...
hide password details7/12/2009Alex Barry
  Q: how do i hide password details so when i input my password it displays *'s
  A: Rasheed, I've heard a lot of people ask this question (here, and on various qbasic forums), so I ...
acquiring/controlling usb with Quickbasic7/6/2009Alex Barry
  Q: I would like to use an old application written in quickbasic (which acquired/controlled data from ...
  A: Sonia, There are two options for updating the code. My first option would be to download FreeBASIC ...
Number of files in a folder.7/3/2009Alex Barry
  Q: I haven't programmed in Quick Basic in years, but dusted it off again for a quick fix I need for a ...
  A: Gerjan, The simplest way to do this is to use DOS inside QBasic. Here is how I would do it: ...
qbasic strings6/25/2009Alex Barry
  Q: I need help with my code, I have asked my teacher but she's not that nice and doesnt really make me ...
  A: Jorge, I think I can point you in the right direction. Your code for getting the length (your FOR ...
What is text1.text in qbasic6/24/2009Alex Barry
  Q: I'm taking classes for a 9th grade student from a different school. She's got the following code for ...
  A: Smitha, text1.text is definately a variable, but just how it is written, it looks like it is more ...
QB45 Application Update6/22/2009Alex Barry
  Q: Alex, I have an old QB45 application that I wrote in the early 90s. It uses vga screen mode 12 and ...
  A: James, I don't think visual basic will do what you want, however, there are a few options you could ...
RAm program6/14/2009Alex Barry
  Q: I asked a question earlier, not sure if this would help. Thxs if u can help. Im rlly clueless about ...
  A: Sorry it took me a while to get back to this - I've had my plate full for a little while. It's ...
RAM program6/12/2009Alex Barry
  Q: I have no clue on how to do this RAM program. Write a program that lets the LED turn on one a time ...
  A: Jon, I haven't tinkered with this sort of thing (LEDs...probably through the parallel port?), but I ...
qbasic lotto numbers6/8/2009Alex Barry
  Q: hey i was wondering if you could help me with my assignments. In one of them I have to print 6 ...
  A: Jorge, I'm glad to hear you want to be a programmer. I'll say as much that QBasic doesn't have a ...
Q-Basic for Vista 645/30/2009Alex Barry
  Q: is there a download available?
  A: Donn, The short answer is no, there is no Qbasic version that is specifically built for windows ...
"printscreen" from Quick Basic5/29/2009Alex Barry
  Q: I have a laptop with XP. At one time -- I think on an old Win98 system computer -- I used to put ...
  A: again, As far as I knew, the print screen function was working with qbasic in windows xp. I just ...
freebasic5/22/2009Alex Barry
  Q: I am fairly new to FREEBASIC and have not written many programmes. I had version 4.6 and updated to ...
  A: Hey, Bill, Okay, that makes quite a bit more sense (with the version being fbide). So, if the ...
need a perfect data to save!!5/17/2009Alex Barry
  Q: for some reason i need to store a perfect number in a file. by perfect number i mean like ...
  A: Saif, Sorry for the delay. 1. As far as storing a large number, if there is no decimal, use a long ...
freebasic5/15/2009Alex Barry
  Q: I am fairly new to FREEBASIC and have not written many programmes. I had version 4.6 and updated to ...
  A: Bill, I'm not sure what versions you are using. Right now, the compiler version is 0.20beta ...so ...
Creating a Password file in Q Basic5/4/2009Alex Barry
  Q: I've been trying to create an Email program that allows a user to sign up, and also view their ...
  A: Sovann, To do this sort of program, you'll need to do a lot of work on your code. First, I'm going ...
Qbasic line splitting, filtering program5/3/2009Alex Barry
  Q: Can QBasic be used to read in (or filter) a text (.txt) file that has more that 256 comma delimited ...
  A: Don, I think you would want something like this: DIM i AS INTEGER DIM l AS INTEGER DIM d AS ...
Variable in Open4/27/2009Alex Barry
  Q: I am trying to make a program which makes you input your name then uses open statement to make a ...
  A: again, Chad, I think you may benefit from some code I just posted to answer another person'sTo do ...
Variable in Open4/24/2009Alex Barry
  Q: I am trying to make a program which makes you input your name then uses open statement to make a ...
  A: Chad, This is a fairly common issue, but I can definately help you out. In QBasic, anything ...
Program4/13/2009Alex Barry
  Q: Yo what's up. I have a program to do. We get 2 numbers to input. Lets say the numbers are 4 and 5. ...
  A: Rijad, To be honest, I've never done a program to do this, but I'll see what I can do to help you ...
QuickBasic 4.54/4/2009Alex Barry
  Q: I've made quite a lot of programs in QB,they still run as EXE prog.in XP & Vista but since USB ...
  A: So, if your question is how to make that code work with a usb printer: 6000 DIM toprint AS STRING ...
leap year program for qbasic3/31/2009Alex Barry
  Q: I need to know how to write a leap year program on quickbasic but i cant figure it out will someone ...
  A: Daniel, To figure that out, check out this link: http://support.microsoft.com/kb/214019 To move ...
IP Addresses3/26/2009Alex Barry
  Q: but could you please tell me how to find other person's IP address when we are chatting with that ...
  A: Raman, You'll have to tell me how you are chatting with dos commands. Are you running a chat ...

Page:   1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10  |  Next      All


Questions by
Active Experts:
Alex Barry  

Email this page
     
User Agreement | Privacy Policy | Kids' Privacy Policy | Help
Copyright  © 2006 About, Inc. AllExperts, AllExperts.com, and About.com are registered trademarks of About, Inc. All rights reserved.