Advertisement

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

ASP_Volume2 #33882
Control Arrays Demo

This is just a short example of how to create and use control arrays

ASP_Volume2 #33884
TaskBar Height

The purpose of the code is to determine the height of the taskbar so that you can display a form at the bottom right hand corner of the screen everytime.

ASP_Volume2 #33897
A Flashing Form

This code causes the form's TitleBar and the form's TaskBar Window to Flash.

ASP_Volume2 #33900
xp style

i did some changes to the code but the credit is to douglass sheffer. is his code not asking for votes or anything. i am working on xp style controls as well and custom basic controls. in c++ as well as vb. if you like let me know. the original code is at http://planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=30137&lngWId=1

ASP_Volume2 #33907
cTreeView Class wrapper v02.03.00 (**Updated 16/8 - Animated Graphic TreeBack Demo - UNIQUE!**)

** Release 6 ** Added BackMode, BackColor, BackPicture, BackFileName, DisableMultiSelect, New Tutorial (Disable Multi-Node Select), updated Tutorial 1 (demonstrate new Back features) and added Animated TreeView Image Background (YES - A first! Pretty unique huh!). BackColor & BackPicture work independantly of the Nodes therefore Nodes maintain their original colors! No other VB code does this - enjoy! ** Release 5 - 26 New Features, 2 new Tutorials ** Now boasts 75 Properties & Methods (features), 7 tutorial/example applications and detailed Html help files and still growing! New features include:- **Disabled Nodes Interface** with full keyboard and mouse support (Unique!), HitTestEx (with comprehensive feedback), IsNodeTextUnique, IsPathExpanded, NodeAbsolutePosition, NodeAbsoluteIndex, NodeCoord, NodeCountChildren (recursively for all sub-branches), NodeFindEx1 (containing), NodeFindEx2 (advanced pattern-matching), NodeFindObjectInTag (advanced pattern-matching), NodePosition, NodeUniqueText, SubNodesSorted, and EditLabelMaxLength. The Disabled Nodes Interface allows individual nodes to be enabled/disabled (not selectable) and toggled with the ability to affect child nodes with a single command; disabled Fore/Back colours and Bold state are programmable (preserves the original Forecolor, Backcolor and bold status of each individual node) and fires a StateChange event when a node or a range of nodes are disabled/enabled. The treeview control by itself is a powerful control when used properly. This wrapper is designed to deliver the most common and also complicated features that's expected from the control but are not included or are very difficult to implement. [See the animated ScreenShots for examples of the new features] The included tutorials also demonstrate how to tie multiple ADO recordsets to a Treeview control with drag'n'drop automatic updates(move & copy nodes and branches), load-on-demand for instataneous display of large amounts of data; benchmarking; cursor management; TabStrip management; working with common dialogs through APIs; and much, much more...

ASP_Volume2 #33915
Data Driven Form

If you are interested to develop any data driven form application. The Important Basic Code to do so... Try it out... Give me your vote ...

ASP_Volume2 #33952
URTB •UDMX HL RTB•

Ever tried RTB[RichTextBox]? Didnt' fit your needs right? Didn't like the image resize? or maybe the OLEObject.add (or API paste) for inserting image? Hate writing replace functions? Have Undo & Redo function which don't function as you wish? I can go on like this for hours but why not see my Control for your self. If you've used my original RTB before and liked it then you would be happy to know that this one does 200% more things which that did. :'( I got a lot of hits (more than the top 3 UPLOAD) and I got only a little vote :(( Please vote... I would really appreciated if you take just a moment to vote Requirements: RichtextBox VB6 SP4 + SP5 *YOUR VOTES*

ASP_Volume2 #33963
IsCombo 3 ( (Image) Combo) ** Updated **

