Computer Science, asked by mayank741426, 5 months ago

What are the rules for the naming of libraries' modules and macro names?​

Answers

Answered by Ҡαηнα
28

Use the following rules when you name procedures, constants, variables, and arguments in a Visual Basic module:

  • You must use a letter as the first character.

  • You can't use a space, period (.), exclamation mark (!), or the characters @, &, $, # in the name.

  • Name can't exceed 255 characters in length.

hope it helps ❤️

Answered by vyaskrishna38
5

Use the following rules when you name procedures, constants, variables, and arguments in a Visual Basic module:

1).You must use a letter as the first character.

2).You can't use a space, period (.), exclamation mark (!), or the characters @, &, $, # in the name.

Name can't exceed 255 characters in length.

3).Generally, you shouldn't use any names that are the same as the function, statement, method, and intrinsic constant names used in Visual Basic or by the host application.

Similar questions