Search found 946 matches

by Richard Chidiak
Wed Mar 05, 2014 7:13 am
Forum: FiveWin for Harbour/xHarbour
Topic: error appear with last harbour
Replies: 5
Views: 889

Re: error appear with last harbour

Patrick

Did you add png.lib to you rmake file ?

Richard
by Richard Chidiak
Mon Feb 24, 2014 7:00 am
Forum: FiveWin for Harbour/xHarbour
Topic: bLDClickData
Replies: 10
Views: 1622

Re: bLDClickData

Try

oBrw:aCols[6]:bRClickData instead

Hth

Richard
by Richard Chidiak
Sat Feb 22, 2014 1:56 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How To Display checkon.bmp
Replies: 4
Views: 978

Re: How To Display checkon.bmp

Acwoo if pass = "Y" replace image with .t. else replace image with .f. endif assuming you change the definition to IMAGE L 0 Then oBrw:oCol("image"):SetCheck( {"CHECKON.BMP", "CHECKOFF.BMP" }, .F. ) Specify the correct location for the bmps Hth Richard
by Richard Chidiak
Thu Feb 20, 2014 9:04 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Creating XBrowse from a resource
Replies: 14
Views: 2266

Re: Creating XBrowse from a resource

James Xbrowse has a very powerful feature with the column syntax this is a sample REDEFINE XBROWSE oBrw ID 201 OF ODLG ; COLUMNS "CLI","NOM","RUE","POSTAL","VILLE","TEL","TEL2","TEL3","NOMFAC","EMAIL"...
by Richard Chidiak
Thu Feb 20, 2014 9:00 pm
Forum: FiveWin for Harbour/xHarbour
Topic: off for some days
Replies: 73
Views: 9377

Re: off for some days

Antonio

Please accept my sincere condoleances.

Best regards

Richard
by Richard Chidiak
Tue Feb 18, 2014 3:49 pm
Forum: FiveWin for Harbour/xHarbour
Topic: SAMPSIX.PRG (in samples folder)
Replies: 9
Views: 1786

Re: SAMPSIX.PRG (in samples folder)

Did you add hbsix.lib from xharbour if you are using xharbour or harbour ?

I think this is what you are missing

It is in the \lib folder of xharbour or harbour depending on what you use

Hth

Richard
by Richard Chidiak
Mon Feb 17, 2014 9:49 pm
Forum: FiveWin for Harbour/xHarbour
Topic: folder question
Replies: 2
Views: 499

Re: folder question

If zprmpts and zdlgs are tables so you will have to appoint zprmpts[x] and zdlgs[x], no? I want them to be dynamically loaded at run time, so they may be different from one user to another. Basically i would do ,; REDEFINE FOLDER oFld ID 201 OF oDlg ; PROMPTS zprmpts[1],zprmpts[2],zprmpts[3]; DIALOG...
by Richard Chidiak
Mon Feb 17, 2014 9:31 pm
Forum: FiveWin for Harbour/xHarbour
Topic: folder question
Replies: 2
Views: 499

folder question

Hello I wan to dynamically load prompt and dialogs for a folder, using dialog and resources. The ideal will be something like REDEFINE FOLDER oFld ID 201 OF oDlg PROMPTS zprmpts DIALOGS zdlgs ADJUST where zprmpts and zdlgs are tables containing the prompts and dialogs. This does not work and errors ...
by Richard Chidiak
Sat Feb 08, 2014 9:12 am
Forum: FiveWin for Harbour/xHarbour
Topic: off for some days
Replies: 73
Views: 9377

Re: off for some days

My sympathies Antonio.

My best regards to you and your family.

Richard
by Richard Chidiak
Sat Feb 08, 2014 7:11 am
Forum: FiveWin for Harbour/xHarbour
Topic: Trying to Migrate Harbour
Replies: 3
Views: 784

Re: Trying to Migrate Harbour

try this

#ifndef __XHARBOUR__
FUNCTION DbSkipper( n ) ; RETURN __DbSkipper( n )
FUNCTION DbPack() ; RETURN __DbPack()
FUNCTION DbZap() ; RETURN hb_DbZap()
FUNCTION CurDrive( x ) ; RETURN hb_CurDrive( x )
#EndIf

Hth

Richard
by Richard Chidiak
Thu Jan 02, 2014 9:35 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Concatenate two fields in one xBrowse Column
Replies: 8
Views: 2246

Re: Concatenate two fields in one xBrowse Column

Rick Maybe the version , nevertheless you can do it in another way by calling a function in the columns definition instead of { || STARTDATE+ENDINGDATE } { || FUNC1() } .... STATIC FUNCTION FUNC1() RETURN STARTDATE + ENDINGDATE This will work as i use it since very long time, after you may format wi...
by Richard Chidiak
Thu Jan 02, 2014 7:07 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Concatenate two fields in one xBrowse Column
Replies: 8
Views: 2246

Re: Concatenate two fields in one xBrowse Column

Rick

remove the quotes

{ || STARTDATE+ENDINGDATE }

Richard
by Richard Chidiak
Thu Jan 02, 2014 5:48 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Concatenate two fields in one xBrowse Column
Replies: 8
Views: 2246

Re: Concatenate two fields in one xBrowse Column

Rick You can do it, a code block for column definition { || STARTDATE+ ENDINGDATE } then you will need to adapt the display of the column something like olbxc:aCols[2]:bPaintText := { |oCol, hDC, cText, aCoord| DrawText( oCol, hDC, cText, aCoord, TRANS, olbxc ) } // trans is a variable passed by my ...
by Richard Chidiak
Thu Dec 19, 2013 7:27 pm
Forum: FiveWin for Harbour/xHarbour
Topic: IsZip() Unresolved external
Replies: 10
Views: 2360

Re: IsZip() Unresolved external

Uwe

To be honest , i do not like Hb_zip or Hb_unzip, Not very friendly and easy to use.

I highly prefer and use 7z as line command , it works just great. I have been using it since several years , only one file to ship 7z.exe , no libs or whatever....

Hth

Richard
by Richard Chidiak
Tue Dec 17, 2013 3:45 pm
Forum: FiveWin for Harbour/xHarbour
Topic: IsZip() Unresolved external
Replies: 10
Views: 2360

Re: IsZip() Unresolved external

You need to link the hbzip libraries

for harbour for example you need minizip.lib hbziparc.lib hbmzip.lib

for xharbour hpzip.lib zlib.lib

Hth

Richard