iOS Question CSBuilder getting '<b4icsbuilder ' when appending images

Angel Garcia

Member
Licensed User
Hello Everyone,
Maybe this is a silly question, I'm new in B4i and i'm translating a long project from B4A to B4i,
I'm debuging on an iPhone and i'm getting weird codes when trying to append a single image to a csBuilder and showing it in a label object
I'm using this post information: https://www.b4x.com/android/forum/threads/csbuilder-size-appendimage.87211/#post-552019
I always get: <b4icsbuilder..., instead of the proper image.
I'm building csbuilder like this:

cs:
    Dim cs1 as Csbuilder
    cs1.Initialize
    CallSub3(Starter,"AppendImage",cs1,LoadBitmapResize(File.DirAssets,"google-logo-9827.png",35dip,35dip,True))
    cs1.PopAll
    Label8.Text=cs1

Many thanks all for your guidance
Regards!
 

Andrew (Digitwell)

Well-Known Member
Licensed User
Longtime User
You need to assign cs strings to the AttributedText field.

see
 
Upvote 0
Top