iLOGIC Parameters
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi I am playing with iLOGIC, but need to learn a lot.
I used some of Rob’c code:
Stock = iProperties.Value("Project", "Stock Number")
If Stock = "" Then
Stock = InputBox("Please Enter the iProperty Stock Number", "iProperties Check - Title Filled Out?", Stock)
iProperties.Value("Project", "Stock Number") = Stock
End If
Desc = iProperties.Value("Project", "Description")
If Desc = "" Then
Desc = InputBox("Please Enter the iProperty Description", "iProperties Check - Title Filled Out?", Description)
iProperties.Value("Project", "Description") = Desc
End If
It works well, but I need to modify it to List the current value (if any) and allow me to change it or accept the current entry.
Reason, I do a lot of “Save copy as” and need to change the values, if so desired.
Thanks
Reg.