41 lines
1.0 KiB
Markdown
41 lines
1.0 KiB
Markdown
|
|
# Command Processor Startup Form
|
|
|
|
A Visual Basic form that handles program startup and network drive validation.
|
|
|
|
## Form Elements
|
|
|
|
### Buttons
|
|
- **Start Button** - Allows immediate program start or auto-starts after 30 second countdown
|
|
- **Cancel Button** - Cancels the startup process
|
|
|
|
### Labels
|
|
- Network drive requirement notices
|
|
- Information about required mapped drives:
|
|
- C:\Work\ directory
|
|
- Network paths to Manitowoc file systems
|
|
- HAL network path
|
|
|
|
### Timer
|
|
- 30 second countdown timer
|
|
- Updates button text and form caption
|
|
- Auto-starts main form when countdown completes
|
|
|
|
## Key Functions
|
|
|
|
### Form_Load
|
|
- Sets initial form caption with version
|
|
- Configures network drive paths:
|
|
- NETDRV = "\\fryfs001v.manitowocfs.com"
|
|
- NETDRAW = "\\fryfs001v.manitowocfs.com\drawings"
|
|
- NETHAL = "\\qhal"
|
|
|
|
### Timer1_Timer
|
|
- Handles countdown functionality
|
|
- Updates UI elements with remaining time
|
|
- Launches main form after 30 seconds
|
|
|
|
### Command Buttons
|
|
- Command1_Click: Launches main form immediately
|
|
- Command2_Click: Exits application
|