Hello,
perhaps someone can help me.
I create a ListView named LV_events:
LV_events.AddSingleLine2(TEMPname, TEMPuserid & TEMPadress).
All Strings have fixed lenghts.
On a click I want to extract TEMPuserid and TEMPadress from the Value
Sub LV_events_ItemClick (Position As Int, Value As Object)
Dim getstring As String
getstring = "" & Value
but after that, getstring is not a string. I want to use sf.left(getstring ...) to extract parts of the 'value as object'
Thank you
perhaps someone can help me.
I create a ListView named LV_events:
LV_events.AddSingleLine2(TEMPname, TEMPuserid & TEMPadress).
All Strings have fixed lenghts.
On a click I want to extract TEMPuserid and TEMPadress from the Value
Sub LV_events_ItemClick (Position As Int, Value As Object)
Dim getstring As String
getstring = "" & Value
but after that, getstring is not a string. I want to use sf.left(getstring ...) to extract parts of the 'value as object'
Thank you