Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
VB VB (1648)
VB.net VB.net (736)
C# C# (15)
ASP.net ASP.net (779)
ASP ASP (41)
VC++ VC++ (25)
PHP PHP (0)
JAVA JAVA (4)
JScript JScript (5)
  Database
» SQL Server (708)
» ORACLE (5)
» MySQL (0)
» DB2 (0)
Automation
» C/C++/ASM (11)
» Microcontroller (1)
» Circuit Design (0)
OS/Networking
» Networking (5)
» Unix/Linux (1)
» WinNT/2k/2003 (8)
Graphics
» Flash (0)
» Maya (0)
» 3D max (0)
» Photoshop (0)
Links
» ASP.net (2)
» PC Interfacing (1)
» Networking (4)
» SQL Server (4)
» VB (23)
» VB.net (4)
» VC (3)
» HTML/CSS/JavaScript (10)
Tools
» Regular Expr Tester
» Free Tools

(Page 1 of 2) 42 Result(s) found 

 

Control the mouse speed under Windows 98 / 2000
Total Hit (3513) Under Windows 98 and 2000 you can control the speed of the mouse. The mouse speed determines how far the pointer will move based on the distance the mouse moves. The pvParam parameter must point to an integer that receives a value which ranges between 1 (slowest) and 20 (fastest). A value of 10 is t ....Read More
Rating
Correctly restore mouse cursor
Total Hit (3314) When you write lengthy procedures, it is a good habit to change the mouse cursor to an hourglass, and restore it to the original shape when the procedure exits. However, this cursor tracking may be rather difficult when the procedure has multiple exit points, or when it can exit abruptly because of ....Read More
Rating
Determine the number of mouse buttons
Total Hit (3113) Sometimes is useful to know how many buttons the user's mouse has. This value can be obtained by calling GetSystemMetrics. The constant to pass as parameter is SM_ CMOUSEBUTTONS. Here's an example: «Code LangId=1» Const SM_CMOUSEBUTTONS = 43 Private Declare Function GetSystemMetrics Lib "user3 ....Read More
Rating
Hide and show the mouse cursor
Total Hit (3102) At times you may want to temporarily hide the mouse cursor, for example in order to reduce flickering. To do so you just need the ShowCursor API function: «Code LangId=1» Private Declare Function ShowCursor Lib "user32" (ByVal bShow As Long) As Long ' hide the mouse ShowCursor False ' do ....Read More
Rating
Intercepting MouseEnter and MouseExit events without subclassing
Total Hit (3910) Visual Basic raises the MouseMove event when the mouse cursor is within a control, so it's easy to know when the cursor "enters" a control. However, determining when the mouse leaves the control is more difficult. You can solve this problem by monitoring the first time the control raises the Mous ....Read More
Rating
Swap the mouse buttons' behavior and meaning
Total Hit (4052) You can programmatically swap the meaning of the left and right mouse buttons, to account for your left-handed users. All you need is a call to the SystemParameterInfo API function «Code LangId=1» Private Declare Function SystemParametersInfo Lib "user32" Alias _ "SystemParametersInfoA" (By ....Read More
Rating
The status of mouse buttons
Total Hit (3303) Visual Basic lets you test the state of mouse buttons only inside a MouseDown, MouseMove, or MouseUp event procedure. To determine the current state of mouse buttons you can use one of the following functions: «Code LangId=1» Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As ....Read More
Rating
The status of shift keys
Total Hit (2870) Visual Basic lets you test the state of the Shift, Alt and Ctrl keys only within the KeyUp, KeyDown and all the mouse-related event procedures. If you want to test the state of these keys from within another routine, you can resort to the following functions: «Code LangId=1» Private Declare Fun ....Read More
Rating
ButtonDown, ButtonUp, MouseClick, MouseDblClick - Simulate mouse activity
Total Hit (4203)
Rating
ClipMouseToWindow - Confine the cursor to a window's client area
Total Hit (4505)
Rating
DiscardMouseMessages - Prevent queud mouse actions from being processed
Total Hit (3148)
Rating
EscapePressed - Check whether the Esc key was pressed
Total Hit (4058)
Rating
GetCapsLockKey - Get the state of the CapsLock key
Total Hit (3651)
Rating
GetDoubleClickInfo - Retrieve double-click rectangle and timeout
Total Hit (3271)
Rating
GetInsertKey - Get the current state of the Insert key
Total Hit (3273)
Rating
GetKeyboardRepeatInfo - Retrieve information about keyboard auto-repeat feature
Total Hit (3410)
Rating
GetNumLockKey - Get the state of the NumLock key
Total Hit (3383)
Rating
GetScrollLockKey - Get the state of the Scroll Lock key
Total Hit (3002)
Rating
KeysPressed - Test the status of up to three keys
Total Hit (3013)
Rating
LastKeyCode - Get the code of the last key pressed
Total Hit (4413)
Rating
MouseX, MouseY - Get mouse coordinates, relative to the screen or a window
Total Hit (4773)
Rating
MoveMouseCursor - Move the mouse to given coordinates
Total Hit (3991)
Rating
PressVirtKey - Press and/or release any key
Total Hit (3800)
Rating
SetCapsLockKey - Set the state of the Caps Lock key
Total Hit (3541)
Rating
SetDoubleClickInfo - Set the double-click rectangle and timeout
Total Hit (3285)
Rating
SetKeyboardRepeatInfo - Set values about keyboard auto-repeat feature
Total Hit (3572)
Rating
SetNumLockKey - Set the state of the Num Lock key
Total Hit (3466)
Rating
SetScrollLockKey - Set the state of the ScrollLock key
Total Hit (3369)
Rating
SnapMouseToWindow - Move the mouse cursor to the center of a form or control
Total Hit (3129)
Rating
VBSendKeys - Send keys to any Windows and MS-DOS application
Total Hit (13053)
Rating


(Page 1 of 2) 42 Result(s) found  1 2

Recommanded Links

 

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.