Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.

Hi @tucker.smithAKU2X 

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