07-01-2021
04:20 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
07-01-2021
04:20 PM
There was some spaces in the Names you were using "UNIT NUMBER" "PART NUMBER" just like parameter names you cannot have spaces.
Also
myparams = Part Number.Split("-")
Should Be
myparams = SALE_ORDER_.Split("-")
Working:
Dim SALE_ORDER_ As String SALE_ORDER_ = iProperties.Value("Project", "Part Number") myparams = SALE_ORDER_.Split("-") SALE_ORDER_ = myparams(0)'123456 UNIT_NUMBER = myparams(1)'01 PART_NUMBER = myparams(2)'01 MessageBox.Show(SALE_ORDER_, "Title") MessageBox.Show(UNIT_NUMBER, "Title") MessageBox.Show(PART_NUMBER, "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