This page describes how to install Bullet Creator. Currently it only describes the procedure for Microsoft Windows95, but if you are using another operating system this desciptions should get you on your way in your operating system.
Although Bullet Creator is a 16-bit MS-DOS application it works well in Microsoft Windows95 and is easy to use on the Desktop. Follow the next list of pointers to set up Bullet Creator on the Microsoft Windows95 Desktop.
First you'll have to get the Files out of the archive in which the Bullet Creator application is stored and place them in a Folder on your harddisk.
When you run Bullet Creator you'll see something like this screen:
When both counters have reached 50, the sample image is fully calculated and the program terminates. You can then close the Finished Bc203 Window.
You should now have something like this Folder:
After installing the files you'll probably want to create some shortcuts to have easy access to them on your Desktop.
You should now have something like this on your Desktop:
This is all you need to do to use Bullet Creator in Microsoft Windows95. Double-click the Inputfile Shortcut to edit the input in Notepad, double-click the 203B Shortcut to run the program and process the input, double-click the Folder to get to the Files and Open, Copy, Rename, Move or Delete them. If you have got the Powertoys Contents Submenu installed you can right-click the Folder to pop-up a menu in which you can choose Contents and then pick the Image to Open in your favorite Image Viewer.
Bullet Creator doesn't use command-line parameters for input, but it can be convenient to use command-line parameters to have Bullet Creator proces input from any file. This can be done by implementing a batch-file based on the following batch-file and use it alongside Bullet Creator:
@echo off
Even (especially) in Windows95 this makes sense because internally Windows95 still uses commandline parameters. In this way not only bc.ini can be used as input but any valid file can be used as input for this batch-file. This is especially convenient if you set up associations with this batchfile in your operating system for a file extention. For example: if you use the extention .bci for Bullet Creator input-files and associate this extention with the aforementioned batch-file, selecting it with the right mouse-button and choose the associated command (Windows95) will process the file directly.
echo Starting Bullet Creator...
if "%1"=="" goto default
ren bc.ini bc.bak
copy %1 bc.ini
BC203
del bc.ini
ren bc.bak bc.ini
goto end
:default
BC203
goto end
:end