Main
   Home
   About
   DiscussionBoard
Files
   About
   Submit
   Search
Downloads
   Action
   QB64
Links
   Link to us
QB45.org
327 files in total in this section.

  Text To DNA.zip by Chuck Mire (Rate this file/View comments)
Continuing with the same approach as "Text to Numbers & Alpha" (Base-62),"Text to Roman Numerals" (Base-7), and "Text to Hex" (Base-16) - "Text to DNA" gives one more alternative to convert Keyboard Text (Base-98) into DNA ("GCAT", Base-4). One interesting observation is that the "numeric" output of any of these four programs can also be used as the "text" input - either in the same program or in any other of these four programs. This is because the "numeric" output can also be considered as "text" input - to be layered - one on top of the other as often as is desired.
Source included - QB64 - 380.74 KB - 636 downloads
Rating: 0/10 (0 votes)

  Text to Encrypted Base-10.zip by Chuck Mire (Rate this file/View comments)
This version adds the OPTION to encrypt (or not encrypt) the Base-10 number into another Base-10 number of the same length. The encryption & decryption is done using an algorithm called AWC (Add Without Carrying) & SWB (Subtract Without Borrowing). Everything is explained in detail in the attached AWC & SWB Concept.pdf Three encrypted examples are in the attached AWC & SWB Concept.txt The attached zip file also contains the two Windows executables, Text to Encrypted Base-10.exe & AWC & SWB Concept.exe
Source included - QB64 - 965.6 KB - 653 downloads
Rating: 0/10 (0 votes)

  Text To HEX.zip by Chuck Mire (Rate this file/View comments)
Continuing with the same approach as "Text to Numbers & Alpha" and "Text to Roman Numerals", "Text to Hex" gives one more alternative to convert Keyboard Text (Base-98) into Hex (Base-16). One interesting observation is that the "numeric" output of any of these three programs can also be used as the "text" input - either in the same program or in any other of these three programs. This is because the "numeric" output can also be considered as "text" input - to be layered - one on top of the other as often as is desired.
Source included - QB64 - 380.35 KB - 665 downloads
Rating: 0/10 (0 votes)

  Text to Multiple Number Bases II.zip by Chuck Mire (Rate this file/View comments)
This version III allows the user to choose either an individual Number Base OR a range of number bases - for example choose only the Number Base 87 or choose a range of Number Bases from say, 68 through 96. The pseudo-random algorithm was also changed so that the Number Base(s) chosen AND the random seed BOTH have to be known to convert back into text. Therefore, this version is not compatible with the first two versions of this program even though the interface is similar. This is the version to use for maximum security. The zip file contains the Windows executable and the source code.
Source included - QB64 - 385 KB - 684 downloads
Rating: 0/10 (0 votes)

  Text to Multiple Number Bases IV - Code Correction.zip by Chuck Mire (Rate this file/View comments)
I have just noticed that when text is typed into ANY versions of my "Text to Multiple Number Bases", there is NOT an ACCURATE representation of the <Tab> key. A Tab is converted by LINE INPUT (also by INPUT) to eight (8) spaces, so the conversion to another Number Base handles it the same as if eight digits were entered instead of one. I have ONLY corrected "Text to Multiple Number Bases IV" since I consider the earlier versions obsolete. The zip file contains the corrected Windows executable, the corrected source code, and a text file indicating where the correction was made.
Source included - QB64 - 388.95 KB - 801 downloads
Rating: 0/10 (0 votes)

  Text to Multiple Number Bases IV.zip by Chuck Mire (Rate this file/View comments)
Though the interface of this version is similar to the three earlier versions of this utility, the results of each version are not compatible with each other. This version now allows a large block of text to be pasted from the Windows Clipboard as another option instead of only having the ability to type in a continuous line of text with a limit set at 240 characters. By using this additional option, formatted text with indents, paragraphs, tabs and carriage returns can be accurately represented and converted into a number. The zip file contains the Windows executable, the source code, example text files and full documentation in a PDF with ten screen shots.
Source included - QB64 - 1.02 MB - 676 downloads
Rating: 0/10 (0 votes)

  Text to Pixels & Pixels to Text II.zip by Chuck Mire (Rate this file/View comments)
