On CNET: Shaun White talks gaming
1 Resources for

mousemove event procedure

  • Subscribe to this listing via:
  • RSS
  • Email

TechRepublic Resources

Implementing mouse-over effects on VB6 forms
Advance your scripting skills to the next level with TechRepublic's free Visual Basic newsletter, delivered each Friday. Automatically sign up today!If you spend much time browsing the Web, you'll notice thatsome Web pages feature mouse-over effects. These effects change the appearanceof a screen element when a user passes the...
Tags: event procedure, INTEGER, Microsoft Visual Basic 6.0, MouseMove, MouseMove event procedure, Peter Aitken
Technical articles 2005-03-31

Additional Resources

Implement a MouseExit event for VB6 controls
The MouseMove event lets you detect when a mouse enters a VB6 control; however, Visual Basic doesn't have a built-in event that allows you to determine when a mouse exits a control. This tip explains how easy it is to create your own MouseExit event. If you want to...
Tags: Microsoft Visual Basic 6.0, Mice, Peter Aitken, Boolean, mouse, MouseMove, Visual Basic Tips Newsletter, Control, Microsoft Visual Basic, Hardware, Peripherals
Technical articles 2005-07-14
Track mouse events in your VB6 programs by capturing the mouse
The way Visual Basic 6 handles mouse events is called capturing the mouse. Find out what happens when a user captures the mouse, and then learn how you can verify this behavior yourself. The phrase "capture the mouse" refers to the way VB6 handles mouse events. By default,...
Tags: Microsoft Visual Basic 6.0, Mice, Peter Aitken, mouse, mouse event, pointer, Visual Basic Tips Newsletter, Event, Hardware, Peripherals
Technical articles 2005-05-19
Create a VB6 Command Button that fires repeatedly
There may be times when you want a VB6 Command Button to fire an event repeatedly, such as when you're performing an operation on multiple files. Learn how to create this kind of button in this VB tip. A Visual Basic 6 Command Button normally fires one event ...
Tags: Microsoft Visual Basic 6.0, Microsoft Visual Basic, Peter Aitken, Microsoft development tools, Programming languages, Timer Control, Command Button, Visual Basic Tips Newsletter, TechRepublic Inc., Development Tools, Software Development, Software/Web Development
Technical articles 2006-01-05
Automate data validation in VB6 with CausesValidation and Validate
Don't let invalid user data problems sneak up on you—prevent them by developing programs that take into account data validation. Find out how you can automate the data validation process in VB6 using the CausesValidation property and the Validate event procedure. Data validation is an important part of many...
Tags: Microsoft Visual Basic 6.0, Data Validation, Peter Aitken, CausesValidation, event procedure, TextBox, Visual Basic Tips Newsletter, TechRepublic Inc., Corporate Communications, Microsoft Development Tools, Programming Languages, Marketing, Development Tools, Software Development, Software/Web Development
Technical articles 2005-10-20
Deleting a button module in Access 97
Hello, I created a new button and during the process I wasn't flagged that the name, or event procedure had been previously used for another button and because of this when I tried to use the other button that had the same name it came up with a error: ...
Tags: Microsoft Office, Databases, Microsoft Access, jordan1, Microsoft Access 97
Discussion threads 2007-10-18
Implementing mouse-over effects on VB6 forms
VB6 & VB.NETPeter, Thanks for the detail regarding how to setup and use mouseover events in VB6. Could you extend your discussion and show equivalent method/code for VB.NET 2003?Thank youShould have pointed outAs you are reseting Command1's appearance in the container's mousemove event. If you have an adjacent control,...
Tags: curcio1.jv@..., Microsoft Visual Basic 6.0, mouse, programming, Style Property
Discussion threads 2005-04-01
Events
How do use one event in another event.. send some example codes in visual C#.NETGive us a clue what you meanand seeing as you want us to solve the problem for you, adding please to the request might get you a better response!You can raise an event in another event....
Tags: smsurendar@...
Discussion threads 2007-08-22
IAS won't start after 2003 upgrade
Help,I just upgraded a 2000 server to 2003 and now Internet Authentication Service won't start.Any ideas?What does the error in the Event Log say?The event viewer shows the following message:Event ID: 7023 Source: Service Control ManagerThe IAS service terminated with the following error: The specified procedure could not be...
Tags: IAS
Q&A 2005-01-06
VB6 Tip: Best practices requires that you ensure all forms unload
Writing proper code requires that when a VB program ends, all of its forms will be unloaded and removed from memory. When a Visual Basic 6 program ends, all of its forms should be unloaded and removed from memory. VB doesn't do this automatically; therefore, if your...
Tags: Microsoft Visual Basic 6.0, Microsoft Visual Basic, Peter Aitken, Microsoft development tools, Programming languages, main form, Visual Basic Tips Newsletter, Procedure, Best Practice, Event Procedure, Development Tools, Software Development, Software/Web Development
Technical articles 2005-01-14
MS Access 2003 Forms on open event VBA
In the open event sub procedure of a form. The help says that the 'Object' is the name of the form. I have a form with name as Admin and Caption as Admin_Form. When I click on the properties window, event tab and then click the build button next to...
Tags: Microsoft Access, integer, sxviswan@..., ms access forms, software, programming, Microsoft Corp., VBA
Discussion threads 2007-02-22
Stored Procedure & Views
I Want to create a stored procedure on MS VISUAL STUDIO.Then later use the stored procedure to develop a report using Crystal Report XI. How can this be Achieve this ?Bit confused hereYou mean you want to write some code to create the stored procedure in a database...
Tags: Databases, tmmokoena@..., stored procedure
Discussion threads 2007-07-27
Sharing the event logic between controls in VB.NET
Whenever you write the code logic that may be used for more than one control, it makes sense to try to save time by creating only one procedure that will handle the event and perform that logic. In this tip, I show you a way to share the event logic...
Tags: Control, Microsoft Visual Basic.Net, Microsoft Development Tools, Programming Languages, .Net, Development Tools, Software Development, Software/Web Development, Irina Medvinskaya
Blog posts 2007-10-19
Using the DATASETS Procedure Part II
PROC DATASETS is a single PROC containing functionality that is also available in PROCs COPY, CONTENTS, and APPEND. The DATASETS procedure is more efficient, more versatile, and has features far beyond COPY, CONTENTS, and APPEND. This paper will try to explain why, when, and how to use the DATASETS procedure....
Tags: Procedure, DATASETS Procedure, PROC DATASETS
White papers 2007-05-14
I don't have that popup
Hi SirI gone thru U'r artical on debugging sql server storedprocedureI tried to dedbug a procedurewhen I right click on a procedure I didn't find any debug option Can U help me how can I debug a procedure its very IMPORTANT me Thanks in Advance
Tags: Programming languages
Discussion threads 2005-07-14
Create a VB6 Command Button that fires repeatedly
just asking for trouble"...such as when you're performing an operation on multiple files"Most of the time you need to process multiple files, you do all the looping in a command button's click event. This may just be a bad example. You can get the same functionality by providing...
Tags: aikimark@..., click event, command button, design, gui, Microsoft Visual Basic 6.0, mouse, programming, standardization, ui, user interface, vb, visual basic
Discussion threads 2006-01-06
Oracle PL/SQL Developer's Workbook: Triggers
A trigger is a block of code (whether in PL/SQL, Java, or C) that fires, or executes, in response to a specific event. A trigger executes implicitly in response to an event, such as an update to a table. A procedure executes explicitly at the request of a user (or...
Tags: Developer, Procedure, Oracle Corp., Trigger, Programming Languages, C/C++, Databases, Software Development, Software/Web Development, Enterprise Software, Software, Data Management
Book chapters 2000-05-01
VB6 Tip: Give users more options by generating an auto-OK dialog box
With some programs, it may be desirable to let them rununattended. But what if you want to give the user the option of changingprogram defaults, or letting the program run on its own using the defaults? One way to do this is to use what I call auto-OK dialog boxes.As...
Tags: dialog box, event procedure, Microsoft Visual Basic 6.0, Peter Aitken, TimeLeft, Timer
Technical articles 2004-11-12
Policy & Procedure Manager (exe)
Professional Policy and Procedure Manual software is designed to organize and create, review, and view policy and procedure documents. There is a great demand for an electronic policy manual that suits the efficiency, competency, and regulatory needs of any business. The Policy and Procedure Manager addresses all those needs. Version...
Tags: Policy, PolicyTech, Tools & Techniques, Management
Software downloads 2008-02-20
Inteli Event (exe)
Event Management Software for Wedding Planners, Party Planners, and event coordinators needing an all in one solution to manage, direct, and plan events. There is badge and list print outs to save time for the overwhelming event management scenarios. Used by event planners for over the past 7 years. Inteli...
Tags: Event
Software downloads 2006-08-28
  • << Previous
  • page 1 of 1
  • Next >>


TechProGuild's Internet Usage Policy
Numerous studies indicate personal Internet use at work is the leading cause of lost productivity in the workplace. In addition, personal use of the I ...
Buy Now
Quick Guide: 802.11g Wireless Networking
This Quick Guide examines critical technical and management details to review before a deployment and presents important information on transmission, ...
Buy Now

All-in-One Printers