sundarraj v


{ City } chennai
< Country > india
* Profession * software engineer
User No # 3168
Total Questions Posted # 0
Total Answers Posted # 2

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 5
Users Marked my Answers as Wrong # 3
Questions / { sundarraj v }
Questions Answers Category Views Company eMail




Answers / { sundarraj v }

Question { 4305 }

How does the following statements work?

On Error Goto Err_Handler


Answer

On Error Goto Err_Hanler_A
When error occuring on any line inside the
function/subroutine, it skip the execution of other lines
and will goto the label Err_Hanler_A.

Is This Answer Correct ?    2 Yes 0 No

Question { 8686 }

How to set a shortcut key for label?


Answer

Go to the label control properties, set the property
UseMnemonic as TRUE. Put the '&' (Ampersand) symbol before
any of the letter in the label caption, that will be your
shortcut key for label control.

Example: &Add (where the A is a shortcut key for the label,
you use the shortcut by pressing Alt + A for this label)

Is This Answer Correct ?    3 Yes 3 No