I had an email to send him concerning his tutorials.... it appears as though he has blocked all mail though.... anyone know how to get ahold of him or if he is...
Please unsubscribe me from this group. -ryanlewis13@... ===== ryanlewis13@... __________________________________ Do you Yahoo!? SBC Yahoo! DSL -...
Ryan Lewis
ryanlewis13@...
Jul 5, 2003 7:09 pm
2179
same... how do you do this? unsubscribe grimfencer@... ... _________________________________________________________________ The new MSN 8: advanced...
dan k.
grimfencer@...
Jul 7, 2003 2:40 am
2180
On Mon, 07 Jul 2003 02:40:10 +0000 "dan k." <grimfencer@...> ... sending a message to qbasic-unsubscribe@yahoogroups.com should do the trick. -- Robert...
Hi all ! Does anyone of u know how to make a QuickBasic program working on XP ? It starts working on a small window and as soon as graphics are displayed (or...
Hi everyone, I'm new here so if you don't mind could anyone of you send me the latest version of qbasic. I allready know the programming and stuff I just need...
On Sat, 12 Jul 2003 10:02:30 -0000 "jacquescendron" <jcendron@...> ... I had the same problem, not sure how I fixed it though. But try to right click on...
Versions of Qbasic... http://www.qbcafe.net/english/ ________________________________________________________________ The best thing to hit the internet in...
An evolving program that I use for model railroading long ago got too big to compile. Now it is too big to edit in the QB environment- locks up! It has...
I've uploaded the program to this group. Click on the files link. the program should be named !QBV1.EXE and !QBV1.HLP. It's version 1.1 I couldn't send 4.5,...
As you know, the CHAIN statement simply starts a new program. So, to get back at the place you left it you can use a condition at the beginning with a GOTO...
... Encryption? I've had some bad experiences with that. I finally came up with a simple function to encrypt simple things. It can be used to encrypt and...
Hmm that's interesting Wayne... I tried a similiar algorithm, though I let the operator put a seed in. But I don't recall an automatic conversion. It kept...
I've been working with some music lately, and I've programmed in a song or two. But their to simple. Is there any way to play more than one note at a time?...
... Not with the PC speaker. You would have to use some libraries to take advantage of the sound cards out there. Some exist that support multiple cards,...
i have a text file set upt his way. "name",a,b,c,d,e,f,g i would like to enter the file into a program using TYPE AND END TYPE type infile inname as * string...
Okay, here's what I need to do (and can't figure out.) I need to open file pass.word, plain-text file, and then use it in an INPUT. The user is going to input...
Jordan C
mdiegoblake@...
Jul 29, 2003 12:27 am
2196
... Untested ' user has input the password and it is stored in variable password$ ' note that qbasic cannot handle long filenames" filename$ = "passw.ord" OPEN...
Input past end of file on the LINE INPUT #1, a$ line, same error I had. Jordan C. http://not-named.net (Version 2.2) Proverbs 24:3-4:"Through wisdom a house...
Jordan C
mdiegoblake@...
Jul 29, 2003 3:00 pm
2198
... Do you have the password in the file?? ... -- Regards, Michael...
I just ran the code snippet. I had put in a value in passw.ord, and if came up with the problem password didn't match. I also added an END statemetn after the...
Hi everyone, Since the current topic is about files, I thought I'd ask my question(s). Although I've read several books on basic (GWBasic to QBasic), I've ...
Hello bergermeister... I am going to be checking the progran and I hope to send you some information. But I can say the comma delmited file you had asked...
... There was some preparation required... You can just run this code snippet. CLS ' create a file with a word in it OPEN "password.txt" FOR OUTPUT AS #255 ...
On Wed, 30 Jul 2003 20:31:30 -0000, bergermeister1st wrote: I'm just a hack, but I'll give you some examples ... Here is a simple example for saving strings...
On Thu, 31 Jul 2003 14:48:21 +1000 Michael Marquart ... <snip> wouldn't this be easier: ' save comma delimited OPEN "save.csv" FOR OUTPUT AS #1 WRITE #1, a$,...