Results for "Category: Custom Controls/ Forms/ Menus"
Add, Remove, Change icon in your systemtray. This usercontrol is absolutly great, you can use it where ever you want. It also has Events for MouseUp, MouseDown, MouseMove and MouseClick. Please Vote...
This is an ripple effect (well, it seems to be), which uses pure VB. My friends say, they look like ripples, but I don't. Just Hold the mouse over the form and move it.
A simple soft button control
This code will popup a little notify window in near the system tray! It uses a transparent form and is movable by the user. Take it easy on this newbie ;0) This is my first code submission.
The FormattedLabel acts as a standart label control, but by placing commands within the caption, you can display different font effects. Different commands allow you to change bold, italic, underline, strikethru and color styles and insert line breaks. The control also features AutoSize and WordWrap. But i can't do it with transparent background. Buuuu. :o) Hi folks. I change tags to html like but without color tag. In declaration part of UserControl there is constants like CONST cBoldStart = "". You can change tags there but they must by among . Thanks to all for your reqest and tips. p.s. I hope than my programing is better then my english. Sorry :o))))
Tired of windows "numerical" listview sorting? 1 11 2 222 Well now you can sort your listview using true numerics! 1 2 11 222 An easy to use module, just one function to call on! Enjoy ;-) Feedback is appreciated!
Very well transparent form without any ocx or dll, every line are commented.
This class is used to EASILY add AutoCompletion such as in Internet Explorer or MS Access to VB Combo Boxes. It makes use of API calls which makes it EXTREMELY efficient. It also gives you the ability to control various properties: 1. The AutoDropdown property 2. Complete RowSource specification (new) 3. The ForceListUsage property (new) 4. The LimitToList property 5. The AutoUpdateList property ******************************************* **********PLEASE REMEMBER TO VOTE********** *******************************************
This is just a cool as feck clock its a must download. you will need to get some pics for it though but the code works.
The Purpose of this code is to demonstrate how to semi flatten objects.
It's a textbox XP Style with a cool border
4 cool user controls. !!! FOR ADVANCED USERS ONLY !!! NO SAMPLE PROJECT INCLUDED !!! Experiment with Properties Browser and methods and events. Look at the great events of GGCommand (I have not seen a Flat Command Button like mine on PSC yet :)) - MouseEnter and MouseExit. Supports transparent images and Caption and Picture position adjustments. Usage of GGMover: In MouseDown events of some object (Picture1 for example - set form and picture1 .ScaleMode to 3-Pixel): GGMover1.CaptureObject X,Y In MouseMove event: GGMover1.MoveObject Picture1,X,Y,True,True,0,300,0,500 In MouseUp event: GGMover1.ReleaseTargetObject If you have any problems with these user controls just write me an email to gogox@yahoo com or gogox@lycos.com This is my first submission to PSC.Enjoy
This tutorial demonstrates multiselect property of listbox as well as how to add and remove items properly. Absolute beginners will surely grasp this concept easily.
This code is the simplest form of Scrolling Text. It uses a Timer controle to make a label scroll. No consideration is required for screen cordinates or size or any other thing. Have a look at this simple scroll text application and Please do rate it :) I am watching from sachinweb@hotmail.com
This will allow you to stop the form from being resized below or above a user-defined amount. Because it uses subclassing, it is totally flicker-free.
This code is an example of how to make a frame control.
The Switchboard:A method for handling subclassing in ActiveX controls f you develop ActiveX controls and intend to subclass or hook a window, you'll very quickly discover a problem when you attempt to site multiple instances of your control. The subclassing, which worked fine with a single instance of your control, now no longer works and is, in fact, most likely is causing a GPF. Why is this happening? The AddressOf operator requires you to place the callback routine in a module. This module is shared between all instances of your control and the variables and subroutines that the module provide are not unique to each instance. The easiest way to visualize the problem is to imagine a shared phoneline (or a partyline as we hicks call it) where multiple parties are trying to dial a number, talk, and hangup, all at the same time. What's needed is an operator, a routine that controls the dialing (hooking), the talking (the callback routine), and who routes information to the instance of the control that requested it. The Switchboard subroutine (see below) and it's supporting code provides a method for subclassing from multiple instances of your ActiveX control. It is not memory intensive, nor is it slow. It's biggest weakness is that it is hardcoded to intercept particular messages (in this case, WM_SIZE, to trap resize events) and will require some minor modification on your part to use.
To center all of your forms nicely on the screen, use this as the first line in the Form_Load event--resolution independent. 'note:call this function like this: Center_Form Me
Show how to make a text box not beep but do something else when I hit the Enter key. This code example makes nothing happen, for an extended period of time:
How do I get my application on top?To make your window truly topmost, use the SetWindowPos API call