Advertisement

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

7_2009-2012 #237532
Matrix Text Control (live animated screenshot)

A simple text effect control that is best described as black background with falling green letters that reveal a message. The controls [MatrixText] property lets you control what the message is that is revealed..nice splash sceen effect

7_2009-2012 #237533
LittleButton.ocx allows you to instantly create a button array (up to 20 elements) AND...........

LittleButton.ocx is a one of a kind button that is actually many buttons in one. Instantly creates and array of buttons(up to 20 elements). The buttons can be arranged vertically or horizontally (menu style) Just about every visual aspect of the control is totally customizable from the caption style(flat, embossed, shadow, raised) to the mouse over hilite color, and more than 2 dozen additional properties. One look at the screensh0t will convince you of just how much time and work was put into this.

7_2009-2012 #237534
Line 3D replacement for the line control

a replacement for the standard line control. creates a line that looks more like the line that makes up the edge of the frame control (screenshot) there are 3 types, (single,double, triple) and 2 different types (embossed, raised). Not a huge or fancy control but will save you about 4 or 5 lines of code, without having to think too hard. with there control there is no coding whatsoever..like the standard line control..just drop and position and your done

7_2009-2012 #237535
ListGrid control (update) a cross between a listbox and a listview controls that >>>>>

This is my ListGrid control..so called because it basically merges the functionality of a listbox with a listgrid control. Some of its appealing features are (1) with a short, simple call you can get or set the text of a specified "cell" in the list (2) you create attractive header (2 possible styles) with as many columns as you wish. (3) clicking any of the columns headers cause the list to be sorted in ascending or descending order (alphabetically) just like in outlook or kazaa (4) There is a property call .highest_index which makes for slightly easier looping...for example with the listbox or any of ms controls..there is a property such as the listcount so if you want to loop through the list you go> for i = 0 to list1.listcount -1 the .highest_index property already takes that into account so now you just loop by>> for i = 0 to listGrid1.highest_index. The listcount is still available to you as well if you prefer that, (5) your can set the font/forecolor/backcolor, individually for both the header and the list itself. If you prefer the lightweightness (not a real word i dont think) of the listbox, and used the settabs api to try to increase the functionality of the listbox but felt like you wish you could take the improvements many steps further than that then you will love this control. Suggestions for improvement will be implemented so suggest away.

7_2009-2012 #237537
ListGrid control a lightweight FlexGrid replacement that's cross between listbox + flexgrid

This extends the functionality of the listbox by (1) allowing you to create an attractive header with 3 styles ( sunken, framed, raised) (2) specify a header backcolor, forecolor and font.. as well as the fore and backcolor and font of the list portion of the control. The best part of this control is that is specifically designed to be a listbox with tabstops AND you can retrieve AND set data in the list based upon a row and column setting...so all the dirty working of juggling text data is taken care of. This is something i whipped together in a couple of hours so its not totally complete..but its pretty much there..and I am hoping to get suggestions from you on how to enhance and refine it..but I am pretty sure you will like and appreciate it!!

7_2009-2012 #237561
Office 2003 Button

This code improve Office 2003 Button for VB. With MouseOver effect (No Flicker), CheckButton, ToolTipText, Frozen (Enabled Property). You can built a nice Toolbar. I Just improve and join same other code peaces from PSC. THANKS PSC

7_2009-2012 #237628
GFX Frame Control Release 3.2

*** RELEASE 3 *** A Simple Container Which Allows You To Add Depth To Your Forms. Now Supports Rounded Corners, Shadow On And Off And Border Colour, Caption (On\Off), Alignment, Show Tab, Font + Colour. See Screen Shot, Now All It Takes Is A 'Little' Imagination... BUG FIX:The control interfered with the Left$ and Right$ commands, this has now been rectified (Changed The Alignement Enum Members Names). Sorry if this caused you problems, but it's now fixed.

7_2009-2012 #237635
LCD \ LED Display Control 100%

**WITH MISSING CONTROLS** Control Now Supports Fade In Left\Right. As requested the control now also handles images. This control has been completely Re-Written. Tonns of new properties and function to manipulate the output of the display. Fonts now can use there antialiasing to give smoother looking text, it works tonns faster, element dimension can be resized. pictures can be inserted useing my own make of a picclip allowing you to update the text with as many images as you want in real time. Images can all be stored in one picture file. You can now view the results of your settings in design time. Take a peak, don't just look at it, fiddle with the properties and what not. FIXED BUGS:1. Bounce Of Strings Smaller Then The Display 2. Loading Of Large Images (GetImagesWidth Function) 3. Image Place Holder Not Read At End Of String.

