Advertisement

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

ASP_Volume3 #50642
Great & Simple Multi-Column ComboBox

Yet another update. I have fixed the scrollbar display under WindowsXP. Here's an update to my Combobox control. I fixed the App activation issue, and added support for MDI & MDI child forms. Thanks for the support! Due to the lack in VB for a Multi-Column Combobox and the licensing issues with the Forms2.0 control, I've created my own. This control uses only the standard VB controls so there are no extra dependencies like many of the other Multi-Column comboboxes out there. It's simple to use and setup. It supports column widths, a finditem method that searches items by column, and hot-tracking. It also has the common ComboEdit & ComboList style. You can adjust the drop-down list height and width. The list will also display outside of the form border. The code for the control is not commented very well, but the demo does a pretty good job explaining how to use it. Many of the API & Subclassing base techniques used in the control are from vbAccelerator, & mvps.org/vbnet. Also, if you know of any ways to improve it, please let me know. I've tested MANY other Multi-Column comboboxes (free and the not so free) and I feel this control is a very good cross between graphical representation and useability providing the programer an easy interface and the end user a control that behaves like you would expect. If you feel that this control is worth the time & effort put into it, then please vote for it! If not, any suggestions on how I can make it better are greatly appreciated. Thanks

ASP_Volume3 #50644
Splitter Active-X control for VB

This control creates a splitter bar with 2 resizable panels. The panels are adjustable by a specifying the size of the Child1 panel through the PanelSize property. It also includes minimum and maxmimum size parameters. It is well commented and also provides a demo application to explain all the options. I would also like to thank Mark Joyal for his great SplitterControl on which this is based. His control provides a way to resize based by a percentage, while mine provides a way to resize based on a size value. Since this is my first Active-X control, I would really appreciate your votes and any feedback you can provide.

ASP_Volume3 #50649
A Graphical replacement for the Generic / Limited / Basic VB ScrollBar

NOT just another Scrollbar : This control will allow you to use graphics for the background, thumb and the buttons. Works in either Horizontal or verticle orientation, will automatically determine the orientation when you create the control on the form. Uses Longs for the Min / Max / Value properties, no more 65535 limitation. Can AutoSize to the dimensions of the background picture. The buttons on the ends can be hidden so only the BackGround and the Thumb are shown. Great for use with Skins and other unique grpahical applications. No flicker. Smooth scrolling. [ Updated ]

ASP_Volume3 #50650
Enhanced version of Elad Rosenheim's "Dynamic" Resizable Skin Demo

I have enhanced Elad Rosenheim's "Dynamic" Resizable Skin Demo to better support KewlPad skins as well as added several functionality changes to bring it closer to a complete skinnable solution. Changes: - All the code was removed from the form's codebase and put into a Class Module to make it reusable and easily compiled into an ActiveX DLL.  - Allow for A Minimum Client Area size  - Allow for Maximum Form Size - Ability to make the form non-movable, non-resizeable, and/or Always OnTop.  - Removed the need to have a second "Hidden form" for correct Minimize events.  - Built in routine will reconfigure form using API calls and remove the titlebar and 3D effects, so you don't have to change the form's BorderStyle in the IDE. - Added several events triggered when the form skinning is complete, The Minimum button was clicked, the Close button was clicked, ClientArea and Form MouseEvents, and of course on Form Resize. - New Skin properties: FontColor, FontBold, BackColor. Over 50 KewlPad skins are available at http://www.deviantart.com/browse/?section=kewlpad *Please ask the original Skin author for permission before distributing there skins with your app.

ASP_Volume3 #50651
Complete System Monitor Usercontrol

Having seen so many code snips that either only work with Windows9x or return incorrect values, I decided to write one that should work accross ALL version of Windows. I was able to find multiple pieces of code all over the place and assembled them into a neat little ActiveX control. This usercontrol can be be used visually, and optionally display the history of any if the following values; CPU Load %, Memory Load %, Free Pagefile %, Free Virtual Memory % and the HD Free space %. The control can also be hidden and used to manually retrieve the values below using the GetCurrentSystemLevels routine. This allows you to retrieve current system levels and isplay the information using your own layout/design; CPULoadPercent, MemoryLoadPercent, PhysicalMemoryTotal, PhysicalMemoryAvailable, PhysicalMemoryAvailablePercent, PageFileTotal, PageFileAvailable, PageFileAvailablePercent, VirtualMemoryTotal, VirtualMemoryAvailable, VirtualMemoryAvailablePercent, HDTotalBytes, HDTotalFreeBytes, HDAvailableFreeBytes, HDTotalBytesUsed, HDAvailablePercent The visual look of the control is fully customizable. All colors can be modified to fit the individual needs of developers.

ASP_Volume3 #50661
Massively cool form shapeing on the fly

This demonstrates how to use the windows api to dynamically (and quickly) reshape a form without hogging resources. It Doesn't Even Blink! PLEASE VOTE!

ASP_Volume3 #50665
ListView As FileListBox

