Library tutorials & articles
Magnifying The Desktop With Visual Basic
Introduction
This article was contributed by Jason Brimblecombe from devArticles.com. If you're after free programming eBooks then please click here.
A very handy application that's included with the Windows operating system is the magnifier, which you can find in the accessibility folder. Basically, the windows magnifier is designed for computer users who suffer from any form of vision impairment. It acts as a magnifying lens that enlarges a section of the screen when the mouse moves over it. I often use the windows magnifier myself, but I have found a few areas of the program that need a little improvement, that's why I decided to write my own magnifier.
In this article I will show you how easy it is to write your very own magnifier using Visual Basic 6. We will be making use of several Windows API calls however, so you should read my article about Windows API calls first.
Related articles
Related discussion
-
Run-time error '91'
by converter2009 (1 replies)
-
VB6 Runtime error 381 subsript out of range Error
by Uncle (2 replies)
-
passing and reading parameters from using Shell
by jigartoliya (0 replies)
-
Convert C++ code to VB6
by mawcot (4 replies)
-
listbox scrollbar
by Dennijr (10 replies)
Related podcasts
-
Christian Beauclair
14 mai 2008 (�mission #0074) ::.Christian Beauclair: Stratégies de migration VB6 vers .NET Nous discutons avec Christian Beauclair des stratégies de migration VB6 vers .NET. Entre autres, nous discutons comment utiliser le "VB 6 Code Advisor" et le "Interop Forms Toolkit" pour ajouter la puiss...
i am solving similar kind of problem...
But i doing that in c++. well i found something in msdn. Using GetCursorInfo() one can get the cursor info. and then one can use the drawIcon() to draw. but i am not sure how one can get the icon from the cursor handle...
If you found any solutions, pls reply to this msg.
thanks
vinod
plz help me how to capture screen include cursor picture
Great but plz help me how to capture screen include cursor picture
I learn't alot about using API by trying this code.
Pretty cool. works great!
This thread is for discussions of Magnifying The Desktop With Visual Basic.