This Windows executable simulates a fax machine that scans text, pixel by pixel. Changes in Version II: With “Text to Pixels”, a user can now enter up to 24 lines of text instead of the previous 23 lines. Also, to begin scanning, a user now hits [ctrl][d] instead of [esc]. Text is saved to a file using 8-bit ASCII characters instead of a string of “1s” and “0s” in the previous version. This reduces the file size to 1/8 of the size in the previous version and allows for other file extensions beside “.txt”. The file extensions can now be “.dat”, “.bin”, or “.txt”. If the file is later renamed, the initial chosen extension MUST remain the same. A user can now copy text from the Clipboard and paste it into this version with the menu addition of “[G]et Clipboard”. This allows up to 29 lines of text to be entered and saved into an 8-bit ASCII character file. Included is a text file aide for entering text using Notepad, Template.txt, to prevent text from going all the way up to column 80. The text must stop at column 79 by using the [enter] key. The zip file also contains a PDF with instructional screen shots.
Source included - QB64 - 884.44 KB - 550 downloads
Rating: 0/10 (0 votes)

  Text to Pixels & Pixels to Text. by Chuck Mire (Rate this file/View comments)
Text to Pixels & Pixels to Text.exe is a Windows executable. Text is typed into Screen 0: 80 columns wide by 23 lines long. After the text is entered, it is moved into Graphics Screen 12 and scanned, pixel by pixel. This pixel data can then be saved in a Base-2 file consisting of “1”s and “0”s. The pixel data, stored as a Base-2 file, can later be read by loading it back into Graphics Screen 12 as a graphic representation of the text. Also included is a supplementary Windows executable, ASCII to Base-2 File & Base-2 File to ASCII.exe. The zip file contains the source code, the Windows executables and a PDF with screenshots that explains both programs.
Source included - QB64 - 1.19 MB - 1093 downloads
Rating: 0/10 (0 votes)

  Text to Two More Number Bases.zip by Chuck Mire (Rate this file/View comments)
By slightly modifying my program, "Text To Base-10", I have created two more programs, "Text To Numbers & Alpha" and "Text to Roman Numerals". In both programs, I set up the text as a Base-96 Number (all of the normal typing keys in a text message) and did the following for the the two programs: "Text to Numbers & Alpha" - I set up a Base-62 Number Base (Numbers "0" through "9", plus the capital letters "A" through "Z", plus the lower case letters "a" through "z"). "Text to Roman Numerals" - I set up a Base-7 Number Base using all of the Roman Numerals ("I, V, X, L, C, D, and M"). The size of the conversion when using "Text To Numbers & Alpha" is only slightly larger than the size of the original text since the conversion is from a Base-96 Number to a Base-62 Number. The size of the conversion when using "Text To Roman Numerals" is much larger since the conversion is from a Base-96 Number to a much smaller Base-7 Number. The interface for both programs looks the same as my programs, "Text To Base-10", and my program "Text to Multiple Number Bases IV". No encryption is used in either program - they are only conversions from one number base to another number base. The zip file contains both Windows exexutables and both source codes.
Source included - QB64 - 760.88 KB - 672 downloads
Rating: 0/10 (0 votes)

  tictactoe.rar by Erik Jon Oredson (Rate this file/View comments)
Several tictactoe programs in QB64
Source included - QB64 - 3.17 KB - 597 downloads
Rating: 0/10 (0 votes)

  tictactoe.zip by Erik Jon Oredson (Rate this file/View comments)
Several tictactoe programs in QB64
Source included - QB64 - 3.47 KB - 629 downloads
Rating: 0/10 (0 votes)

  TOUCH.ZIP by Erik Jon Oredson (Rate this file/View comments)
The touch utility
Source included - QB64 - 19.84 KB - 631 downloads
Rating: 10/10 (1 votes)

  Triangle Calculator.zip by Chuck Mire (Rate this file/View comments)
Triangle Calculator, Version One, is a Windows executable that has many errors (sometimes calculating a set of variables that will NOT form a triangle) and other shortcomings that have been corrected in Version Two. Please download Version Two instead of this Version One.
Source included - QB64 - 390.69 KB - 1001 downloads
Rating: 0/10 (0 votes)

  Triangle Calculator.zip by Chuck Mire (Rate this file/View comments)
Triangle Calculator, Version Two, is a Windows executable that, given any three variables, will solve any triangle. If there is more than one solution, there is a choice between displaying an Acute or Obtuse adjacent angle triangle. One major change from Version One is that any set of variables that will not form a triangle is rejected. This version corrects all of these errors and other shortcomings that were in Version One. Also, the source code will run in ANY version of Microsoft Basic - all the way back to QBasic. The zip file contains the source code and the Windows executable.
Source included - QB64 - 394.7 KB - 1047 downloads
Rating: 0/10 (0 votes)

  Turing Machine Simulator.zip by Chuck Mire (Rate this file/View comments)
