Search found 249 matches

by Jack
Sun Apr 07, 2019 8:32 am
Forum: FiveWin for Harbour/xHarbour
Topic: DOS accounting system to TWeb
Replies: 45
Views: 7069

Re: DOS accounting system to TWeb

Hi Otto,
Great job .
1) Is it possible to use TWEB with MS SQL database ?
2) Could we say that TWEB is a php code generator ?

Thanks ,

Philippe
by Jack
Tue Feb 26, 2019 12:50 pm
Forum: FiveWin for Harbour/xHarbour
Topic: 2nd Harbour Magazine programmers conference
Replies: 5
Views: 1403

Re: 2nd Harbour Magazine programmers conference

Hi,
Is it English speeking ?

Thanks
by Jack
Fri Feb 15, 2019 4:45 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Faster way then append from SDF
Replies: 11
Views: 1333

Re: Faster way then append from SDF

Hi, Did you try this ? oTxt:=TTxtFile():New("yourtxtfile.txt") wnbl:=oTxt:recCount() && number of line if wnbl>0 for wbcl = 1 to wnbl aadd(vtxt,oTxt:ReadLine()) oTxt:skip() next endif oTxt:end() * Try it . Philippe from Belgium
by Jack
Fri Feb 15, 2019 4:41 pm
Forum: FiveWin for Harbour/xHarbour
Topic: TXT Unix To Dos
Replies: 4
Views: 785

Re: TXT Unix To Dos

Hi,
I think that unix use only chr(10) and not chr(13)+chr(10) .
Replace CHR(10) with CHR(13)+CHR(10) .

Try it,

Philippe
by Jack
Thu Feb 14, 2019 7:25 am
Forum: FiveWin for Harbour/xHarbour
Topic: ODBC
Replies: 1
Views: 426

ODBC

Hi, I use ODBC to communicate with a filemaker database . When i sent a wrong SQL instruction (oDbc:Query() , fivewin give an error dialog box . If i hit enter, the program continue . In place of the dialog box, i 'd like to write the error in a txt file and bypass the dialog box . How to ? oODBCK :...
by Jack
Tue Feb 05, 2019 7:11 am
Forum: FiveWin for Harbour/xHarbour
Topic: Size of Dialog from resource
Replies: 1
Views: 406

Re: Size of Dialog from resource

No idea about this ?

I am only looking for horizontal and vertical scroll of all the dialog .

Thanks

Philippe
by Jack
Fri Feb 01, 2019 2:07 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Size of Dialog from resource
Replies: 1
Views: 406

Size of Dialog from resource

Hi,
I have a dialog from a RC file .
How can i adapt the size of the dialog depending of the screen size of the computer . (17 inch 22 inch ...)
Is it possible to scroll in a dialog from RC file .

Thanks

Philippe
by Jack
Fri Jan 11, 2019 10:25 am
Forum: FiveWin for Harbour/xHarbour
Topic: 2nd FWH + [x]Harbour 2019 international conference in Sillia
Replies: 2
Views: 698

2nd FWH + [x]Harbour 2019 international conference in Sillia

Hi,
Could we have more info about this ?
An idea of the date ?

Thanks ,

Philippe
by Jack
Wed Dec 19, 2018 11:52 am
Forum: FiveWin for Harbour/xHarbour
Topic: OutLook 2003 and 2010 Classes not working in Win 10 - Solved
Replies: 4
Views: 941

Re: OutLook 2003 and 2010 Classes not working in Win 10 - More

Hi,
Wher could we find samples of this class ?
Thanks
Philippe
by Jack
Tue Nov 20, 2018 3:58 pm
Forum: FiveWin for Harbour/xHarbour
Topic: COPY FILE MS SQL Server
Replies: 3
Views: 950

Re: COPY FILE MS SQL Server

Thanks for this first anser .

It seem that tables are locate on the same DATABASE but how to do it with different databases that may be on different MS SQL Server .

I want to copy a table of product for one SERVER to another one .

Thanks

Philippe
by Jack
Tue Nov 20, 2018 11:01 am
Forum: FiveWin for Harbour/xHarbour
Topic: COPY FILE MS SQL Server
Replies: 3
Views: 950

COPY FILE MS SQL Server

Hi,
What is the best instruction in other to copy one TABLE from one MS SQL database to another on another MS SQL SERVER ?

Thanks for your samples .

Philippe
by Jack
Mon Oct 22, 2018 1:55 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Automatic xbrowse refresh
Replies: 5
Views: 1230

Re: Automatic xbrowse refresh

Hi,
When i start the xbrowe, i get the time() in a static / global var

When i use the on change, ik get the time in a the same static / global var

In the timer i compre the actual time with the static/gloval var and if it is too long, i do a frefresh() .

Philippe
by Jack
Sat Oct 20, 2018 4:02 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Automatic xbrowse refresh
Replies: 5
Views: 1230

Re: Automatic xbrowse refresh

You have also setidleactin({||UDF()})

TestIdle.prg
by Jack
Sat Oct 20, 2018 3:57 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Automatic xbrowse refresh
Replies: 5
Views: 1230

Re: Automatic xbrowse refresh

Hi ,

You can look at TIMER

DEFINE TIMER oTmr INTERVAL 6000 ACTION (oLbx:Refresh()) OF oWnd
ACTIVATE TIMER oTmr
by Jack
Thu Oct 18, 2018 2:07 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Select an open excel-sheet
Replies: 13
Views: 2264

Re: Select an open excel-sheet

Greet , perfect,
Philippe