Community
Hi guys!!!
I need to create an iproperties using the following line of code
result as a image
This code use
AA = 67890
Dim oCPropName As String = InputBox("B", "Property Name", AA)
The cleanest is just using ilogic API with two input boxes, one for the Name and the other the value
See article here for ilogic iproperties.
Dim oCPropName As String = InputBox("B", "Property Name", "B")
Dim oCPropValue As String = InputBox("B", "PropertyValue", "67890")
iProperties.Value("Custom", oCPropName) = oCPropValue
HI @A.Acheson
I want input only 1 value Property Name
PropertyValue = AA
When I input Property Name The message will show the value of AA
AA = 67890 Dim oCPropName As String = InputBox("B", "Property Name", AA) iProperties.Value("Custom", oCPropName) = oCPropValue
You will still need two input boxes one for the name and one for the value. You won't be able to write and read at the same time.
Can't find what you're looking for? Ask the community or share your knowledge.