Hello, I have the following situation ...
I have a Sub in a module. that checks if the connection to the internet ..
I call this a sub ACTIVY .. I need to capture the value of the variable Status_Conexao and play within a label such as ACTIVY do it?
sorry my english
I have a Sub in a module. that checks if the connection to the internet ..
B4X:
If T.DataConnection = False Then
T.TurnDataConnectionOn 'Enables Conexao Data GPRS / EDGE / HSPA
Error = False
While the T.DataConnection = False
A = (DateTime.Now - HoraIncio) / (DateTime.TicksPerSecond)
Status_Conexao = "Enabling Connection Provider (" & Num & ")"
If Num> = TimeOut Then
Error = True
Exit
end If
DoEvents
Loop
I call this a sub ACTIVY .. I need to capture the value of the variable Status_Conexao and play within a label such as ACTIVY do it?
sorry my english