| |
Description | Compatibility | Level/ Author | Views/ Date Submitted | User Rating |
|
|
 |
Array of Long (Stack/Queue) | VB 6.0 | Advanced / Nicholas Forystek | 873 since 11/18/2019 2:34:36 AM | Unrated
|
|
Low level implementation of an array started of scratch using global memory allocation (not an example of Visual Basic’s built in way with brackets). This implementation functions as a stack and/or queue, add or delete form the first or last element, it ...(description truncated) |
|
|
|
 |
Audio Wave View | VB 6.0 | Advanced / Nicholas Forystek | 1899 since 10/25/2019 12:55:38 PM | Unrated
|
|
I wanted something to get a view and pick apart wave files, with program ability, my thoughts are 3D sound honing and isolation out of prior recordings, using arthroscopic time and distance filters on locating pin point in the room, reconstructing the wav ...(description truncated) (ScreenShot) |
|
|
|
 |
BaseOf | VB 6.0 | Intermediate / Nicholas Forystek | 2164 since 7/4/2019 9:18:21 PM | Unrated
|
|
This is a function to get the base of any number from the exponential and power. Example BaseOf((9^5),5)=9. This escaped my memory so I thought maybe someone else too needed it posted! I was not taught exponential in this similar manor where (1/Power) mak ...(description truncated) |
|
Please support the site by visiting our
sponsor:
|
|
|
 |
