Message 1 of 4
iLogic rule, message box when a member is placed thats missing 'Part Number'

Not applicable
05-22-2019
04:51 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm trying to add an ilogic rule (in library part) that will show message upon placement in assembly that the designated size does not have a company issued 'Part Number', if that iProperty field is empty... to either choos another size or add a P/N.
I can run it in the ipart file, but unable to trigger and get the message when placing it in an assembly.
Is this even possible?
this is what i have so far:
Dim ChesterPN As String ChesterPN = iProperties.Value("Project", "Part Number") currentLength = Len(ChesterPN) If currentLength < 1 Then MessageBox.Show("No Chester P/N For Designated Size, Please Add If Available.") Else End If