7_2009-2012 #237648
Side Box

This user control extends a portion of the standard ListBox ActiveX control, adding a graphical button that "opens" and "closes" to left or right.

7_2009-2012 #237673
Frame buffered, all API, scrolling label control

Labels where all the text doesn't fit due to space constraints. Gah! Here is the solution! Flexbible font face and size, several styles. All API driven from font creation to frame buffering.

7_2009-2012 #237675
ToggleBox - iPhone style Toggle control

Tired of the [tick] checkbox/toggle. Have a new style funky toggle box control with a couple of gradient back styles, shadow line and caption properties. Great skeleton for an owner drawn custom control too!!

7_2009-2012 #237676
iPhone style smooth scroll listbox (beta)

iPhone style low friction smooth scrolling listbox. click drag, let go and the list smooth scrolls to a stop. allows 2 values to be stored against a key and either 1 or both to be displayed. long text is shortened to correct lengths with a '...' suffix. context bar on the right lets you know where you are in the list. there is a custom data class behind the scenes and the user control maintains a linked list on the data to provide quick sorting, regardless of physical data order. arrow up/down or mousedown on header/footer for fast scroll. this is beta, so these functions are implemented but not public interfaced: font name/size and colors. enjoy Mike

7_2009-2012 #237795
Embedded Forms (Tabbed, 2 forms 1 window)

This code allows you to embed a sub form unto a "main" form. Supports loading/unloading. Uses tabs to load and unload 3 simple sub forms. This allows you to have cleaner code by splitting UIs into different forms instead of having invisible frames on the same form

7_2009-2012 #237820
UserControl: Split window, scrollbars with MouseWheel support

UserControl featuring window splitter, useful for editors, worksheets, tables and more. Exposes the work areas: use them in your client like you would use any other PictureBox. Full mouse support, including MouseWheel.

7_2009-2012 #237835
Office 2003 style toolbar

This is my first project in PSC. This a nice Office 2003 style toolbar for VB. You can built a nice Toolbar.The initial idea taken from JCF_Toolbutton created by João Fortes. I have made a compilation of different jobs published on Planet-Source-Code.com I want to thank to - Everyday Panos for your Office 2003 Button AND MOVING TOOLBAR project - Fred cpp for api functions used in his isbutton control - Carles P.V. for 3d UcVertical line - and others authors of PSC All control is drawn using api functions (no images, no other controls) It is including an improving JCF_ToolButton created by João Fortes.

7_2009-2012 #237837
jcFrames (new frame control)

The jcFrames control (NEW VERSION!!!!!!!) will enable you to have new designs on your vb projects. This control provides 5 styles (including Windows XP style) for your frames and different features (caption aligments, textcolor, fillcolor, iconsize, picture, etc.). Version 1.1 incorporates icon alignment and fixs errors of previous version. Thanks to Jim K for doing the initial idea of the usercontrol using my job posted to PSC. Thanks to ElectroZ for his frame style used here as TextBox style.

7_2009-2012 #237838
jcFrames control version 2.0.1

jcFrames control version 2.0.1 (another version of my award-winning frame control) incorporates 4 new styles and new properties (for example: enabled property, it enables or disables automatically all the contained controls). This control will enable you to have new designs on your vb projects. This control provides 9 styles (including Windows XP style) for your frames and different features (caption alignments, textcolor, fillcolor, iconsize, picture,icon alignments, enabled, etc.).

7_2009-2012 #237839
jcToolbars 2.0.1 (Office 2003 style)

jcToolbars 2.0.1 is an Office 2003 style toolbar with 3 standard theme color (blue, silver and olive, includes also theme autodetection) and 2 custom colors (visual studio 2005 and norton 2004). It is a complete new version made from my first uploaded job last year. Four type of icon and caption alignments, different icon sizes and fonts, font color, etc.

7_2009-2012 #237840
jcForms v1.0.5 (new updating)

It's a nice usercontrol that enables you to skin the form. It includes 6 attractive styles, 5 theme colors and 3 backcolor styles. In this version I have added new features and fixed some errors. Have a look at screenshot. Enjoy it!.

7_2009-2012 #237841
SystemGraph

This usercontrol could be used to show your users the outgoing/incoming bandwidth or performance of your program live. This is done by constantly feeding the graph with new data, etc.

Languages
Top Categories
Global Discovery