-
a)Is there any function in VB that you can use to zoom in a text part. Like if you got a textform with a lot of text and want to zoom in a part of it by moving the mouse over it, is that possible?
b) How do you make a right-clicked menu in VB? Like you rightclick in your program and want a menu to come up then?
Osborn -q
-
the answer to b) is easy:
create the menu in the normal way, but make it invisible.
in the right-click event, put this:
Code:
Popupmenu MyMenuName
-
1) Well you could change the Font size. :)
2) Dunno. :(