A replacement for the antiquated FileListBox. This control sets the ListView's imagelist to the system imagelist which alleviates the need for an ImageList control to store file icons and is therefore less resource intensive. It is subclassed so that the LV doesn't remove the system imagelist assignment. Some other improvements over my previous submission: 1) Allows user to remove the Size, Type, Date columns if desired, plus hide the columnheaders in Report mode--this makes it look like the FileListBox with icons. 2) Added Horizontal and Vertical ledger styles (see screenshot) with the option to change the colors. 3) Column header sort icons. Enjoy.

ASP_Volume3 #50666
Toolbox Bitmap Editor

This is a tool to help with building the ToolboxBitmap pictures for your usercontrols. The docs state that best results are obtained by using a 16x15 bitmap. Through experimentation I've learned that the Transparent color the IDE uses is at x=0, y=14 (lower left corner). Enjoy.

ASP_Volume3 #50678
An Email/AnonyMail Program Like No Other, Amazing GUI !

Send an Email as anyone simply, with no need for an SMTP server. The brilliant user interface makes theis program a 100% must have. Please dont forget to vote!

ASP_Volume3 #50686
Docking and UnDocking of toolbar and other controls

Update---------------------------------------- This is an improved version of previos DLL. Now it handles child controls of the container control which is being undocked, plus I've fixed the problem with changing focus. Also I've included test project so you can see how it is suppose to work. Old --------------------------------------------- This class allows to undock any control on the form and drag it around. Furthermore, during Undocked state events will be still received at the same place. It is an emulation of the Microsofts abilities to undock panels (ex VB Properties and Toolbar)

ASP_Volume3 #50687
Create your own tabbed dialog.

Demonstrates how you can create your own tabbed dialogs without the use of any OCXs or API. Only 2.8 KB to download! This code is HEAVILY COMMENTED, and explains in plain english what every little line does, this example includes 3 tabs, you can customize each tab, and you can add more tabs. IF YOU LIKE IT, PLEASE VOTE FOR IT! I would greatly appriciate any comments or suggestions which you can place by scrolling down this page some.

ASP_Volume3 #50743
NetButton

Its a button .... what else does a button do ? Note : I have fixed the click event problem :) My mistake ..... who else would it be ?

ASP_Volume3 #50744
Aqua Button

Once again .... its a button ... :) and what does a button do ?? Anyway, this button is inspired by the Aqua interface of MAC OS X :) I'm not a mac fan but .... sure wish Microsoft would do something about their interface ... Luna is a good start :)

ASP_Volume3 #50802
QView

Example of a Listview Control, File System Object and an Image combo working together. Sample also a nice way to use the Listview control and show plenty of capability that can be added. Includes String parser and keeps track of Current Clicked Items an current folder location.

ASP_Volume3 #50823
Edit Grid

Shows the way of editing a datagrid and then copying the data of selected cells of datagrid to a clipboard.... Very nicele commented code... Best for someone who wants to learn about datagrid... Guys this is my first ever submission... so please vote... and give comments... but only good..;-)

ASP_Volume3 #50826
Data Grid Update Ver...

Nothing Much !!! Just the update of my previous datagrid... This code helps you learn editing datagrid... It just got rid of pressing Enter key again and again... Also shows how to allow only numerical data in a particular column... And yessss !! u can also copy a selected cells of datagrid to Clipboard... Everthing Very well commented !!! So guys please vote....

ASP_Volume3 #50874
Devilsoft Http Client (handles redirects and returns http errors)

this http client user control (ocx) makes the downloading of webpages, files, whatever, greatly simplified and demonstrates some very key internet programming concepts such as the use of the winsock control, protocol programming, as well as user control properties, property bags, and things like that. The control returns any http errors, messages, and also handles redirects. vote if you want, but i don't upload for rating, just to help. later.

ASP_Volume3 #50875
Roulette Menu

It is a nice 3D Program for your Desktop. Allows choise the image and action for each Icone. 4 Roulette types, with Zoom and Stretch features.

ASP_Volume3 #50899
IP TextBox control

Finally a textbox-control for IP addres input. Now recently updated, with most of the features of the ordinary textbox, plus a bunch of others.It accepts input in either dot-separated (n.n.n.n) and/or zero-padded (00n00n00n00n) string. The combination 00n00nn.1 is valid!You always get a properly formatted output string: "n.n.n.n"

ASP_Volume3 #50918
PB XP Button Update Build 6 (10/1/2001)

A smart looking Office XP Button - You can change the border & background colors, add shadows, disable it, mouse over & mouse out support, set the icon size.... Upadated: build 2 - Added MultiLine Caption Support,, Added Caption Alignment,, Plus some little bugs fixed,, ** Update: Build 3 Added focus rect show or hide, Added Keydown, KeyUp & KeyPress support, Added Set Font Color on MouseOver, Added Set Font Color on MouseDown, ** Update: Build 4 - Added Checkbox type button ** Update: Build 5 Fixed Problem with double click Improverd the looks on the checkbutton, Option button support, Improved the shadow on the icon....... Build 6 - Memory leak fixed.... If you find any bugs or have any suggestions please let know..

Languages
Top Categories
Global Discovery