iOS Question ProgressDialogShow and CSBuilder

MarcoRome

Expert
Licensed User
Longtime User
Hi All.
is it possible to insert within the progressdialogshow of the csbuilder text ?
I noticed that in the case where i have a long sentence it doesn't wrap but it replaces the characters after a search length with some "..."
example "Wait Loading 567 cities of the regions", with "Wait Loading 567 cities ..."
it is possible to solve the problem ?
Thank you
Marco
 

hatzisn

Well-Known Member
Licensed User
Longtime User
+1. I also have the same question.
 
Upvote 0

Erel

B4X founder
Staff member
Licensed User
Longtime User
B4X:
   ShowProgress(hud, "Please wait", $"s dklfjsd lkfsdf
sdfjlksdfjklsdf jwflkejf lkwejf lkwej flkwje flkwj eflkwj eflkwje flkwef j fwkljef jlwkefj lkwejf lwkefj
sdfsdjfklsdfkljsd
sdfjksldfsdflskd"$)
   
End Sub

Sub ShowProgress (h As HUD, Title As String, Detail As String)
   h.ProgressDialogShow(Title)
   Dim no As NativeObject = h
   no.GetField("progress").SetField("detailsLabelText",Detail)
End Sub
 
Upvote 0
Top