Need a good (Image)Combo, then download this IScombo. Why did I make this. I was working on a projekt an needed the imagecombo. But I found out that with some characters it worked strange, so I started looking for a better one. I found the IScombo from Alfredo Córdova Pérez ( fred_cpp ). I thought the beginning was good so I started to enhance. Now I think I have done my job well. Just Check it out and vote for me. You may use it freely and adjust, but just give Alfredo Córdova Pérez and me (Jarry Claessen) credit, cause we worked hard for it. Just check it out and have fun with it. I never gonna use another one anymore !! If you don't think it's good just tell me why. (It might have some little bugs (It isn't completly tested) but if you find one just let me know so I can fix it. But I don't think there are many. Suggestion, errors etc are welcome at : [email protected]) I haven't put all option in the test form, but I think you guys can figure the rest out, it's very easy.

ASP_Volume2 #33968
JS Button - same features as commandButton and more!

This code is the source to the button OCX, (which includes some good 3d-fading code), and a demo on how to use it and change its properties. Good if you want to make your own OCXs, or just want to use nicer buttons in your programs. PLEASE vote and leave comments.

ASP_Volume2 #33979
[Stylist Toolbar OCX, with all credits to GONCHUKI] a long waited stuff of all PSCoder!

Stylist Toolbar Control OCX! The combination of the best button on PSC, GONCHUKI's Chameleon Button, and a systematic class toolbar management system. With the button style of WindowsXP, OfficeXP, Mac, KDE.... and special button style like DropDown Button, Seperator and CheckBox. Click in and see.........

ASP_Volume2 #33990
hard drive volume serial code to open form

ok ive changed the wording on this because of lamers this is just a simple volume hard reader which reads the volume to load a form/s its not meant to be a pay program just stops people giving your program out ive put very little help on the forms because its so easy if you do get stuck code your own simple

ASP_Volume2 #33992
ucCoolList 1.2

A ListBox control with cool effects. Sample project demo. >2002.12.09: OCX version translated to private UC version.

ASP_Volume2 #34009
SplitBar

This control makes it very easy to add a horizontal split bar to your application. Eventually this control will include vertical splitbars as well. To use this control: 1. Place the control on a form. 2. Place controls above and below the splitbar control. This control needs at least one control above it and one control below it to function. The idea is that instead of using code to set the maximum and minimum scrolling positions controls are used instead. This makes it easy to visualize the range of motion for the control. Also, you can reposition the controls in response to form resize events, and the splitbar will use the new positions. Controls that are used only for setting splitbar ranges can be hidden at run time. In the future I will probaly change this so that the splitbar uses its current position for the maximum top or maximum bottom position if no controls are added to the top or bottom. 3. In the form load event add references to the controls to the splitbar using the AddControlTop and AddControlBottom events. i.e. splitbar1.AddControlTop Text1 splitbar1.AddControlBottom Text2 splitbar1.Update Calling splitbar.Update will align the bottom of all TopControls controls with the top of the splitbar and the tops of the BottomControls to the bottom of the splitbar. Known bugs. 1. Currently the splitbar control brings itself to the top when a user moves it. This was intended to make using the control easier, but it will hide any labels contained in the control. I think thats it, if you find more please let me know. Also, please send me any ideas you may have to make this control better.

ASP_Volume2 #34026
Make AWSOME Looking Menus

This code is great if you need to spice up your program with a bit of color. It is a cool looking menu which works like any normal one. By the way, please vote and leave comments!

ASP_Volume2 #34040
Goofy About Box

Silly, fun animated About Box for your applications (use your own pictures!) Even plays dopey sound effects!

ASP_Volume2 #34041
Text Box Control

Ever sick and tired of that control supplied by Microsoft? Well... here is an alternative and it can do quite a few things indeed. Feedback would be most appreciated. Thank you. Full source is included. Written using visual basic 5 control creation edition. Please don't forget to vote - be kind - this is my first OCX control.

ASP_Volume2 #34075
TabIndex Manager *BUG FIXED*

TabIndexManager (*array of controls bug fixed*) is a add-in for Visual Basic IDE that control the TabIndex property of the controls in the selected form. *A MUST SEE CODE !!!* ..... Special thanks to my friend Marcelo Ivan Martin. ................................................................................................................................................. *** PLEASE DON´T FORGET TO VOTE ! ***

ASP_Volume2 #34148
Custom Menu

A Menu made by using Picturebox .

ASP_Volume2 #34151
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 ***

ASP_Volume2 #34172
Create your own Listbox example

A listbox using nothing but a picture box and scrollbar, not done yet.

Languages
Top Categories
Global Discovery