Blue Screen of Death Screensaver | VB 6.0 | Intermediate / Nicholas Forystek | 1672 since 10/6/2019 4:38:13 AM | Unrated
|
|
I was going to use Dave Nedved’s post of “Blue Screen of Death Screensaver” as my screensaver but I disappointed to find a parody about life. Also I like single screen images (not so worried about today’s monitors being burned and rather have a so ...(description truncated) (ScreenShot) |
|
|
|
 |
Byte Stream Object | VB 6.0 | Intermediate / Nicholas Forystek | 4598 since 1/4/2018 7:38:23 PM | Unrated
|
|
This code starts from a different pscode.com post of a “StringBuilder” which in use over time resulted in four or five variations of it (monstrous with string functions like Instr()/mid()) to reach other demands of mine. Particular this one is lite, n ...(description truncated) |
|
|
|
 |
Clone Object | VB 6.0 | Intermediate / Nicholas Forystek | 997 since 9/14/2019 8:46:26 AM | Unrated
|
|
Clone an object in memory. |
|
|
|
 |
CoCreateGuid Example | VB 4.0 (32-bit), VB 5.0, VB 6.0 | Advanced / Nicholas Forystek | 11083 since 10/1/2019 11:37:56 PM | Unrated
|
|
Globally Unique Identifier generate function as well as a IsGuid() function to test if the GUID is a string representation seemingly of one. I found some other examples of using CoCreateGuid, however, in repeating the call I was not satisfied with the uni ...(description truncated) |
|
|
|
 |
Collision Function | VB 6.0 | Advanced / Nicholas Forystek | 3613 since 6/2/2018 5:51:55 PM | Unrated
|
|
This is a single function from a collision library I put together that I’ve been recreating from code absolutely missing for years. Among other functions the focus of this code is about the first function below (there is a plethora of other math functio ...(description truncated) |
|
|
|
 |
Component Registry Cleaner | VB 6.0 | Advanced / Nicholas Forystek | 5960 since 10/18/2019 4:43:09 AM |
By 1 Users
|
|
Cleans the registry in a Class-ID manor, meaning when a term, and more often then not a term to search by would be ProgID, is found then also the Class-ID instance it maybe associated with is searched for then put into a list of final entries shown that w ...(description truncated) (ScreenShot) |
|
|
|
 |
Division By Zero Solved! | VB 6.0 | Advanced / Nicholas Forystek | 1752 since 10/1/2019 11:17:57 PM |
By 1 Users
|
|
Yes, the age old division by zero error is finally solved once and for all! I know it’s impossible to believe, but this project is the solution! It contains a function that is used for replacing the divide operator, called Divide, accepting two paramete ...(description truncated) (ScreenShot) |
|
|
|
 |
DoTasks (a DoEvents extension) | VB 6.0 | Advanced / Nicholas Forystek | 16891 since 3/19/2018 6:46:43 PM | Unrated
|
|
This is a function named DoTasks that is a DoEvents alternative. It is not a replacement, it is intended to act similar and manage Stack Overflows while embedding into component and even script run-time and still keep the messaging handled on timely order ...(description truncated) |
|
|
|
 |
Event Driver | VB 6.0 | Advanced / Nicholas Forystek | 2466 since 10/20/2018 9:39:29 AM |
By 1 Users
|
|
This is a small module test application to execute call back events of a timer to any AddressOf method. I desired a way to allow service events be defined by the user to the interface with out WithEvents, and this is what I came to in conclusion, it has a ...(description truncated) |
|
|
|
 |
Global Memory | VB 6.0 | Advanced / Nicholas Forystek | 8482 since 10/2/2019 1:03:02 AM |
By 1 Users
|
|
I could not find documentation or anything on the net to which what I had a hunch was true with Global memory allocation (or even Local memory, because Global flags occur across all memory), so I just wrote this API example test to verify it was what I th ...(description truncated) |
|
|
|
 |
Incremental Turn Key | VB 6.0 | Beginner / Nicholas Forystek | 2642 since 2/12/2019 5:10:13 AM | Unrated
|
|
Set of functions that have a ordinal odd even and numerical incremental and/or decremented counter described in it that is able changed with the functions and returned. |
|
|
|
 |
Invert Number Formula - "One liners" | VB 3.0, VB 4.0 (16-bit), VB 4.0 (32-bit), VB 5.0, VB 6.0 | Beginner / Nicholas Forystek | 7451 since 10/12/2018 1:22:37 AM | Unrated
|
|
This function is to invert a number using a mathematical formula, by default in a whole of 100 for percentages with a unit defined size of 1. Example if you call InvertNum(25) the result is 75, and InvertNum(50) is 50. All function I understand require at ...(description truncated) |
|
|
|
 |
Invert Signed Numerical | VB 6.0 | Intermediate / Nicholas Forystek | 2251 since 8/11/2018 4:37:45 PM | Unrated
|
|
This is a invert function that, I am unsure is 100% accurate, but appears for the lower memory definitions of integer as such that it is inverting, however the whole basis container is considerably the incremental signed value of the unsigned input. |
|
|
|
 |
Invisology Transiting Handshake | VB 6.0 | Intermediate / Nicholas Forystek | 4331 since 11/24/2017 6:18:12 PM | Unrated
|
|
This is a transiting handshake that can be used internally between two communicating components that must in time or overall length of occurrence stay steady with respects to the proposed type of handshake that can be appropriated to either invisible comp ...(description truncated) |
|
|
|
 |
Multitasking | VB 6.0 | Advanced / Nicholas Forystek | 6729 since 9/3/2017 12:31:01 PM | Unrated
|
|
My multitasking project. I don’t know what I would use it for if anything, I was just entertaining myself in the curiosity of how multitasking happens. The idea is to create messaging just as multitasking does, with out bottle necking, a possible idea i ...(description truncated) (ScreenShot) |
|
|
|
 |
My Computer | VB 6.0 | Beginner / Nicholas Forystek | 2928 since 10/15/2018 10:54:53 PM | Unrated
|
|
This is posted in the Joke/Humor because of the severity of how much of a computer it really is and isn’t. I’m modeling a diode binary-decimal circuit in a engineer’s notebook, and really trying to think about it step for step on how something like ...(description truncated) (ScreenShot) |
|
|
|
 |
NCode Cryptogram | VB 5.0, VB 6.0 | Intermediate / Nicholas Forystek | 7263 since 10/30/2015 8:12:54 AM |
By 1 Users
|
|
NCode is a encryption/decryption and/or encoding/decoding cipher that is based on legends like a predefined map which encodes any data and key each of at least one character or more to the length size of the data provided. You can reverse the parameters t ...(description truncated) |
|
|
|
 |
Negative Color Formula - "One liners" | VB 3.0, VB 4.0 (16-bit), VB 4.0 (32-bit), VB 5.0, VB 6.0 | Beginner / Nicholas Forystek | 7935 since 9/16/2017 3:59:49 PM | Unrated
|
|
Simple formula to get the negative of a color. You can just negative digit (add minus to the number), but this shows it in native steps to a unit, so say your using a temporary spectrum same color count but on a different starting scale, in relation to an ...(description truncated) (ScreenShot) |
|
|
|
 |
Nor Operator "One liners" | VB 6.0 | Intermediate / Nicholas Forystek | 2483 since 8/7/2018 2:54:51 AM | Unrated
|
|
Simply as it is said, the NOR operator! Another part of my "one liner" code collection. This is one line of code made into a easy function to have the interpolation of the NOR operator by arithmetic/object/variable/expression means, thus by any means! Sho ...(description truncated) |
|
|
|
 |
Optical Illusions | VB 6.0 | Beginner / Nicholas Forystek | 2022 since 10/18/2019 3:43:46 AM | Unrated
|
|
Optical illusion ticks with triangles! (ScreenShot) |
|
|
|
 |
Recursive Make Folder | VB 6.0 | Intermediate / Nicholas Forystek | 3535 since 6/3/2018 6:52:00 PM |
By 1 Users
|
|
This function is a recursion code example of making a folder with no added global variables or trailing parameters, simply just the initial needed parameter of the path to the folder to create and it will make it and any other path it may need to make not ...(description truncated) |
|
|
|
 |
Subclass any object that has a valid hWnd property. | VB 6.0 | Advanced / Nicholas Forystek | 9943 since 10/18/2017 9:12:35 PM |
By 2 Users 2 Excellent Ratings
|
|
This project subclasses the windows messages of a form and mimmics them and attempts to make it a easy way of approaching such, and it allows such to be done with any object that has a proper hWnd property value that qualifies as a Window handle. This pit ...(description truncated) (ScreenShot) |
|