Advertisement

Results for "Category: Miscellaneous"

7_2009-2012 #227791
LCD-Screen

This is an LCD-Screen for use in mp3-players or digital clocks. This app creates LCD numbers by using the BitBlt function and is verry easy to use. this code is commented in English and Dutch.

7_2009-2012 #227792
Send strings between app's

This program can send strings to another program by using the SendMessage api call, Which Winamp also uses to be remote controlled.

7_2009-2012 #227794
vbScreensaver

This is a cool 3d-screensaver complete with password and ctrl-alt-del dissabeling.

7_2009-2012 #227796
Move a program to an MDI form

With this program you can select another window on your screen and move it to an MDI container! Warning: do not use if you do not have much experience with VB or Windows

7_2009-2012 #227802
Load Dialog from Resource

This code load's a dialog from a resouce file, it can also manipulate the controls on the dialog and recieve messages from it using subclassing. There is included one resource file containing a dialog with various controls, also one commoncontrol (slider) and some non-standard buttons. Just made this for fun and a little experimenting with resource files, hope you like it. BTW, you need Visual C++ if you want to add dialog's youself or change them. This because VB is only capable to see and compile the dialog resources, not to edit them.

7_2009-2012 #227804
Nfl QB Rating Calculator

-Well,with the NFL season upcoming I needed something to take up some time so I wrote this program to calculate the qb rating of your favorite player. The program will load the image of the Qb you choose and his team emblem(see the screenshot) and calculate his rating based on values you enter. I have includedthe calculation from the Nfl website in hopes that someone can find the error i made in the math code.The rating for the values entered should be 125.00 even. The math is wrong so.please dont vote.Hopefully someone who likes football as much as i do and codes better than me can figure this out.e- mail for questions or comments: de_killer_bee@hotmail.com

7_2009-2012 #227821
StayOnTop .. the Real One

'I developed this code because I have seen many people boasting that their code being 'the one that stays avove all of the other windows .. well I hae never found their 'claim to be true so I wrote this code .... in order to test my code just use any 'yes any stay on top form in the software world and I bet it won't fail ... what more 'it can be on top of even the menu items of the Windows start menu ... jus place the 'form around three inches above start menu and you see the menu items going behind it 'isn't this cool ... 'Just remember me Bis and askbiswa@hotmail.com .... I know now my mailbox is going to 'be flooded with mails for more cool and simple stuff like this .... well I promise 'once I get started I know I will never stop ... so write back soon ... if you like 'it

7_2009-2012 #227856
Java Applet Code Editor (JACE)

JACE is an application that users can use to code their Java applications and applets. It has a MDI architecture. Also included is the option to disassemble Java classes using Sun JDK as well as browsing applets and documentation. PLEASE NOTE, Sun JDK needs to be installed onto the target machine before using this program. This is because parts of the program call JDK and the batch files uses JDK.

7_2009-2012 #227873
Barcode 39 in one sub

I saw some code using a barcode font and knew i could do it with code alone. This is so simple it's one Sub only! (command1_click)

7_2009-2012 #227875
Swarm of Gnats

This is a swarm of gnats flying around trying to catch the loan female. I guess it's like 300 heat seeking missiles! This was actually inspired by the snow falling programs posted on PSC last winter. [UPDATE MARCH 2010] Re-worked the math to use ATAN2 - makes it much simpler, added mouse button functionality (cool patterns y'all). Should be easy to adapt to your game that needs a heat-seeking missile or 300.

7_2009-2012 #227877
Barcode 39 maker

Generate 3 of 9 barcode (in just 1 sub). No special fonts used, just code. This is an update to one of my old submissions.

7_2009-2012 #227878
Barcode Reader

This module can read a barcode from an image such as a scanned page. Supports 3of9, i2of5 and Codabar barcodes. I have included several barcodes in the "test file" folder for testing (drag and drop images into the app) Everyone is updating their old programs so I thought I would too!

7_2009-2012 #227900
Pong Clock

Watch the computer play Pong and score the time! Both sides are controlled by the computer but the right side seems to score 60 times more often... go figure! (update: fixed a few graphical issues)

7_2009-2012 #227901
Barcode Maker 39, i25, 128 & codabar

This is my little barcode maker for 3 of 9, interleaved 2 of 5, code 128, & codabar. All done with code, no special fonts required. (update: fixed issues with i25 & codabar)

7_2009-2012 #227905
Resistor Tool

A simple tool for decoding resistor colour codes. I made this just because someone recently submitted a complex *text* based application (with no colours!) to do the same thing. There are a few of these already here on PSC but all the ones I looked at still used drop down combo boxes to select the name (thats still text!) of the colour. Thomas, I hope its ok that I borrowed your resistor.

7_2009-2012 #227910
Follow the white rabbit.

This is just a modification of the source code of the original author. I fixed it so it will look CLOSER to the 1st scene in the THE MATRIX movie, where NEO first appears. This demonstrates the use of DELAY() func... BEST RUN ON FULL SCREEN MODE... note for the author: forgive me for modifying ur code... wel i just corrected it!

7_2009-2012 #227914
learnvb01a

a tutorial written in vb, about vb statements, functions, built-in functions, variable types, decisions, simple graphics .. an excellent beginner's reference

7_2009-2012 #227931
Computer Infomation

Gathers hardware, software, bios, etc information from your computer, or any computer on your network. Automatically gets the names of all computers on your network. Retrieves hardware information including processor, BIOS, windows version, build, service pack level. Shows all hardware in your computer's records and marks those that the computer is currently using. Good example of using the registry, resource files, hex to decimal conversion, api calls, etc. Does not require anything to be installed on another computer. Please vote, i've worked hard on this code, and let me know if you find any problems. Thanks!

7_2009-2012 #227936
Syntax Dynamic Colorizer

This projects shows how to convert an RTF box into a dynamic Syntax Colorizer (like the VB IDE colorizes what you type). It uses a text file to build its list of keywords (are you writing your own scripting language?), which you can easily modify by adding your own list of words/commands. Included is a small subset of the VB language syntax to show an example. Routines are very fast, and account for quotes, and comments. Routine also sets keywords to proper case ("print" to "Print" or "backcolor" to "BackColor". Hope this is helpful to some of you out there - I have commented it heavily to help you if you need to make modifications, or you can simply drop the "Colorizer" module into your own projects and use as is (simply pass your forms RTF box and the colors of your IDE you want).

7_2009-2012 #227937
Add Intellisense to your Scripting Language

This project shows how you can add an Intellisense List (like the one in VB where you type an object name, then a "DOT", and then a list pops up -- that's the Intellisense List). Designed to allow you to enter in YOUR SCRIPTING LANGUAGE COMMANDS AND OBJECTS quickly and easily (using an external text file). All efforts were made to make this act exactly as the one in VB does. Press TAB or ENTER to select an item in the list. Clicking TAB immediately automatically selects the first item in the list. You can begin typing the property name and the "closest match" will be highlighted as you type. Backspacing on your typed entry also does the same. Multiple "DOTS" (eg: me.text1.font.) works. Insertion of "DOT" characters in the middle of a string works. Location of intellisense box goes to where it can fit in view (bottom right, bottom left, top right, top left) depending on where your current cursor location is. This project Took me some time troubleshooting, so I hope some of you out there can use this. UPDATED ON AUGUST 9th! Fixed a few unhandled errors, added more comments to help you see what is happening, Wrapped Intellisense core functions into subs for easier include in your projcets, and added the ability for different styles of the Intellisense box (Office XP stlye, VB6 style, and a hybrid style) as many of you have requested.

Languages
Top Categories
Global Discovery