Advertisement

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

5_2007-2008 #185660
Counting en Getting Selected listview items with the SendMessage Api

!! Update !! Now counting the selected items in a listview and get the selected items quick from the listview

5_2007-2008 #185664
XP Button

Subclassing standard VB Command Button, CheckBox, RadioButton for own paint with graphics from Windows XP

5_2007-2008 #185713
Collapsable Toolbox Control (like in Macromedia MX products)

**UPDATED 7-31** Now you can... ->Customize the toggle button ->Add a custom Icon ->Set the Titlebar Back Color ->Set the Titlebox BackColor **END UPDATE** A toolbox that is collapsable (see the screenshot) its pretty self explanatory, you can collapse/expand it programatically by calling the Collapse or Expand method. This conrol acts as a container too! Please vote for me if you like this control, I will update it as necessary. Please leave ANY comments that you have, and feel free to email me!

5_2007-2008 #185720
OCX Gauge

Here is my first submission since a "hacker" erased all the things of my repertoire. Il s'agit d'un contrôle.It is a gauge showing pressure in psi having as value source in kPa. (Because we use metric values at my work and because i still love imperial system) i made that Old Style Gauge.I tempted several manners to arrive at my purposes (almost the end), in the first place, a simple line for the needle, it did not seem real, then I had to draw a needle in three fragments to make her the smallest as possible and by using the method of SetPixel and GetPixel. The only problem is that there is a refreshment in every consequentive change...Test it and why not try to improve it... All the constructive messages are welcome.

5_2007-2008 #185748
LabelComboToolTips

Baloon tooltips for combobox and labels. Vb does not have a mousemove for a combobox. This code will display a baloon tooltip when over the text portion of a combobox. Also a tool tip on demand for long tooltips displays. Also includes the finger cursor.

5_2007-2008 #185798
Vista Style Progressbar

This is a Vista style progress bar i built for one of my programs, it has min,max and value settings and looks clean and works well with no known bugs

5_2007-2008 #185862
Office 2007 Ribbon

-- Update on 10/10/06 -- This Control, will put a Office 2007 Ribbon to your application. No OCX, No DLL, No Office 2007 Required! ALL in your EXE! >>> This Code is under Construction!! <<<

5_2007-2008 #185871
Close all MDI Child except me

This code will close all other MDI Child except the current activated one.Simply put this procedure in Module or Form itself..There are two different way to use it.

5_2007-2008 #185875
A Winamp 3 Style playlist (Update v 1.1!!) Must try

HEre is an update to my code... Now it futures color changing at run time... Fixed some bugs... And has all the futures from previous version: Skinable Scroll bar, multiselect, add an entry, remove one, remove all, remove all selected (multi selected), Dubble selected (played), Display time & title... Everything u need for a media player.. And an extra second file name property (I use it for subtitles in my program...)... And reorder in Winamp 3 style... -Very precise and not buggy at all... There might be some more bugs (please report), but as far as i know it works perfectly... Try it and vote it (i need to see if it was worth of publishing it...)

5_2007-2008 #185882
Flat Controls

These is an easy way to create your own ocx controls. Has a Flat Command and a Flat Combo Box you could use it to your advantage and create your own flat controls, and i'll be updating this as soon as i finish the flat scroll bar, check box, option button, and frame..

5_2007-2008 #185888
FormBar

Ever wanted to create a tray bar for your MDIChild forms that looks like windows tray? or just tired to use Windows menu to switch beetween child forms? or just want to improve the looks of your app... Here is an example of how to create a form bar (a'la tray) to place in a mdi form. it doesn't use any api to detect forms and stuff, only old fasion Visual Basic event model. all u have to do is invoke ONE sub to add a form to the bar, and the rest will be done automatically. I have tested this control only in a MDI app, you are welcome to try its functionality in a SDI app, and leave your comments. Menu functions are not implemented fully, cause i couldn't decide how... Well u can add a custom menu, but control doesn't raise any event when a button is clicked. It's up to u to figure out and implement such functionality. Have fun (and rate!!!)

5_2007-2008 #185890
Emulate splitter bars - very simple - pure VB no APIs!!!

This sample demonstrates how to emulate splitter bars using VB

5_2007-2008 #185896
A Trayicon usercontrol. Use it where ever you want.

Add, Remove, Change icon in your systemtray. This usercontrol is absolutly great, you can use it where ever you want. It also has Events for MouseUp, MouseDown and MouseMove. Please Vote...

5_2007-2008 #185920
Ripple Effect

This is an ripple effect (well, it seems to be), which uses pure VB. My friends say, they look like ripples, but I don't. Just Hold the mouse over the form and move it.

5_2007-2008 #185933
VB Control Manager

VB Control Manager is an ActiveX control to allow the user to dock controls and resize, move and show/hide them at run-time. This is actually the improvement of my VB Splitter, an ActiveX control to resize docked controls at run-time. I change the name because VB Control Manager can do a lot of more than just to split/resize control. VB Control Manager has 14 properties, 4 methods, and 18 events customly made, plus two collection: a Controls collection (with 20 properties) and a Splitters collection (with 27 properties). To use the control, just place the VB Control Manager control on your form and add several controls on it. That's it! You don't have to add any codes to your form to have basic features of VB Control Manager. Just don't miss the demo (open the VB Control Manager Demo.vbg). Your feedback and votes will be very appreciated.

5_2007-2008 #185934
VB Splitter

VB Splitter is a developer-friendly ActiveX control to allow the user to resize docked controls at run-time. You can now have a splitting-capability for any number of controls with only one VB Splitter control and one line of code in your program. The control has 11 properties, 2 methods and 7 events customly made for your pleasure. It's very well-commented and has a strong encapsulation technic that making this control an author-friendly ActiveX control. Just don't miss the demo (open the VB Splitter Demo.vbg). Your feedback and vote will be very appreciated. Thanks in advance.

5_2007-2008 #185940
SoftButtonCtl

A simple soft button control

5_2007-2008 #185949
Display Checkboxes in Listbox Horizontally

Display Checkboxes in Listbox Horizontally I've been searching the internet and PSC on how to display checkboxes in a listbox in a horizontal manner but I didn't found any. Perhaps my search keywords are wrong but really I found nothing. I decided to re-examine the listbox property if I can find something that I have overlooked before and there it is. Who would have thought that by merely CHANGING THE COLUMNS PROPERTY TO ANY NUMBER OTHER THAN 0 WOULD ACCOMPLISH WHAT I WANTED TO DO. Many of you may have already known this but for newbies out there, this might help. See the screenshot to see what I mean. For the screenshot below, the setting is: Listbox1.columns = 4 OR In the properties list, change Columns = 0 to Columns = any number you want. The number of columns specified will configure the listbox to show 4 columns in its display window. A horizontal scrollbar will be displayed if the data display occupies more than 4 columns.

5_2007-2008 #186007
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

5_2007-2008 #186026
Cool ToolTip Notify for System Tray

This code will popup a little notify window in near the system tray! It uses a transparent form and is movable by the user. Take it easy on this newbie ;0) This is my first code submission.

Languages
Top Categories
Global Discovery