Message 1 of 2
Convert VBA "Select Case " to Python
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Can anybody help?
I have the following VBA code....
Select Case PartType
Case "Flame Cut Profile"
PartGroup = "FC-"
Case "Flash Ground Profile"
PartGroup = "FG-"
Case "HD Plasma Cut Profile"
PartGroup = "HD-"
Case "Laser Cut Profile"
PartGroup = "LC-"
Case "Water Jet Profile"
PartGroup = "WJ-"
End Select
Can anybody tell me what the Python version code will be?
Many thanks in advance!
IsoCAM