Search found 5 matches
- Thu Jan 12, 2017 10:04 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: National characters
- Replies: 3
- Views: 1523
Re: National characters
Or, back to the clipper days ... I wrote convert program something like this STATIC FUNCTION Convert_CP1250(kaj) //*** Big letters kaj = IF("¬" $ kaj,STRTRAN(kaj,"¬","Č"),kaj) kaj = if("¦" $ kaj,STRTRAN(kaj,"¦","Ž"),kaj) kaj = if("ć&qu...
- Thu Jan 12, 2017 8:46 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: National characters
- Replies: 3
- Views: 1523
National characters
Hello to all i am new in Fivewin and I'm currently working on transfer old program written in clipper (and xbase++) to new environment ... and xbrowse. All my DBF are in CP852 (for compatibility reason!). In HMG (harbour minigui) I simpy add REQUEST HB_LANG_SL852 REQUEST HB_CODEPAGE_SL852 ... and fu...
- Thu Apr 02, 2009 7:25 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Compare two hours
- Replies: 7
- Views: 1157
Re: Compare two hours
I use this function: Function DRazlika(dStartDate,cStartTime,dEndDate,cEndTime) Return (((dEndDate - dStartDate) * 86400) - TimeToSec(cStartTime)) + TimeToSec(cEndTime) ... and in PRG code is somethnig like this //*** End_Time, Start_Time are string ("12:15", "13:15") d...
- Wed Apr 01, 2009 6:33 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: XSD to XML
- Replies: 3
- Views: 711
Re: XSD to XML
Try a free Microsoft XML NOTEPAD 2007
http://msdn.microsoft.com/en-us/library/aa905339.aspx
Inport your XSD file -> and in XSL OUTPUT tab you see xml (txt) code ...
Zupan Miran
http://msdn.microsoft.com/en-us/library/aa905339.aspx
Inport your XSD file -> and in XSL OUTPUT tab you see xml (txt) code ...
Zupan Miran
- Wed Apr 01, 2009 5:23 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: XSD to XML
- Replies: 3
- Views: 711
Re: XSD to XML
Hello, first sory for my english.. Slovenian tax office also wants all reports in XML files - definition is in XSD file. So, I try some XML editors like XML Notepad, ALTOVA XML editor, but we have "special" characters in our languige (čćžđš...), so I have several errors when I try to impor...