i got this VFP DBF but how to show it in BROWSE

it have "more" Field Type than Cl*pper ... how to handle it

Moderator: Rathinagiri
Error BASE/1099 Argument error STR Parameter : [ 1] = T t"2019-01-15 22:44:28.999"
Error BASE/1100 Argument error TRIM Parameter : [ 1] = T t"2019-01-15 22:44:28.999"
where are those Snapshot come fromsalamandra wrote: ↑Sat Sep 19, 2020 1:02 am I think there it is not problem to browse...
I use VFP to create and modify DBF files and have not any problem to browse or other operations
Code: Select all
hb_TSToStr()
hb_StrToTS()
Code: Select all
hb_TSToUTC()
Code: Select all
elseIf cTempType == 'N' .OR. cTempType == 'I' // add "I"nteger
...
elseIf cTempType == 'T'
aadd ( aTemp , hb_TSToStr ( &cTemp, .T. ) )
elseIf cTempType == '@'
aadd ( aTemp , TransForm ( RTrim( hb_ValToStr ( &cTemp ) ) , dim [j] ) )
Else
aadd ( aTemp , 'Nil' )
EndIf
Code: Select all
523 case T == "TEXT" .or. T == "EDIT" .or. T == "CHARMASKTEXT" .or. T == "RICHEDIT"
if t == "CHARMASKTEXT"
...
Else
if valtype ( value ) == 'T' .or. valtype ( value ) == '@'
SetWindowText ( c , hb_TSToStr (value) )
ELSE
SetWindowText ( c , RTRIM(value) )
ENDIF
endif
where are those Snapshot come from
Ok, but what about HMG
About all the Field Types supported by Harbour (old and new ones), please take a look at this post: https://groups.google.com/g/harbour-users/c/e9OSB9RU4dU at harbour-users.AUGE_OHR wrote: ↑Sat Sep 19, 2020 8:20 pm hi,Ok, but what about HMG![]()
i understand that Cl*pper only have Type "CMNDL" but harbour does support "more" Type-
a i saw MiniGUI Extended Version seems to support "more" Types.
i have try to modify H_BROWSE.PRG and h_controlmisc.prg and it work![]()
---
when go to https://github.com/HMG-Official/HMG it seems i can upload new Files![]()
HMG_Github.JPG
but i don´t want to upload new files before asking what is the rule![]()