Advertisement

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

7_2009-2012 #235059
Application to SysTray Minimizer

This program demonstrates how to minimize an application to system tray while it keep running. Show System Tray Icon when Application is minimized and No Icon when App in Max mode. Just similar to Yahoo Messenger functionality. Good for Complete App developers........

7_2009-2012 #235072
_ 3D Label Control (UPDATE)

Small update to my 3D-Label control. Added X and Y offset as separate coordinates instead of one integer acting as both. Vote if you like the code. Or at least leave some comments...I would appreciate it, thanks.

7_2009-2012 #235073
_ 3D Label Control

3D Label Control. Easy to use. Can change appearance. (Raised, Inset, Emboss, Color(s), etc.) See screen shot and PLEASE VOTE!

7_2009-2012 #235077
_ Hover Picture Button Control With 3 States (Mouse Over, Mouse Leave, Mouse Down) _

A custom control I made for a program to save time. Its a custom button using your own pictures. Accurately detect when mouse enters, leaves, or is pressed. Please vote/leave comments :)

7_2009-2012 #235079
_ List Box Class (EXTENDS THE FUNCTIONALITY OF STANDARD LISTBOX CONTROL) _

The class file will add many useful features to the listbox, such as the ability to remove duplicates quickly, load a file, save the list, and much more. It also gets around the problem with a listbox only being able to hold up to 32,767 items without errors. Please Vote!!!

7_2009-2012 #235084
_ Custom Scrollbar (100% Customizable) _

I GUARANTEE this is the BEST custom scrollbar you will find here on PSC. Has 6 preset bevel profiles, 3 mouse states (Normal, Mouse Hover, and Mouse Down), and you may use pictures in place of each of them giving you endless possibilities. The code is not commented yet but I will get to it soon and reupload it when I'm done. But this code is VERY clean and easy to follow. Please vote, I worked very hard on this.

7_2009-2012 #235085
_ Shadow Label Control (Version 2)

Version 2 of my 3D Label control. The shadows are now smooth and very professional looking. Easy to use control. Works exactly like a normal label but this one looks better. Vote if you like it please!

7_2009-2012 #235093
SkinIt (A design time VB Form Skinner)

Hi This is My Third Submission named as SkinIt. Its a user control (Source Include) to skin your VB Froms at design time as well as run time. I got the inspiration from our own PSC, but all of the code i found only skins the form at runtime or one have to use some heavy skinning engine. But this ctrl is very light in weight and supports 15 customizable skins. But Before all i want to thanx all the developers who helped me to do such thing... Please See the screenshot and as usual DO NOT FORGOT TO VOTE... (some day my code will become the "Code of the Month") ;-) ...

7_2009-2012 #235118
[popup menu made simple]

Popmenu for beginners, shows great example of how to implement a popup menu into your program, from this example you should be able to add popup menus to which ever control you wish, hope this provides use to sombody.

7_2009-2012 #235138
Unit Conversion Tools

This distribution features two unit conversion programs, a Unit Conversion Class / User-Control Maker Tool, and class/control example programs.

7_2009-2012 #235140
Delete the form's border!

With this code you can delete or apply the Border, Sizebox, MinimizeBox, MaximizeBox and Sysmenu Any time you want in a code :) It uses SetWindowLong, I created a easy to use class, vote if you like it, or give comments!

7_2009-2012 #235144
_***** XP DTPicker ( Update ) *****_

Look at screen. Date Picker with Xp Visual Style. Please, download it !

7_2009-2012 #235145
Exactly Osen XP Form with different Color Scheme (Blue,Olive Green,Silver) support menubar

This is ActiveX Controls, prepared to help to make xp form with different color scheme (blue,olive green,silver) and on this part, it supported for menu bar. look at screen. please download now, and don't forget to vote me !

7_2009-2012 #235146
The Real Vista Form Emulation Control (OsenVistaForm)

4 years ago, I was create Exactly Osen XP Form control, today I trying to write Vista Form Emulation control. Sugestion or comment are welcome ...

7_2009-2012 #235153
Flexgrid Sorting

Sorting the column by clicking the column header of msFlexgrid or MshFlexgrid

