Hello
I created a class module, and initialize it works well.
In this class module called from a layout, and then make the call to initialize from a layout button executes the instruction FOLLOWING the call.
All we believe in design time in this class module works well.
I created a class module, and initialize it works well.
In this class module called from a layout, and then make the call to initialize from a layout button executes the instruction FOLLOWING the call.
All we believe in design time in this class module works well.
B4X:
Sub Button1_Click
BGSExplo.Initialize (Activity, "/", ". Jpg,. Png,. Gif", True, "Select Folder", "OK",
"Cancel", False)
Log ("out of BGSExplo.Initialize")
[/ code]
I created a module called within the class. And it created a loop so that does not leave.
The problem is that the "Item Click" of a listview not working.
[code]
Public Sub Show () As Boolean
WaitUntilOK = true
Do While WaitUntilOK
DoEvents
Loop
[/ code]
I have a button that put the WaitUntilOK = false and exits the loop, the click of the button works, but the ListView1_ItemClick no.
Any idea?
thanks
Jesus