Advertisement

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

ASP_Volume2 #31676
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_Volume2 #31683
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_Volume2 #31718
AutoSave

AutoSave is a program that automatically saves the file you are working on in the program you specify as often as you want. It is a very useful program especially if you work in a program that has crashing tendecies, and you are worried that your work might be lost. AutoSave demonstrates use of Registry, Menu and Window API calls, and is commented pretty fully. ***Autosave v1.2 is now out!*** Bugs found in the first version have been fixed, so it now works well in both VB5 and VB6! Check it out at http://www.planet-source-code.com/vb/scripts/showcode.asp?txtCodeId=12825 and be sure to vote!

ASP_Volume2 #31727
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_Volume2 #31740
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_Volume2 #31783
Hotline Tracker Socket

This simple control simplifys the hotline tracker protocol so that just a few lines of code can list a tracker.

ASP_Volume2 #31794
Form Mage

This is the source code to a custom control that will give you more power to work with VB forms. Extra properties, functions, and events including FormMoved, SysTray Icon, Form Shape etc. This is a useful tool even if I do say so myself, I use it and you will notice that if you down load my next Upload called System Mage (Wait and see!) WARNING: Terry has pointed out a glaring error in my code that has baffled me. Somewhere along the line I have coded an error into the property page that causes an error and I haven't located it yet. I'm going to warn everyone about it until I fix it but leave it on here so you can still use the example of the functions in the control. If you see my mistake then pls let me know! Cheers.

ASP_Volume2 #31805
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_Volume2 #31806
AnimatedGradientLabel

Making Animated Gradien Label. Changing the background of a label.

ASP_Volume2 #31817
ExplodeForm

Explode the form.Zoom in and Zoom out the form

ASP_Volume2 #31824
tCalendar

Calendar user control - lightweight and simple to use - full source code included

ASP_Volume2 #31826
Grid Background Picture for FlexGrid Control

Ever wanted to see a picture behind flexgrid text (not a single cellpicture!)? This project is a little part of my custom grid control. Picture idea was given by a questioner Experts-Exchange site. Please let me know your ideas and let me know if you want to have a more flexible FlexGrid control code. Enjoy. Suat Ozgur

ASP_Volume2 #31830
Creating 2D XY scatter charts on an unbound MSChart Control

Creating bar and line charts is fairly well documented on the MSDN CD, but 2D XY (what I call XY scatter graphs) are not. This example demonstrates a method to not only create 2D XY graphs, but also plot multiple series on the same chart. The things that need to be done are pretty esoteric, including using multiple DataGrid columns for each series, removing null points from one or more series, etc., which makes this kind of graph very unique. This example also illustrates some other properties and methods that can be useful for other types of charts.

ASP_Volume2 #31838
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_Volume2 #31845
Vertical splitter

Example of control that splits another two

ASP_Volume2 #31846
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..

ASP_Volume2 #31876
ComboBox with multicolumn - problems fixed

ComboBox with multicolumn like in MS Access, it’s possible to set connection string, data source , number of column , List with, Column width , etc

ASP_Volume2 #31878
Enhanced VB Forms (v2)

2 controls that vastly extend the cababilities of Visual basic. *** VBEventWindow - provides a simple subclassing control. Events: - ActiveApplicationChanged, fired when your app gains or loses user focus - LostCapture, fired when your app gains or loses the capture - KeyPressed, fired when any of the keys are pressed - LowMemory, fired when the system is running low on memory - Move, fired when the form is moved - VerticalScroll, HorizontalScroll, fired when the form scrollbars are set - WindowsSettingsChanged, WindowsINIChanged , fired when the windows environment settings are changed - NonClientMouseMove,NonClientMouseDown,NonClientMouseUp,NonClientDblClick, fired when a mouse event occurs in the non-client part of your form - MinMaxSize, fired when the OS wants to know what size to make your form either in response to a minimise/maximise command or when the user is dragging the resize box. - MouseOverMenu, fired when the mouse is over a top level menu - WindowMessageFired fired for all the other windows messages Methods: - InvalidateRect, Sets part of the form invalid to indicate that it needs to be repainted Properties: - ClassName, returns the windows class name fo the form - DeviceContext, returns the device contect of the form (for graphical operations) - HorizontalScrollbar, VerticalScrollbar, sets or unsets scrollbars on the form - TopMost sets the form to float over the top of other forms - Transparent, makes the formclient area invisible Use: In the form load... Private Sub Form_Load() Me.VBEventWindow.ParentForm = Me.hWnd End Sub *** VBSysTrayCtl - Provides a simple control to allow your application to use the SysTray Events: - MouseMove, Fired when the mouse moves over the tray icon - MouseDown, Fired when a mouse down event occurs over the tray icon - MouseUp, Fired when a mouse up event occurs over the tray icon - MouseDblClick, Fired when the user double clicks the Tray Icon Methods: - ShowIcon, displays the icon in the system tray area - Hideicon, removes the icon from the system tray area - Refresh, updates the icon displayed in the system tray area Properties: - Tooltip, the tip that is displayed if the user hovers the mouse over your systray icon Use: In the form load.... Private Sub Form_Load() Me.VBSysTrayCtl1.Tooltip = "Merrion Computing" Me.VBSysTrayCtl1.ShowIcon End Sub Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer) Me.VBSysTrayCtl1.Hideicon End Sub

ASP_Volume2 #31886
Caption Fun

Learn to have fun with caption, eg: make it glow..... please visit my homepage 4 more app at http://www.cyberway.com.sg/~dyrws

ASP_Volume2 #31887
Form_TaskBar

A VB control that, when placed on a form, causes it to act like the Taskbar (minus the Start Menu).

Languages
Top Categories
Global Discovery