Hi all,
I have a problem with AnotherDatePicker similar to others in this forum . The execution of
Works perfectly in the debug mode but not in the Release modes. I have tried earlier suggestions of using the CallSubDelayed but it has not made any difference – Debug version works but Release doesn’t.
It seems that in the Release versions the program goes into an endless loop in the AnotherDatePicker sub-
The waitForAddToActivity never gets a false value implying that the control is not yet ready/available. The AnotherDatePicker1.Show is called with a button press with CallSubDelayed well after the app has started in a large size program. I have tried DoEvents in addition to CallSubDelayed but no success.
I am using B4A v6.3 and AnotherDatePicker version 2.0
Appreciate any suggestions.
I have a problem with AnotherDatePicker similar to others in this forum . The execution of
B4X:
AnotherDatePicker1.Show
It seems that in the Release versions the program goes into an endless loop in the AnotherDatePicker sub-
B4X:
Public Sub Show
If waitForAddToActivity Then
'not ready yey
CallSubDelayed(Me, "show")
Return
End If
holder.SetVisibleAnimated(500, True)
DrawDays
DoEvents
End Sub
I am using B4A v6.3 and AnotherDatePicker version 2.0
Appreciate any suggestions.