Zoes
Mechanical
- Sep 30, 2011
- 46
Code:
Dim initial As String = "enter name"
Public Sub dialogShown_cb()
Try
string0.GetProperties.SetString("Value", initial)
string01.GetProperties.SetString("Value", "")
End Try
End Sub
Public Function apply_cb() As Integer
Try
Dim UserInputString As String
UserInputString = string0.GetProperties.GetString(initial)
string01.GetProperties.SetString("Value", UserInputString)
End Try
End Function
Error: Invalid property name for the block... .GetString(String propertyName)at appy_cb()...
Anybody knows what's wrong with the above code? I'm guessing is something simple but I can't see what it is!
Dim initial As String = "enter name"
Public Sub dialogShown_cb()
Try
string0.GetProperties.SetString("Value", initial)
string01.GetProperties.SetString("Value", "")
End Try
End Sub
Public Function apply_cb() As Integer
Try
Dim UserInputString As String
UserInputString = string0.GetProperties.GetString(initial)
string01.GetProperties.SetString("Value", UserInputString)
End Try
End Function
Error: Invalid property name for the block... .GetString(String propertyName)at appy_cb()...
Anybody knows what's wrong with the above code? I'm guessing is something simple but I can't see what it is!