When attempting to read date information from an MS Access dB into a VB5 app, cannot display date using long format (i.e., January 13,1999). NOTE: Verified that Access dB table and associated query both use long date format. Also, verified that associated query when executed within Access displays long date format. The following VB5 code is used to open and retrieve data from the Access dB:
Set qdfTmp = gdbDataStore.QueryDefs("qrySemDate")
Set rstTmp = qdfTmp.OpenRecordset(dbOpenSnapshot)
If Not rstTmp.EOF Then
rstTmp.MoveLast
rstTmp.MoveFirst

intRecIndex = 1
Do Until rstTmp.EOF
grdSchedule.AddItem CStr(intRecIndex)
& Chr(9) & rstTmp!semDate
intRecIndex = intRecIndex + 1
rstTmp.MoveNext
Loop
End If

P.S. - Any and all assistance in resolving this problem would be greatly appreciated !!!