Advertisement

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

2002ASP #5179
Simle Wizard Sample

This code provides a relative easy way of displaying a step through wizard for gathering information. This wizard sample looks like the Microsoft Word 97 resume wizard. This code is very easy so I didn't include many comments.

2002ASP #5186
Popup Menu with a file(Like mIRC)(MUST SEE)(UNLIMITED SUBMENUS NO DLL)

It is an example how to make a popup menu using a file (popup.ini) like mIRC. This code is fully commented. I'VE ADDED SUPPORT TO UNLIMITED SUBMENUS AND SUPPORT TO BACKGROUND. I'VE INCLUDED THE SOURCE OF SSUBTMR.DLL IN THIS PROJECT. SO IT ISN'T USING DLLS. THIS IS A GREAT CODE GUYS. PLEASE VOTE FOR ME IF YOU LIKE IT. AND LEAVE A FEEDBACK.

2002ASP #5189
A SmartButton Control

Simple flat button control, pops up on mouse over, Preeses down on mouse down, goes flat on mouse out, includes the MouseMove, MouseDown, MouseUp, MouseOut and Click Event, Can change the picture property or have no picture at all. No timer control needed.

2002ASP #5190
ActiveX VU Audio Meter

An ActiveX VU Meter, I hope you enjoy.

2002ASP #5192
SkinnableMeter

Change the appearance of a progress bar with bitmap files, I included a few sample skins. Use's the BitBlt API Function, On a usercontrol.

2002ASP #5195
ActiveX ProgressBar Control

ActiveX ProgressBar, Meter control, No OCX, No registered controls just simple addin progressbar.

2002ASP #5196
VU_Meter

AxtiveX VU Meter.

2002ASP #5198
Skinnable_Meter UserControl

Skinnable Meter UserControl uses BitBlt API

2002ASP #5199
PSC Vote UserControl

Vote UserControl to add to your project. Upload your code get the CodeID from the browser address string then update your code and edit your upload.

2002ASP #5200
Fixed Music Match Style Slider

A simple and easy replication of the music match slider.

2002ASP #5201
TabbedDialog

A tabbed dialog box.

2002ASP #5202
OutlookBar

MDIForm with an outlook style shortcut bar. Very Simplified.

2002ASP #5215
Mouse Events

A UserControl that will capture and report mouse events on form and child controls. I've found it useful for finding position and color info at runtime when working with picure objects and when doing bitmap manipulation.

2002ASP #5218
xp style menus

this code is a slight modification of the menu ocx. created by vbaccelerater. it give menus a windows xp appearance. it does this by placing a background image, chnaging the starting position of the menu separator line and changing the color of the highlight. you will need the subtimer dll, i have included it in the zip file along with the original vbacceletor code. please do not vote for me since this is really not my code. enjoy.

2002ASP #5222
Dynacom **Now includes Autocomplete, and Find functions**

This is the latest version of Dynacom, the combobox replacement. Its even flashier because it can now even autocomplete while you type, just like the internet explorer address bar, and even find list entries by string!!. There is a list of all the user accessable member subs/functions and events inside the zip so check it out before you look at the source. Check it out!!!

2002ASP #5232
Add SysTray-Icon +++ Change Wallpaper

Did you ever want to let your Application appear in the SysTray, without any complicated code, completely bug-free and easy to handle using events?Or did you ever want to change the Windows-Settings like Wallpaper with VB?This code does not only contain the source for a UserControl to easily create and handle SysTray-Icons or the code to change the Wallpaper, it is also a complete program to fresh your Desktop up: you can create a list of picture files and the program changes the Wallpaper after adjustable delays, running down your list. Furthermore the program is very flexible, it automatically stretches the pictures so they fit onto the screen, and it can handle all filetypes from Bitmaps over GIFs to JPEGs.Just copy some cool Wallpaper-files into the Folder "Wallpapers", type any number of minutes in the TextBox in my program, and enjoy your always different wallpaper!Also the program runs in the SysTray when minimized, so it doesn't block the TaskBar and is still accessable.About the SysTray-Icon Control:You just have to add the UserControl to your form, and your App appears in the SysTray. If you want 2 Icons in the SysTray, just add another Control. You can change the Icon and the ToolTip Text in the IDE and at runtime, and you can control the User actions easily through events.The control also allows you to display the window's system menu when you click on the Icon, if you want it to.I hope this stuff helps you, and if you like it, please don't forget to leave feedback/votes!

2002ASP #5292
IMenu, ActiveX

ActiveX control like on WinXP open dialog.

2002ASP #5293
iList

Cool list ..., see screen shot.

2002ASP #5306
Global Hotkey V1.0.5

Installs a system wide hotkey which triggers the HotkeyPressed event whenever the chosen hotkey combination is pressed - regardless of whether your application has the focus or not. Release 1.0.5 allows the hotkey to be changed at runtime and also to be enabled/disabled.

2002ASP #5310
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

Languages
Top Categories
Global Discovery