Page 2 of 3

Re: OT: new FWH ECR released

Posted: Wed May 26, 2010 4:15 am
by dutch
Dear Forse,

I've used xHarbour.com but the problem is FWH updated version will be effect with xHarbour.com (recompile everytime) but I use to compile TSButton with xCC.exe also. You can find this topic in the forum or ask Manuel (TSButton) or Richard, he use xHarbour.com.

Regards,
Dutch

Re: OT: new FWH ECR released

Posted: Wed May 26, 2010 8:04 am
by frose
Dear Dutch,

tried it once more with your tips and solved it :-)

I've to add

Code: Select all

INCLUDEFOLDERS = C:\FWH\include;
in my xBuilder project, that's all.

Re: OT: new FWH ECR released

Posted: Thu May 27, 2010 11:54 am
by MdaSolution
Dutch,
where I can found the dbf of your sample test ?

Why not create together a class from this test ?

Re: OT: new FWH ECR released

Posted: Fri May 28, 2010 7:33 pm
by dutch

Re: OT: new FWH ECR released

Posted: Mon Aug 09, 2010 5:35 pm
by Dorneles
hello dutch,

Is it possible you send me or post the structure
this file.

OPENFILE('CCROOO','ROO',3)
OPENFILE('EZFOL','FOL2',1)
OPENFILE('CCRTBL','INQ',2)

Thanks
Dorneles
evaldodc@hotmail.com

Re: OT: new FWH ECR released

Posted: Tue Aug 10, 2010 5:50 am
by dutch
Dear Norneles,

See your email.
Dorneles wrote:hello dutch,

Is it possible you send me or post the structure
this file.

OPENFILE('CCROOO','ROO',3)
OPENFILE('EZFOL','FOL2',1)
OPENFILE('CCRTBL','INQ',2)

Thanks
Dorneles
evaldodc@hotmail.com

Re: OT: new FWH ECR released

Posted: Tue Aug 10, 2010 6:45 am
by Antonio Linares
Otto, Dutch,

You are great masters doing great software :-)

Congratulations :-)

Re: OT: new FWH ECR released

Posted: Wed Aug 11, 2010 5:55 pm
by Rick Lipkin
Dutch

I am very impressed ... I have created a Vehicle reservation system that I wanted to look and feel much like your application..

I used the xbrowse cell painting to block out the reservation .. but your solution is so much more elegant .. I hate to ask, but would you mind sharing the code .. the code you share is just a 'snipit' ?? .. it also references tables and fields..

I would be most grateful if you could share your code .. I am most interested in adapting the reservation grid to my Vehicle reservation module.

Humbly submitted!!

Rick Lipkin
r1.1955@live.com

Re: OT: new FWH ECR released

Posted: Wed Aug 11, 2010 6:32 pm
by James Bott
Otto,
I don’t use any buttons in this case. These are all bitmaps I paint straight away to the window.
Did you make these into a class? I'm sure they would be much easier to code and use if you did.

Regards,
James

Re: OT: new FWH ECR released

Posted: Wed Aug 11, 2010 8:19 pm
by Otto
Dear James,
sure I made a class. I did like you taught me.
I am very thankful for the knowledge about class design and programming you shared.
I use also your TData for database handling and all is working fine.

Best regards,
Otto

Re: OT: new FWH ECR released

Posted: Wed Aug 11, 2010 8:57 pm
by dutch
Dear Rick, James and Otto,

Rick : I'm willing to share it, because I can made it from all of your advice (the forum). I've used (TSbrowse) in previous version but it is not nice (compare with my competitor), because it cannot show guest name across the column.
I used UEStudio6 for the project, you must modify the project to match with your machine or compile it as samples. I make it in a single PRG file.
http://www.sendspace.com/file/ef8c8f

James : I'm not good enough to do it, I try to find this class for a long time ago. It will be good, if who can make it.

Otto : Great, I will learn more and more to understand to make my code to classes.

Regards,
Dutch

Re: OT: new FWH ECR released

Posted: Thu Aug 12, 2010 6:30 pm
by Rick Lipkin
Thanks Dutch .. if I can help you with the barcode .. let me know

Rick Lipkin

Re: OT: new FWH ECR released

Posted: Fri Aug 13, 2010 5:22 pm
by Rick Lipkin
Dutch

I am getting an error with THEME2007 .. perhaps it is because I am using an older version 9.10 ??

Rick Lipkin
r1.1955@live.com

Code: Select all

DEFINE DIALOG oDlgs FROM  0, 0 TO 100,315 TITLE TE('á¼¹Ëéͧ¾Ñ¡','Room Planer') ;
       COLOR CLR_BLACK, ; THEME2007 ; // <-- error here
       PIXEL ;
       FONT MEMVAR->oFont
 

Re: OT: new FWH ECR released

Posted: Sun Aug 15, 2010 12:57 am
by dutch
Rick Lipkin wrote:Dutch

I am getting an error with THEME2007 .. perhaps it is because I am using an older version 9.10 ??

Rick Lipkin
r1.1955@live.com

Code: Select all

DEFINE DIALOG oDlgs FROM  0, 0 TO 100,315 TITLE TE('á¼¹Ëéͧ¾Ñ¡','Room Planer') ;
       COLOR CLR_BLACK, ; THEME2007 ; // <-- error here
       PIXEL ;
       FONT MEMVAR->oFont
 
Dear Rick,

I'm sorry, THEME2007 is my define color for whole program theme. You just define at the beginning of the code

Code: Select all

#define THEME2007 nrgb(200,128,254)

Re: OT: new FWH ECR released

Posted: Sun Aug 15, 2010 4:46 pm
by Rick Lipkin
Dutch

Got it ..

Rick