7_2009-2012 #235184
FormGradient2

Simple Form color gradient which includes standard controls like OptionButtons, Frames, etc. Single subroutine. Suitable for beginners. No APIs, no ActiveX. Zip contains a small demo project.

7_2009-2012 #235185
Button Shaper Change your simple command buttons

A great button changer example which can change the shape of a simple command button. just set the command button style property to graphical and see the difference.

7_2009-2012 #235193
A Must See Tips: Real Numeric Character in TextBox. Avoid Paste Alpha Character

Many tips (and trick) tell us that if we want the textbox control ignore the character which is not numeric character, then we can just put the code that shown in KeyPress event procedure below. But, sometimes we forgot that although we have put the code in KeyPress event procedure, user still can input the alpha character to textbox control by doing copy and Paste to textbox. So, here is another tips to fix the problem. I hope this helpful.

7_2009-2012 #235195
LynxComboBox v2.0, The Best Enhancements for Multi-Column ComboBox

This source code contains some good enhancements that I made for LynxComboBox v1.30 with multi-column drop-down list feature belongs to Richard Mewett that you can get from: http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=61438&lngWId=1 . I have made some modifications and new features on LynxComboBox control. I also have separated the project become two projects (one is LynxComboBoxTest.vbp, and the other is LynxDataCombo.vbp) in order easy for you to compile it become an .ocx file (if neccessary). Just open the RunThisForTest.vbg to test those both project at once. So, let's see what's new that I made so far: (1)--> Changed Private to Public for SearchCode function in order could be used for validating selected text on LynxComboBox. This function is very useful if you want to validate the selected text before saved that selected item or another certain value from drop-down list to your database. (2)--> Added 4 new functions: FindFirstText, FindNextText, FindPrevText, and FindLastText for searching text in the certain column. This search feature included using 3 search-mode ("Equal", "Like", and ">="). This is very useful if you want to find a string on certain column in drop-down list and want to know which item(s) contains that string. If the string found, the item would be selected automatically in the LynxComboBox. See at the demo project. (3)--> Fixed minor-bug on Locked property. Before: KeyPress/KeyDown still work or affected and item could be choosen or selected when Locked = True, After: Now it has been fixed by truly locking when you press the key from your keyboard! I think some of you did not realize this bug, don't you? ;-) (4)--> Added new feature to bind value on certain column in drop-down list to another controls by using two ClassModule (MyControls.cls and MyControl.cls). Those two classes and the technique I got from Marcelo Luiz Altafin on http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=37751&lngWId=1 then I combine them. I also give him a credit for this new feature. This feature is very useful if you want to get the value from certain column of drop-down list and automatically filled-in to another controls on your form (such as TextBox). So, from now on, you don't have to get a value from ItemText manually anymore. Just bind your TextBox control to the LynxComboBox by using .MyControls property... (see at the demo project) and... tarraaa... the TextBox(es) filled-in automatically. Even this feature still works if you press down-arrow or up-arrow key from keyboard to browse the items in LynxComboBox. (5)--> Added function ResetValue to reset value in LynxComboBox and all controls that binds to the LynxComboBox (such as TextBox). This is very useful if you make an entry data form, and after user save the record to database, then the selected item in LynxComboBox on your form back to blank and ready to receive new input again (similiar with Reset button function on HTML). This is also affected to the controls that binds to LynxComboBox (such as TextBox), the value become blank string. I also added a database for test purpose if you want to get the items from your database. I added one form with a progressbar in order to let user know about the progress while retrieving records from database. This is recommended if you get so many records from your database and load them to your LynxComboBox. I changed the version become 2.0.0. To Richard Mewett, I hope you don't mind about this new version, right? :-) The copyright of this user control is still belongs to Richard Mewett and his name is still written on the code because he deserve. Download it and proof it now. Any comments and votes would be truly appreciated. Thank you and have a nice code, everyone. Tag: Multi-Column, multi column drop-down list, drop down list.

7_2009-2012 #235302
Semi transparent form 2000/XP

Your standard semi transparent form in Win 2000/XP without the flickering. Comes with fade-in effect.

Languages
Top Categories
Global Discovery