Date format with DBUtils

TomDuncan

Active Member
Licensed User
Longtime User
Hi all,

I am using DBUtils to fill a listview

DateTime.DateFormat = "dd/MM/yyyy" 'set for Display
S= "SELECT [InvNbr] || ' ' || [DspName] || ' ' || InvDate FROM Invoice"

Dim PatInv As List
DBUtils.ExecuteListView(SQL1,S,Null,0,lvInv,False)
lvInv.SingleLineLayout.Label.TextSize=14

However the date comes out as "yyyy-MM-dd"
How can I change this?

Tom :sign0104:
 
Top