Advertisement

Results for "Volume: ASP_Volume3"

ASP_Volume3 #60336
IsPanel With Mouse Wheel Support

Did a complete rewrite of the core functionality in order to make the control a self contained container, with no need to code anything in the user form. Latest version can be found here. http://www.planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=59922&lngWId=1 A control that allows programmers to extend the aviable space in their forms, adding the posibility of show scrollbars Credit to Fred.cpp for the Original Code submitted found here. http://www.planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=45171&lngWId=1 I have added support for the Mouse Wheel, and when a control that has focus is out of viewing range it will now place it in viewing range.

ASP_Volume3 #62018
ICMP Made Easy

This simple VB6 class allow you to send ping (Packet Internet Groper) and perform a trace route. Though you could expand it for use with other icmp responces. The class can easily be slotted into any application you wish but a simple interface is provided to try out. The code should be very stable no missing constants etc and doesnt lock up when a paticular point in the trace route doesnt respond (see notes in code). Anyway hope you like it. Ps. Update 14 April 05 - updated for an overflow error when the tracert gets stuck waiting at a paticular place in the hop. Also added a screenshot though its the class that I submitted not the interface. Anyhow those of you having trouble with crashs the only thing I can think of is its something to do with the version of the icmp dll or winsock dll. I've tested it on ICMP.dll version 5.1.2600.2180 and have had no crashs at all. Even for addresses that dont exist even for planet-source-code.com. So check you have the latest icmp and latest winsock. One of you reported it happened on both ping and tracert so its probably the actual ICMP echo thats falling over.

ASP_Volume3 #62747
XP Container Control (UPDATED)

A simple XP Style lightweight container Control. Updates: 08/04/2005 - Resize Bug Fixed.

ASP_Volume3 #63825
[BreakoutDX]

I think every would be indie game developer has to get a pong/breakout game out of their system.. this one is mine How to play: Click the left mouse button to fire the ball from the paddle twoards the rows of bricks. The object is to keep the ball in play by bouncing it off the paddle until all of the bricks are destroyed. When that happens the level is cleared, a bonus is awarded and a new row of bricks is presented. Capturing the ball: Once the blue meter below the score is full, chime is sounded and the ball can be retreived. To retreive the ball, click the left mouse button and the ball will turn blue and stick to the paddle. It is now ready to be re-fired. At any time you can hit the Esc key to exit the game. Extra ball awarded at 80,000 points. DirectX7 or better is required, along with a soundcard. Other features: Sound effects and shameless self promoting splashscreens (with beatz!) High score keeper. Known bugs: The paddle can move much faster than the ball, which will lead to possible collision issues if the side of the paddle hits the ball really fast. Misc: The ball must reunite with the paddle for the level to be cleared. So if a ball is lost after the last brick is destroyed, you'll need to re-fire. There's other features I wanted to add to this game, but other projects are taking up my time Features that come to mind are: Top 10 score list with name entry. Multiball Different block patterns. Probably more I'm forgetting

ASP_Volume3 #51765
Work With Dates/Calendar Form

(Update: Added Home and Esc Keys and GetCountOfWeekDayInMonth and Changes to daylight savings time taking place in 2007) 22 functions for working with dates. Included are a Calendar Form (which mimics the one found in mscomct2.ocx) and a Class module; both are independent entities (you can use one without the other). The Calendar Form provides a "popup" calendar using VB code only, no OCXs or DLLs. The Class module provides various date functions.

ASP_Volume3 #64791
Atlantis POS

The purpose of this program is to give POS programmers to have an idea on how POS works in a simplest GUI. This application is for Cashier only. If you need the manager's application just send me emails..tnxx.. god bless

ASP_Volume3 #64203
MP Registry Editor

Fully suported Registry Editor written in VB that can handle all types (main) of registry values REG_SZ, REG_BINARY, REG_DWORD. Have all functions as regedit.exe If you like the code plaes vote, cuz i spent some time on this! :D

ASP_Volume3 #64466
A new kind of browser (Using mozilla, NOT IE!)

Want to make a browser but hate IE? Now you can use mozilla thanks to the help of the mozilla active x control http://www.iol.ie/~locka/mozilla/control.htm

ASP_Volume3 #60337
DVBPanel

Formerly: IsPanel With Mouse Wheel Support This is a complete rewrite of my original code posted here. http://www.planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=59863&lngWId=1 Similar to Java's JPanel this control allows you to add scroll bars to a form easily. Supports Mouse Wheel, while tabbing through controls will keep the active control in current view. DVBPanel is also now a container so no need to write any code in your form to support this control. Works best as a compiled OCX however will run fine if just added to your application.

ASP_Volume3 #61543
Basics On Database

It explains the basics on Database managing with ADO using Datagrid.

ASP_Volume3 #64003
Demo AZ666

Creating effects from an input image using varius shapes brush, animating the effect with timer and draw your owen effects...

ASP_Volume3 #64928
Occupied Space Test

This is a test of an Occupied Space algorithm. It organizes objects (Pictureboxes, controls, etc.) on the screen in as little space as possible. The objects can be justified to the top, left, right, and bottom of the screen.

ASP_Volume3 #62787
Generate GUIDs From VB

Generate GUIDs From VB!

ASP_Volume3 #64790
Atlantis POS and the Enterprise Manager

Hi. A lot of great ocx made by la volpe, and others used in one great inventory system..check also the Atlantis POS

ASP_Volume3 #64972
HtGuitar Guitar chords, Notes and Metronome

Guitar chord finder, note table and metronome

ASP_Volume3 #53410
Computer Beep Music

A program to play music on your computer speaker. Comes with several songs you can load and play. Can load or save in binary format or ASCII format (for external editing). Also, it can import MIDI files and convert them to Beep files. Similar to http://www.planet-source-code.com/vb/scripts/ShowCode.asp?lngWId=1&txtCodeId=59929 but I wrote it before this program was ever released. Requires Windows XP or later and an internal computer speaker

ASP_Volume3 #64968
Balanced Binary AVL Trees Using Dynamic RAM Allocation

ABSTRACT Provides any amount of requested memory (as long as there is available RAM) and associates that memory with a user-defined alphanumeric key. Features very fast retrieval in sorted order, even faster sequential access (in the chronological order the requests were made). DESCRIPTION The alphanumeric keys are associated with a certain quantity of bytes located at a designated position in RAM. That RAM is and remains exclusively reserved for that Key. Via the key the address can be returned, and also the reserved bytes at that address. Keys are internally managed with a balanced binary AVL tree. It is possible to iterate through the whole collection of keys in the order in which these keys were created (and the memory allocated), returning the Key, the Memory Address and the Size. It is also possible to access all the Keys in sorted order (ascending as well as descending). All operations are considerabily faster than VB's Collection object (as far as such functions are provided by the Collection).

ASP_Volume3 #64004
Menu Cube

Creating a nice animated menu made from different forms...

ASP_Volume3 #64005
Colorful Starfield

Creating a colorful starfield with timers only...

ASP_Volume3 #64604
________________________________<_..::VB 6.5 (The User Friendly Version Not Released)

VB 6.5 (The User Friendly Version Not Released) See Screenshot Download the vb6ide.zip from www.sijo.8k.com copy and paste it into your VB Path (with vb6.exe) Keep a back up of your existing VB6IDE.dll file Download VB6.exe also, It gives and amazing look to vbp, cls,frm,bas files by changing the icon Developed by SIJo Soft Developing team if you are from Kerala, SIJO Soft Malayalam Notepad is my another submission. see this also The best Malayalam Writer, Malayalam Notepad and Best Malayalam Editer

Languages
Top Categories
Global Discovery