Message 1 of 3

Not applicable
03-24-2015
01:13 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I am looking for the iLogic code that would remind me on save if i forgott to populate revision number in Iproperties.(Blank revision property = massage box?)
I would like to implement this rule in my template ( parts and assemblies).
Thanks
Ok guys I have gound the code that working perfect:
'start of iLogic Code----------------------------- 'declare variables 'get the user name from the Inventor Options myName= ThisApplication.GeneralOptions.UserName 'get the iProperty Description Field Revision = iProperties.Value("Project", "Revision Number") 'create a message for the user mymessage = (myname & ", you forgot to fill out the Revision property again.") 'check the iProperty Description Field to see if it is empty If Revision = "" Then 'display a message box MessageBox.Show(mymessage, "Revision Reminder") End If 'end of iLogic Code-----------------------------
Solved! Go to Solution.