Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
HI
I created short i-logic to take some shortcut from Custome Iproperties, on Boolean option with Yes/No input text on text box the result is always came out with Yes, Cant change to No.
Below the i-logic form.
Dim propertyName3 As String = "Laser Cut" Dim propertyValue3 As Boolean = True InputBox ("Laser Cut:", "Set Property", "Yes") Try prop = customPropertySet.Item(propertyName3) Catch customPropertySet.Add(propertyValue3, propertyName3) End Try If propertyValue3 = True Then iProperties.Value("Custom", propertyName3) = True Else If propertyValue3 = False Then iProperties.Value("Custom", propertyName3) = False End If
When i input No in inputbox it always come up with Yes
Rgds
Didin
Solved! Go to Solution.