 |
Stringparser
class |
- Parse huge strings (MB in size!)
- Traverse word by word!
- Find text occurances
- Respace and rotate string
- 16 members in class
|
 |
About
the stringparser class |
This class is for parsing
large or small documents of text. It is already in use in two commercial
applications and have prooven it's strength through time.
Click here to download |
 |
Language
class |
- All languages in
one class
- No need to hand
type it all
- Traverse through
names fast!
|
 |
About
the Language
class |
The language class
is exellent for registration forms that sends the registration through
http or email. Simply traverse through the languages, adding them
to a listbox so the users can select where they are from. Tested by
time.
Click here to download |
 |
Registry
class |
- Traverse through
keys
- Get easy subkey
and property count
- Tried and tested
by time
|
 |
About
the Registry class |
The Registry class
allows you to gain easy access to the windows registry. You can create
new keys or subkeys, traverse through subkeys, get their values and
type. By using this class it's a mere case of using for/next to get
all the information you need!
The class is in use by two commercial applications.
Click here to download |
 |
NetBios
class |
- Traverse through
adapters
- Get adapter properties
fast!
- Examine default
gateways easy
|
 |
About
the NetBios class |
This class gives you
easy access to your windows networking enviorment. If you have more
than one network adapter installed, chances are that you will not
get the right local-ip with the winsock or inet control. This is because
windows defaults back to WINS adapters. The solution is by using this
class. Simply traverse through each adapter and check the defult gateway
IP and you will find your correct gateway! It is also handy to know
exactly what equipment the client machine has!
Click here to download |
 |
FileIndex
class |
- Index entire folder
structures
- Works fast using
dir[] commands
- Traverse through
indexed files
|
 |
About
the FileIndex class |
Indexing files is somthing
that you usualy dont do, but when the occation presents itself you
want it done fast, and you want to give the user some feedback while
the process is executing. This is just what the FileIndex class does,
it indexes entire folder structures fast as hell, and allows you to
present user information through an event.
Click here to download |
 |
Url
encoding class |
- Encode strings to
url format
- Decode encoded text
back to string
|
 |
About
the Url encoding class |
Everyone is working
with the internet these days, so this class to encode and decode text
to url format should come in handy. This is the class you need if
you want to pass data to an ASP page somewhere through get or post
commands.
Click here to download |
 |
Stack
class |
- Internal non-visual
list
- Accept all variant
datatypes
- Push, Pull and count
implemented
|
 |
About
the Stack class |
This is a class that
you always need in large projects, but somehow you always end up re-writing
it. This is a great class if all you want to do is take care of variables
or values while a process is being performed. Or, if you want to pass
data between processes.
This class makes it easy to have a common variable base between forms
that creates somthing in your project. Let the creation form add values
to the stack, and your main app can pick them up when the user clicks
OK and closes the "creating" form.
Click here to download |
 |
Hexlib
class |
- Byte format $00
- Word format $0000
- Long format $00000000
|
 |
About
the Hexlib class |
This class will convert
Byte, Integer and Long values into hexadecimal strings with the right
amount of 0's. So, instead of just returning "FC", the Hex32 function
would return "000000FC" instead. I used this class is a file-editor
i made a long time ago.
Click here to download |
 |
Raster
class |
- Paint OS controls
- Paint boxes and
buttons
- All routines using
Windows GDI
|
 |
About
the Raster class |
Want to draw the symbols
found inside Windows? Like scroll arrows, focus rectangles, checkboxes
etc.? (They are called Glpyphs by the way) Well, this class let's
you do that and more! A must have if you're working on your own usercontrols.
Click here to download |
 |
Lowlevel
class |
- Adds POKE and PEEK
- Adds bit commands
- Adds variable memory
access
|
 |
About
the Lowlevel class |
This is a class that
adds the functionality to manipulate variables on bit level. It also
adds commands like POKE and PEEK so you can access heap memory directly.
Click here to download |