Results for "Volume: 2002ASP"
This demo shows in the simplest possible code, the basics of image editing. It is intended for the novice but others may find it useful in optimising or simplifying their code. Whilst it is in no way a full blown editor, it may provide a basis from which to learn. If you want an example of a more advanced image editor I suggest you look at "Bobo Image Workshop" which is found at: http://www.planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=21482&lngWId=1
A pop-up stopper for Internet Explorer. Includes IEEvents by Crazyman. Works great on Windows 2000 -- please tell me about any bugs you encounter on other operating systems.
Learn some C++! I know this is a vb part of PSC, but how will a vb coder be introduced to more code, if he never sees it? I hope this will show some coders how to expand ther coding experience. This will teach: 1)How to get a C++ compiler 2)how to comment 3)What does this mean: #include int main() { cout
I designed this software to enable me to scan, file & comment all the rubbish documents that I dare not throw away but may need one day. You can scan the document and it puts it into the App.Path & \tmpImg DIR and then goto Add to DB and add some comments & a title. This is then put into the DB (access 2k) and the image is moved to App.Path & \img. you can now use the viewer to view the images and you get the information about it too. Uses Mainly TIFF images and has full ROTATE, ZOOM & PRINT capabilities. This is my first App and I am quite proud of it. Perfect for beginners to learn howto add scanning & TIFF images to a VB project. Sorry, not all commented yet, but I will get round to it. Let me have comments please... P.S If you have missing OCX's or DLL's, let me know and I can Email them to you. Either that or Install Imaging For Windows!
I have updated the last submission on C++. I hope that this will encourage VB programmers to speread there knowledge, and learn new languages, as well as keep there current ones. This is the last time i will post a C++ tutorial on VB world, so if you think my tutorial helps either tell me in the feedback, or IM me through aim(BlazinIndustryz2) or MSNIM(habitat1422@hotmail.com). If i get good feedback i will try to help out more, so look for my next submissions in C/C++ world. Thank you.
This is an application I designed to simulate the mitotic replication of single cellular organisms. It demonstrates this process with two types of cells, animals (Animalia) and plants (Plantae). When the simulation is initalized, the origional two cells (Adam and Eve) begin replicating, spawning new cells. The red tiles symbolize the animal cells and the green tiles symbolize the plant cells. Each cell is its own individual entity, and the only overhead there is in this simulation, is time itself. The cells are self-contained and constructed using a single class module (clsCell) which is manipulated into whatever type of cell is required. Every minute, the simulation data is appended to a log file which can be found in the "logs/" folder.I added in a sterility feature to show the parabolic bell curve created by a sudden loss in reproductive abilities. Other than that the code is fairly self-explanitory.
These are some functions that I use all the time that Microsoft left out of core VB. Some of them are more useful than others, like IsEven()/IsOdd() and IsLeapYear() and PlaySound() and SaveString() and GetPathDir(). Some of this source is borrowed and modified from other authors' sources, but at least half of it is original. I have rewritten this code to put it into a class module, and then I compiled it to a DLL. I use the DLL all the time in projects. Very handy!
I wrote this code when i was developing a software for an Estate Agent. The code copies the database path in the System Registry and everytime picks it from the registry. If connection fails another dialog box opens where you can specify where the Database is saved. Secondly, you can take out the report of all the data in the table using MS Word. A small routine to accomplish the task. This is basically a three in one program. Save DB Path in the registry, Create Report using MS Word and Specify the database path. Just copy extract the .zip in C:\post directory. Please rate it.
This code is an example of how to make a frame control.
A new Cool Aqua Button + Images, if your not afraid of having ago who knows whats possible...
Some cool animations with some useful techniques like antialiasing, SafeArray, dynamic creating of picture objects using API, partial window redrawing and other. Code is relatively fast but can be much faster using assembler optimizations (maybe later).
There is known person, that has been banned from this site, Mr Luke Rhodes. Mr Rhodes wishes to promote his own clone (rather clown) of planet-source-code and has did everything so far to do that. He even immitated Mr Ippolito's account to confuse the users of a possible cooperation between his fake site and PSC (read more)
I have seen many ways to do this using that evil ocx (not open source); but this is pure vb!!!! I origionaly posted this on VBForums and decided that I should post it on PSC so here it is. ONLY works on 98 and ME. Please vote and leave feedback.
This Code was written by Dave Andrews and modified by Tom Pydeski It is an api form with a listbox which can be used as an inputbox replacement where the user is presented with a list of choices in a listbox form instead of the standard inputbox. modifications include: made list 3d automatically size list based on the number of entries and the width of the longest entry added the keystroke capability added the option of changing the font to that of the calling form or any of its container controls that support .textheight. added double click capability to the list
Re uploading my xp side menu the BEST on psc was in 6th pos before some %*°_£% hakker hacked the system
Linear (any angle) and circular gradients. Parameters: pressure (transparency) and frequency.
Repost due to a %$)£?&!! hacker.... This class allows you to detect changes in system date and time. It raises an event whenever the date and time is changed by means of the control panel applet. You will need the SSUBTMR6.DLL that you can find at www.vbaccelerator.com under Libraries->Subclassing without the crashes.
This editor is only GUI application for Netwide Assembler. You can build binary file, dynamic-link library (DLL) or executable file (EXE). It has good compiler and linker error handlers (error line is highlighted after compiling). You can get help for any instruction or directive by pressing F1 (just like in Visual Basic). Project has some executables not allowed on PSC, so download here (+ help + libs + samples +++): http://flashlight.webpark.cz/eindex.htm
This will allow you to stop the form from being resized below or above a user-defined amount. Because it uses subclassing, it is totally flicker-free.
Simple scripting language using classes. Uses callbyname function to run a classes methods. This allows for very fast parsing, because there is no IF Then or Case statements. Create a class module with the functions that you want in your scripting 'language'. Then you can simply send a string of text into the class' parse function to get the name of the function and the values to be operated on. After you have gotten the name, use CallByName with the vbMethod operator. This is a quick class (OOP) example. To keep it simple, I didn't include properties, only public and private variables.