Advertisement

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

2002VB #22400
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.

2002VB #22403
ActiveX ProgressBar Control

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

2002VB #22404
VU_Meter

AxtiveX VU Meter.

2002VB #22406
Skinnable_Meter UserControl

Skinnable Meter UserControl uses BitBlt API

2002VB #22407
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.

2002VB #22408
Fixed Music Match Style Slider

A simple and easy replication of the music match slider.

2002VB #22409
TabbedDialog

A tabbed dialog box.

2002VB #22410
OutlookBar

MDIForm with an outlook style shortcut bar. Very Simplified.

2002VB #22423
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.

2002VB #22426
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.

2002VB #22430
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!!!

2002VB #22440
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!

2002VB #22500
IMenu, ActiveX

ActiveX control like on WinXP open dialog.

2002VB #22501
iList

Cool list ..., see screen shot.

2002VB #22514
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.

2002VB #22518
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

2002VB #22530
RunTime Skin Customiser and Demos ******** UPDATED ******** ##### NOW FIXED ##### !!!!! YAY!!!!!!!

This Code Lets The User Design A skin Very Easily for one of your programs, It is Very easily customisable and the user can do a quick preview, The code is set up for the 3 test programs i have included, These also teach you basic functions of visual basic so if your a newbie and wanna get started download this, To Know the style of this project you really have to download, If nothing else its just interesting P.S You Dont have to supply the skin maker with yout Project you can just Use it to make cool skins for ur prog.You need microsoft form 2.0 object library to use the demo projects and priveiw screen. THIS CODE IS SO EFFECTIVE YET SUPER SIOMPLE U'LL LAUGH! It can teach everyobody something about something! IF YOU LIKE IT PLEASE VOTE, I NEARLY GIVE UP VB LAST TIME CUZ NO ONE VOTED!!!

2002VB #22558
Codebox with Line Numbers

This is a rich-text-box with a built-in line-number panel on the left. Typical use would be for a script editor language IDE. I Couldn't find a decent one on here that did this, so I spent some time doing it myself, and passing it on for you to use (and improve on, of course). It is a pretty basic control, but I did make into a control so you can just pop it onto a form and go (of course, source code for control is included). You can control the Line Number panel width, backcolor and forecolor, along with all textbox stuff (uses RTF in case you want to use my syntax code colorizer submission). The Line number panel automatically adjusts its font to be the same name/size/etc., as the text box so that they line up properly. Hope you find it helpful - if so, votes are always appreciated (kind of makes me feel like it was time well spent).

2002VB #22573
_ ISPanel a Great Option if you need more space in your Forms ! ! _

Name: prjPanelTest Description: this control is very useful for those who need more space on their forms, you can extend you form space using this control, see example form how to use: 1.- Insert a ISPanel Control in your form 2.- Insert controls in a picture Box 3.- In the Form Load Event call the Attach Function and pass the picturebox as parameter. 4.- In the Query Unload event call the detach Function Notes: the Control Captures the events of the Picturebox, so if you resize the picturebox, the control adjust the scrollbars. Also, if you resize the ISPanel control, it adjust his properties Feedback and Votes are GREATLY appreciated ;)

2002VB #22574
__ A Better Image Combo: ISCombo __

This is a Flat ImageCombo, I made It, because I was bored with the "normal" Combo from VB. And I could'n detect when user selectted an Item on the list. So I decided make one better. It's very userful ( I hope ) please Check It out and vote. Comments are also very apreciated.

Languages
Top Categories
Global Discovery