I think that example is faulty, so i might as well give you working one: Repeat Color 255,0,255 Color 128,255,0 r=GetRGB(RED) g=GetRGB(GREEN) b=GetRGB(BLUE) Text 0,0,r+" "+g+" "+b Drawscreen Forever RED GREEN and BLUE are constants and their values are 1, 2 and 3. So if you want you can replace the...
Well I am trying to get it so that if there is no Search, it lists everything in the file, otherwise, I want it to find a certain string in the file. I can't seem to get it right...
^^^ After a few seconds of not typing anything, open to read fails. Everything works, just crashes after a few seconds. Not the complete code!! (Non essential code ommited) ViewBook1: a=OpenToRead("People.txt") Cls Print "" Search$=Input("Find:") If Search = "" Then If Not EOF(a) Then iLine$ = ReadL...
:!: New update! :!: -Finnaly figured out how to get the program to read many lines without having a bajillion lines of code! -Got some settings! -Color! -Password changer - A few more minor things Note: I will be working on this alot more, due to the fact Xbox Live is pretty screwed right now, and I...
Well, I could make it so its in a dir right near the Program, but how could I make it so people can't open it, and if they happen to find out how, it would be encrypted?
Well, what I was going to do is make a string and then have a random code generator generate a 9 digit code and then save it in the .exe, so when that is saved, I can make a new temporary file with that 9 digit code and then use it to decrypt and encrypt the data file and then delete the temporary f...
How do I save a string to an .EXE without making a new file, because I wish to keep the string from being read elsewhere. Example Secret$=Input("Password: ") Save Secret as Password$ Not exactly, it's just a small example. I will be using it to save a string of integers for an ecryption process. Any...
I am moving to a new programming lanugage, called Autoit. It includes a nice GUI and You can download Scite, a great script editor, for free, with basic like syntax, things are different, but you can do more with it! So I won't be doing much with this anymore. Sorry guys! :o If you wish to try AutoI...
Is there an easy way to tell if text called by Print was clicked? So if I printed "Yes" and "No" the program could tell which one was clicked, or do I have to set up a virtual click box? Text 0,40, "Yes "+y Text 0,80, "No "+n mx=MouseX() my=MouseY() width1 = TextWidth("Yes") height1 = TextHeight("Ye...
Ok, it seems simple enough, but I guess not. It's hard to use, and I think it would be nice if Zero could make it easier. For example instead of using a loop to type something in, why not just have it wait untill the enter key is hit? Is there an easier way to use the current command? Original: Repe...