Advertisement

Results for "Category: Custom Controls/ Forms/ Menus"

2002ASP #2744
MouseOver/Exit Class

This projects demonstrates how you can detect Mouse Over and Exit events on a form using a class module.

2002ASP #2750
NoClose - Users Cant Close Your Program!

This Awesome Code Doesnt Let People Close Your Form!! Thats Right! It cannot be CTRL+ALT+DEL Closed, Alt+F4 Closed, The X Button, Even When You Get The Window Handle of Your Form and Try To Close it, it wont close!!! The Only way To close it is "End". This is a Great Piece of Code For Either Security Applications, or Even Joke Applications, You name it! The only way to Close is "End"!! So Have Fun With this awesome code and Please VOTE for me!!!

2002ASP #2754
Animated Gif Player ActiveX with Full Source in VB6

For the newest version that supports Local Color Tables and Transparency visit my Website here: http://www.lebans.com/animatedgifplayer.htm NEW! Animated Gif Player ActiveX Control with full source code. Written completely in VB6, no third party or external DLL's required. This is a complete rewrite of my earlier code to display Animated Gif's. Full featured and fully debugged!

2002ASP #2764
super player

super player

2002ASP #2767
Edit Titlebar Style (Colors,...) within your App v2 NO FAKE - MUST SEE

My Code changes the Titlebar Style in your App. You can specify two Colors for the Gradient in the Titlebar and you can choose the Gradient Angle. It's a must see code ;-) When you like then please vote for me ...

2002ASP #2768
Change Titlebar Style within your App

My Code replace the Titlebar within your App.The special about it is that you can choose the colors of the Titlebar.And you can use Menus in your Form.When you like it please vote for me ;-))

2002ASP #2769
A transparent Form

My code creates Transparant Forms.You can choose the Transparanty value (from 0 - 255).All other Controls placed on the Form are transparent,too.I you like and want to support me, vote for me ;-))

2002ASP #2776
rvtPropGadget (Repost)

Oops! looks like I failed Upload 101. Complete Zip this time. Repost of yesterdays submission. Gauges, Sliders and Scrollers from ONE control My apologies. To all who informed me - thank you

2002ASP #2778
rvtPropGadget (v2)

Multiple Slider, Scroller controls in one OCX. Now Mousewheel support has been added, in addition to MS properties so that it can be used as a drop-in replacement.

2002ASP #2781
Menu structure retriever-completed

This program will retrieve the full menu structure of a Form, up to three levels, and allows the user to modify it. A smooth interface provided with sound and some 3d effects enriches the usefullness of this code. You can easily bundle this project into an OCX. Heavily commented.

2002ASP #2788
TabDock Control version 1.6

VERSION 1.6 RELEASED! New features and enhancements. This control allow form docking capabilities. The advantages of using the TabDock and TabDockHost is that you don't have to re-design or change any line of code of your existing forms in order to have docking capabilities.

2002ASP #2790
GOTO!!! this code makes any picture melt away !!!

Put anything you wanna melt inside my picture box and watch the effect.. With this code you can easyly create a melting-screen-save! So: Try it out!

2002ASP #2795
All In One

You might need this sometimes.Some menu features like Icons in menu, Rolling over the menu with popup pictures,Position of the cursor,Streaming text across teh form , Playing *.WAV files in application , and some graphic options of the form.

2002ASP #2801
WebSafe ColorPicker

Selects a color

2002ASP #2821
Intellisense Imitation

Provides Intellisense imitation for your projects. This example lets you load tags from a file to the listbox. You can also choose whether to use upper and lower case tags. Now has new features like: filling the list with drives and fonts, and an updated drawing routine that speeds it up. It now works if the screen resolution changes.

2002ASP #2852
MSFlexGrid Manipulation

Add Rows to a MSFlexGrid With Alternating Colors. Option to Change Color Of Alternating Row. Option to Toggle Grid Lines On and Off. Please Vote For Me!! This is my First Posting on PlanetSourceCode. *** MAJOR UPDATE Coming Very Soon ***

2002ASP #2853
Demo: Popup Window (like menu or drop-down windows) (No hooks)

One of the most common types of a focus-only popup window is the menu. A drop-down list is another example. Both disappear when they lose focus. Here's a demonstration of how to do that. It doesn't rely on the LostFocus event, which only works within that form's scope. Switch to a different application and your popup would still be visible. Instead, it uses a timer and an API call to check to see if the popup still has global focus. If not, it self-unloads. While it does act essentially like menu-style popup windows, it's not exactly the same. To do that, I think it's necessary to use an API call to hook into some Windows event that detects a change in overall focus. This technique relies on constantly polling the OS. It also means the form that uses the popup will technically lose focus (big deal). It's generally a little klunky. Still, it works very well. Thanks go out to MrGTI (www.Pharfruminsain.com) for advice on the basic technique. I encourage anyone who knows the "right" way of doing this to let me know. Please vote for this code if you like it.

2002ASP #2867
File Upload Component for ASP Apps (includes demo)

Want anyone with a common web browser to be able to upload files to your ASP application? Here's a great little component to help you do it. This component builds on the standard mechanism web browsers provide for uploading files. Since IIS doesn't provide any simple built-in way to deal with this, this component fills the void. Here's how simple your ASP code can be:     Set Upload = Server.CreateObject("Carnicelli.FileUpload")     Upload.Save "C:\Temp"     Response.Write "<LI>" & Upload.Form("Email")     Response.Write "<LI>" & Upload.File(1).FileName I crammed a number of useful features for manipulating the resulting files, generating unique file names, and more. This code teaches many programming lessons. It demonstrates MIME processing, array and string manipulation (includes powerful array and string manipulation libraries), generating unique file names, real-time stream processing, interfacing with IIS' built-in objects (e.g., "Request" and "Session") without help from the ASP code, binary file manipulation, processing with a finite-state-machine model, MTX (Transaction Server) components, and more. Please comment on this code and vote for my hard work if you like this code. -------------------------------------------------- Now there's a commercial version of this product available. It's been rebuilt from the ground up, correcting all the issues you've reported here and including new features. And it comes complete with extensive documentation and good service. Check it out!

2002ASP #2870
PostalAddress Control

Data entry control for U.S. postal addresses in a single text box with automatic parsing and assembly. If your application has to allow users to enter and view snail-mail U.S. postal addresses, your usual choices are separate text boxes for the parts of the address or one big text box for the whole thing. Usually, which it is depends on how you store it. This control gives your users the ease of having a single text box and your program the power to pick out the two street address lines, city, state, zip code, and 4-digit zip code extension as separate parts. Does format validation, state abbreviation validation, state name conversion to abbreviations, data parsing and assembly to and from the same plain-text representation seen by users. Provides simple explanations for why a given address is invalid, if so. Also provides many of the most commonly-used properties and events of a typical text box. As easy to use in your project as an ordinary text box. Extensive documentation provided in the code. Also includes an extensive HTML help file and demo project. Recent Updates: 5/18/2000: Added .Populate() method 5/22/2000: Vastly improved parser to accommodate odd an incomplete addresses and added public array of error codes / messages. Please vote for this code if you like it.

2002ASP #2895
Move Form w/o Status Bar!

This is a simple way to move the form, without the use of a staus bar! Just click and drag anywhere on the form. I also threw in an option to make a menu popup without the use of the menu editor! Shows how to view a menu, made by the menu editor, by clicking a command button! You can also apply this to almost any control.

Languages
Top Categories
Global Discovery