Hello.
I am using the "InputTemplate" Module for simple user inputs when needed.
I have just noticed that the sub handlng then result of the input does not get executed if you use "release ubfuscated".
It works in debug and release mode.
Any suggestions?
I am using the "InputTemplate" Module for simple user inputs when needed.
I have just noticed that the sub handlng then result of the input does not get executed if you use "release ubfuscated".
It works in debug and release mode.
B4X:
Sub askForPno
It.Initialize(Me,Activity," Project No:","GetPno")
It.Show
End Sub
Sub GetPno(no As Object)
Log("running")
ForProjectNo=no
If ForProjectNo <>"" Then
GetProjectStatus
Else
Msgbox("Please provide Project No","Error!")
askForPno
End If
End Sub
Any suggestions?