VS VB6 VBA
The section of the tab allows you to customize some general settings:

You can customize:
- The company name to be used for the predefined variable in code templates, exception / error handlers, headers, etc.
- The date format to be used for the predefined variable in code templates, exception / error handlers, headers, etc. The templates can use the format set in the of Windows (Control Panel) or a specific custom format using the following specifiers:
Format Specifier
|
Description
|
Example
|
d
|
The day of the month, from 1 through 31
|
1
|
dd
|
The day of the month, from 01 through 31
|
01
|
ddd
|
The abbreviated name of the day of the week
|
Mon
|
dddd
|
The full name of the day of the week
|
Monday
|
M
|
The month, from 1 through 12
|
6
|
MM
|
The month, from 01 through 12
|
06
|
MMM
|
The abbreviated name of the month
|
Jun
|
MMMM
|
The full name of the month
|
June
|
y
|
The year, from 0 to 99
|
9
|
yy
|
The year, from 00 to 99
|
09
|
yyyy
|
The year as a four-digit number
|
2009
|
/
|
Separator
|
/
|
-
|
Separator
|
-
|
Remarks
- Do not use the format specifiers "m" or "mm" in custom date formats since they refer to the minute of the date-time, not to the month.
|