05-09-2023
03:22 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
05-09-2023
03:22 PM
Just tested this so either change the variable name or remove the variable like below.
Remove String variable
MessageBox.Show(machineNumber & machineName & ".stl", "Title")
Change String variable name
Dim smachineName As String = machineName Dim smachineNumber As String = machineNumber Dim sworkCenterNumber As String = workCenterNumber MessageBox.Show(smachineNumber & smachineName & ".stl", "Title")
If this solved a problem, please click (accept) as solution.
Or if this helped you, please, click (like)
Regards
Alan
Or if this helped you, please, click (like)
Regards
Alan