Search found 946 matches

by Richard Chidiak
Thu Jul 03, 2014 4:40 am
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 11.05 to FWH 14.06 Upgrade Issues
Replies: 24
Views: 5121

Re: FWH 11.05 to FWH 14.06 Upgrade Issues

Joe

Try adding this at the top of your prg

#ifdef __HARBOUR__
#ifndef __XHARBOUR__
#define Super ::super
#endif
#endif


Hth

Richard
by Richard Chidiak
Tue Jun 17, 2014 5:08 am
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin in Tablet
Replies: 11
Views: 2270

Re: Fivewin in Tablet

Antonio

I have uploaded an enhanced version of touch exe , browse is included , sub-menus also

Richard
by Richard Chidiak
Mon Jun 16, 2014 3:32 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin in Tablet
Replies: 11
Views: 2270

Re: Fivewin in Tablet

Marco To answer your question, yes a fivewin exe can run on a tablet "as it is" with respect to screen handling . A windows tablet is based on windows 8. I have uploaded touch.exe so you can download it and see what you can do with "metro" interface that Antonio introduced a coup...
by Richard Chidiak
Mon Jun 16, 2014 1:38 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin in Tablet
Replies: 11
Views: 2270

Re: Fivewin in Tablet

Marco

What exactly do you need to know ?

i think as a first step, take a look at touch.prg from fwh\samples. This will show some samples of what can be done.

i had enhanced this program, if you are missing something let me know.

I have a running application on win8 tablets

Hth

Richard
by Richard Chidiak
Fri Jun 13, 2014 7:24 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to receive events from objects?
Replies: 32
Views: 8125

Re: How to receive events from objects?

Jose Yes the bonevent block traps all the events Now for Harbour , Antonio has extended the activex class, i am using thactivex (this is a sample below) ::oCalex := thActiveX():New( ::oPanelCalex, "Codejock.CalendarControl.15.0.2" ) with object ::oCalex :bOnEvent = { | event, aParms, pPara...
by Richard Chidiak
Fri Jun 13, 2014 3:22 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Strange difference between Harbour and xHarbour - Solved
Replies: 2
Views: 468

Re: Strange difference between Harbour and xHarbour Builder

Michel

at the beginning of your application

REQUEST HB_CODEPAGE_FRWIN

set( _SET_CODEPAGE, "FRWIN" )

Frwin is for me, set the correct codepage harbour needs it

Hth

Richard
by Richard Chidiak
Fri Jun 13, 2014 4:26 am
Forum: FiveWin for Harbour/xHarbour
Topic: How to receive events from objects?
Replies: 32
Views: 8125

Re: How to receive events from objects?

Jose This is how i do with codejock, maybe it can help with object ::oCalex      :bOnEvent = { | event, aParms, pParams | ::handleEvent( Event, aParms, pParams ) } METHOD handleEvent( Event, aParms, pParams ) CLASS TPLANCJ LOCAL opParms,oRes,oTime,cId,OEVENT if valType( Event ) == "C"    D...
by Richard Chidiak
Mon Jun 02, 2014 6:57 am
Forum: FiveWin for Harbour/xHarbour
Topic: Makefile for FWH64 and Visual Studio 2013 with multiple PRGs
Replies: 4
Views: 1551

Re: Makefile for FWH64 and Visual Studio 2013 with multiple PRGs

Antonio

Just curiosity,

Can an application built with visual studio 2013 run on xp ?

I know Microsoft has stopped support for Xp but we still ahve a lot of customers using it.

Is the application mandatory 64 bits or can we still build 32 bits ?

Thanks for help
by Richard Chidiak
Wed May 28, 2014 6:18 am
Forum: FiveWin for Harbour/xHarbour
Topic: Printing an oBrw array
Replies: 10
Views: 1500

Re: Printing an oBrw array

Harvey there are several errors in your report definitions i have made some changes and it compiles and run ok the code is below Richard menucon3 := {} AADD(MENUCON3,{"hag1",1,100}) AADD(MENUCON3,{"hag2",2,200}) AADD(MENUCON3,{"hag3",3,300})    DEFINE FONT oFont4 NAME &...
by Richard Chidiak
Tue May 27, 2014 6:53 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Printing an oBrw array
Replies: 10
Views: 1500

Re: Printing an oBrw array

Harvey

i am refering to this in particular

DATA menucon3[nField],[01]

should be replaced with DATA menucon3[nField][01]

The comma in the data syntax will specify a second data value

Richard
by Richard Chidiak
Tue May 27, 2014 5:46 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Printing an oBrw array
Replies: 10
Views: 1500

Re: Printing an oBrw array

Harvey

try it this way

DATA menucon3[nField][01]

Richard
by Richard Chidiak
Tue May 27, 2014 4:27 am
Forum: FiveWin for Harbour/xHarbour
Topic: Printing an oBrw array
Replies: 10
Views: 1500

Re: Printing an oBrw array

Harvey this is a sample , Hth Richard REPORT oREPORT ; ...... COLUMN TITLE "Date Visite" ; DATA TVISU[nField][02]; FONT 2 ; GRID 2 COLUMN TITLE "Heure" ; DATA TVISU[nField][03]; GRID 2 COLUMN TITLE "Ouvrier" ; DATA TVISU[nField][06]; SIZE 20 ; FONT 1 ; GRID 1 END REPORT...
by Richard Chidiak
Thu May 08, 2014 4:14 am
Forum: FiveWin for Harbour/xHarbour
Topic: Force xBrowse sort.
Replies: 3
Views: 561

Re: Force xBrowse sort.

oBrw:aCols[3 ]:SETORDeR()

Hth

Richard
by Richard Chidiak
Mon May 05, 2014 2:54 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FW 13.09 xBrowse hangs
Replies: 3
Views: 899

Re: FW 13.09 xBrowse hangs

You shoud try it this way COLUMNS {"Number", "Name", {TRANSFORM(Phone, "@R (999) 999-9999")} } or a much better way COLUMNS {"Number", "Name", "Phone"} IF oBrw:oCol("phone") # nil // we refer to the header name not the column name...
by Richard Chidiak
Fri Mar 14, 2014 1:29 pm
Forum: FiveWin for Harbour/xHarbour
Topic: UESTUDIO FIND function/procedure in the files directory
Replies: 3
Views: 562

Re: UESTUDIO FIND function/procedure in the files directory

Yes you can do it

Select labels, Globals and then functions

All functions are displayed in alphabetic order, if you click on the function you need, it will take you the the program automatically

Hth

Richard