Search found 42 matches: pat

Return to advanced search

Re: FWH 18.08: Enhancements to strings.prg

... file is found, your program will be * displayed in the language you have chosen via the LANG variable. * * It is also possible to configure search paths and file names, and even to * change language at any moment in the program. * * * * USING XHARBOUR TO PRODUCE THE INTERNATIONAL LIST * ================================================ ...
by carlos vargas
Tue Nov 13, 2018 7:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.10: Enhancements to strings.prg
Replies: 19
Views: 5425

Re: Editor / IDE recommendation please

patdriscoll wrote:Thank you gents. Both excellent choices.

Cheers,

Pat


Pat, If you decide to use FivEdit and find a problem in the installation or its use, do not hesitate to contact me
by cnavarro
Sun Aug 26, 2018 8:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Editor / IDE recommendation please
Replies: 5
Views: 1031

Re: Editor / IDE recommendation please

Thank you gents. Both excellent choices.

Cheers,

Pat
by patdriscoll
Fri Aug 24, 2018 7:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Editor / IDE recommendation please
Replies: 5
Views: 1031

Re: Editor / IDE recommendation please

Pat

Search this forum for FiveEdit .. This is a very good work by Cristobal .. has a very nice IDE, editor and compiler ..

Rick Lipkin
by Rick Lipkin
Wed Aug 22, 2018 9:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Editor / IDE recommendation please
Replies: 5
Views: 1031

Editor / IDE recommendation please

... on a Surface Pro 2017. This has prompted me to reach out and ask what the rest of the Fivewin community is using. Thanks in advance. Cheers, Pat.
by patdriscoll
Wed Aug 22, 2018 8:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Editor / IDE recommendation please
Replies: 5
Views: 1031

Multithread issue

... hence I get an error when I stop the thread. Is multithread supported with harbour? If so, what am I missing, please? Thanks in anticipation. Pat. MAK file follows: #Borland make sample (c) FiveTech Software 2005-2009 HBDIR=c:\harbour BCDIR=c:\bcc7 FWDIR=c:\fwh17 #change these paths as needed ...
by patdriscoll
Tue Jul 17, 2018 3:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multithread issue
Replies: 2
Views: 803

Re: (OT Harbour) Xml - Búsqueda bestia

prueba asi local cSrcFileName := "Archivo.xml" local cNodeName := "Precio" local cNodeString := '' local cNodeBegTag := "<Precio" local cNodeEndTag := "</Precio>" local cSrcString cSrcString := HB_MEMOREAD( cSrcFileName ) cNodeString:= HL_ExtrcSIS( cS...
by jbrita
Mon Jun 19, 2017 12:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: (OT Harbour) Xml - Búsqueda bestia
Replies: 4
Views: 857

Re: How to define a GROUP-color on xBrw-cells ?

Mr. Rao, thank You very much, but it seems there is still something wrong. I added some more bills to test the color-change. Number 0004 is painted white. http://www.pflegeplus.com/IMAGES/Groupcolor2.jpg aColorPairs := { { CLR_BLACK, CLR_WHITE}, { CLR_WHITE, CLR_BLUE } } nColorPairs ...
by ukoenig
Mon Mar 20, 2017 12:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to define a GROUP-color on xBrw-cells ?
Replies: 4
Views: 746

Re: How to define a GROUP-color on xBrw-cells ?

aColorPairs := { { CLR_BLACK, CLR_WHITE}, { CLR_WHITE, CLR_BLUE }, ........... }
nColorPairs := Len( aColorPairs )

oCol:bClrStd := { || aColorPairs[ VAL( STEUER->PAT_NUMMER ) % nColorPairs + 1 ] }
by nageswaragunupudi
Mon Mar 20, 2017 12:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to define a GROUP-color on xBrw-cells ?
Replies: 4
Views: 746

How to define a GROUP-color on xBrw-cells ?

Hello, I want to define GROUP-colors on the first xBrowse-cell field ("STEUER")->PAT_NUMMER to sliver the bills of a customer. sample : 3 bills on customer 1 // color-change 4 bills on customer 2 // color change 1 bill on customer 3 http://www.pflegeplus.com/IMAGES/Groupcolo...
by ukoenig
Mon Mar 20, 2017 12:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to define a GROUP-color on xBrw-cells ?
Replies: 4
Views: 746

Re: Maybe OT: OrdCreate with Unique Clausule

hidroxid, I'm using it in some complicated situations a sample The index : cUnique := cRMonat + "P" // cRmonat can be January - Dezember 12 different DBF ORDCREATE( ,cUnique, "UPPER(PAT_NNAME + PAT_VNAME)", ; {|| UPPER(PAT_NNAME + PAT_VNAME) } , .T. ) // .T. = UNIQUE ORDCREATE( ,...
by ukoenig
Thu Apr 28, 2016 8:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Maybe OT: OrdCreate with Unique Clausule
Replies: 3
Views: 590

Re: Xbrowse a speed problem using SCOPE ?

James, The functions PAT_GET() and FUNCTION V_GET(cMonat) are only loading some fields to be shown in folder-pages nothing special. and are neede to do some calculations on button < SAVE > FUNCTION PAT_GET() aDatP[1] := ("KUNDE")->ANREDE aDatP[2] := ("KUNDE")->NAME1 a...
by ukoenig
Fri Feb 26, 2016 8:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse a speed problem using SCOPE ?
Replies: 30
Views: 9041

Re: Xbrowse a speed problem using SCOPE ?

Uwe,

You can also try commenting out the PAT_GET() and V_GET() calls to see if the problem goes away.

James
by James Bott
Fri Feb 26, 2016 7:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse a speed problem using SCOPE ?
Replies: 30
Views: 9041

Re: Xbrowse a speed problem using SCOPE ?

Uwe, OK, with databases that small I don't think the problem has anything to do with scopes. It appears you are losing memory somewhere. I would try commenting out the set_Scope() and trying it again. This will eliminate scopes as an issue if the same thing happens. Can I see the PAT_GET() and V_GET...
by James Bott
Fri Feb 26, 2016 6:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse a speed problem using SCOPE ?
Replies: 30
Views: 9041

Xbrowse a speed problem using SCOPE ?

Hello, I'm using SCOPE to show the CUSTOMERS and the related SERVICES I noticed, after reaching round about 50 % scrolling through the CUSTOMER-dbf the speed slows down. I tested SYSREFRESH(), but no difference A row of SERVICES shows 38 fields As well the FOLDER-page is updated // CUSTOMERS REDEFIN...
by ukoenig
Fri Feb 26, 2016 11:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse a speed problem using SCOPE ?
Replies: 30
Views: 9041
Next

Return to advanced search