A Windows executable Turing Machine Simulator to Add, Subtract or Multiply Two Numbers. The Turing Machine Simulator Rules.pdf file shows how the Turing Machine reads a symbol from the Input/Output Tape and consults its Rule List. It then performs up to two actions: (1) It modifies its internal State (only if necessary) with a New Rule. (2) It writes a symbol on the tape OR Moves its R/W head left or right. Choose to Step and/or Run with a toggle between either choice. The zip file contains the source code, the Windows executable, and the Turing Machine Simulator Rules.pdf
Source included - QB64 - 496.01 KB - 1253 downloads
Rating: 0/10 (0 votes)

  venture_newproto.zip by Mikael Bohlin (Cyperium) (Rate this file/View comments)
Platform game where you play as Vent trying to free the world of monsters. 4 Worlds with 10 levels each in this prototype (will be 8 worlds when finished).
Source included - QB64 - 3.63 MB - 3632 downloads
Rating: 0/10 (0 votes)

  water physics.zip by DarthWho (Rate this file/View comments)
Water simulation engine try it it runs well (windows systems) exe only
No source - QB64 - 2.83 MB - 3914 downloads
Rating: 9.33333/10 (3 votes)

  WHAT64.ZIP by eoredson (Rate this file/View comments)
Recursive Descent Parser
Source included - QB64 - 17.42 KB - 886 downloads
Rating: 10/10 (1 votes)

  WHERE64.ZIP by eoredson (Rate this file/View comments)
QB64 dir/file display util.
Source included - QB64 - 16.54 KB - 730 downloads
Rating: 0/10 (0 votes)

  XOR File Encryption.zip by Chuck Mire (Rate this file/View comments)
XOR File Encryption.exe is a Windows executable that encrypts a source file by logically XORing it with a one-time pseudo-random key file. The zip file contains the Windows executable, the source code, and a PDF that explains everything in detail with multiple screen shots.
Source included - QB64 - 1.07 MB - 787 downloads
Rating: 0/10 (0 votes)

  XOR Notes.zip by Chuck Mire (Rate this file/View comments)
This is further discussion on using XOR where an XOR encrypted file is sent to a receiver without exchanging keys. There is potentially a problem with this method resulting from a "Man-In-The-Middle", which is explained in full. A safer way to do this involves using my program CRC32.exe which is available here: http://www.qb45.org/files.php?action=showfile&id=1662 The attached zip file has an example I created for your review as well as a screen shot of the CRC32.exe entry that I document in an included XOR Notes.txt file.
Source included - QB64 - 28.21 KB - 760 downloads
Rating: 0/10 (0 votes)

  XR641D.zip by RENIER Alain (Rate this file/View comments)
Cross reference for QB64
Source included - QB64 - 27.18 KB - 2927 downloads
Rating: 0/10 (0 votes)

  ZAP11.ZIP by eoredson (Rate this file/View comments)
The volume edit utility.
Source included - QB64 - 2.7 KB - 68 downloads
Rating: 0/10 (0 votes)

  ZAP12.ZIP by eoredson (Rate this file/View comments)
The volume edit utility.
Source included - QB64 - 2.95 KB - 99 downloads
Rating: 0/10 (0 votes)

  ZIP In A PICture.zip by Chuck Mire (Rate this file/View comments)
ZIP In A PICture is a Windows executable that allows a .7z or .zip compressed file to be hidden within a .gif, .jpg, .jpeg, or .png picture file. In order to extract the results, the Windows freeware program, 7-Zip File Manager, is required. The results allow the casual user only the ability to view the picture file without knowing about it's hidden content. However, any experienced user with a minimal skill set would be able to view and extract the hidden contents. The latest versions of Windows 7-Zip is here: http://www.7-zip.org/ The zip file contains the Windows executable, the source code, a PDF with screen shots and documentation, plus a sample .jpeg file.
Source included - QB64 - 1.62 MB - 789 downloads
Rating: 0/10 (0 votes)

  ZIP In Other TYPES.zip by Chuck Mire (Rate this file/View comments)
The zip file, ZIP In Other TYPES.zip, contains two (2) Windows executables with source code: (1) ZIP In A MIDI and (2) ZIP In A PDF. Each program works EXACTLY like my previous post, ZIP In A PICture. The difference is the ability to hide a compressed file in any .mid or .pdf file, respectively. Once again each of these programs is designed to be used in conjunction with the Windows freeware program, 7-Zip. Since the interface has not changed, refer to my PDF that was included in my previous post, ZIP In A PICture.pdf, for documentation.
Source included - QB64 - 738.83 KB - 706 downloads
Rating: 0/10 (0 votes)

  ZSORT.ZIP by Erik Jon Oredson (Rate this file/View comments)
Sort utility for QB64
Source included - QB64 - 3.08 KB - 608 downloads
Rating: 0/10 (0 votes)

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

Members
Login
Register
QB45 Members
Member List