Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Navigating around vb 6

Status
Not open for further replies.

123ASP

MIS
Nov 2, 2002
239
US
hi, I am writing a couple of functions and subs in a project. It is time consuming for me to remember where to find specific function or sub. I know there is a better way to toggle b/w two or more procedures. Can anyone tell me how I can do this feature.
thanks
Al
 
Couple of way. In the object browser (F2) you can select the procedure and then right click and select "View Definition" or you can right click in the code plane on the procedures call and do the same thing. After you goto the definition you can also right click and select the "last postion" to return to the previous code. If you choose to battle wits with the witless be prepared to lose.
[machinegun][hammer]

[cheers]
 

CTRL + Tab will toggle between views. Meaning if you have a form open in code view and form view doing this will toggle back and forth. Now open a module and you will start toggling between all three.

CTRL Up/Down Arrow will place the cursor at the first line within the procedure.

Or are you talking about the two buttons at the lower left of the code window. The Left one will show only one procedure at a time while the right one will show all the procedures one after another.

Any of these help? Good Luck

 
On the Edit Toolbar use the bookmark flag. You can set a bookmark in each function that your working on ,then simply click the goto next bookmark or previous bookmark buttons.
 
Thank you all for your assistance. It really makes my life easier.

Al
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top