ControlsExDevice library

agraham

Expert
Licensed User
Longtime User
Version 1.91 now posted that properly fixes the bugs noted above. Owing to the perils of cut and paste there were in fact two typos that got propagated through the code but I only noticed and fixed one of them in version 1.91 and was in too much hurry to test what was a simple(!) fix :sign0161:.
 

micro

Well-Known Member
Licensed User
Longtime User
Hi agraham,
why the DateTimePicker object can not be created on a panel?
No problem for MonthCalendar object.
Can you kindly solve the problem? :sign0085:

Best Regards
 

micro

Well-Known Member
Licensed User
Longtime User
how to refresh the view time with the current time on DateTimePicker (using DateTimePicker.Value)?

Thanks

.....ok, I solved.
DateTimePicker.Value = Now
 
Last edited:

micro

Well-Known Member
Licensed User
Longtime User
Hi Agraham
B4X:
lv.New1("frmmain", 5, 5, 220, 240)
lv.SetLargeImageSize(48, 48)
lv.FontSize = 12
lv.AddLargeImage(lv.Image(AppPath & "\Images\1.png"))
lv.AddLargeImage(lv.Image(AppPath & "\Images\2.png"))
lv.AddLargeImage(lv.Image(AppPath & "\Images\3.png"))
lv.AddItemWithImage("Aaaaa", 0)
lv.AddItemWithImage("Bbbbb", 1)
lv.AddItemWithImage("Ccccc", 2)
lv.View = 3

Why is displayed only text and not image?
The images are displayed only with View = 0 and 4
Thanks
 
Top