Search found 330 matches: harvey

Return to advanced search

Re: TGRAPH Repopulate

Harvey, there is still a lot to do. Because of over 40 possible settings, I'm working on a painter, to change and test everything at runtime. There is a project-file, to save all values. http://www.pflegeplus.com/IMAGES/Graph20.jpg ...
by ukoenig
Mon Jun 30, 2014 6:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGRAPH Repopulate
Replies: 30
Views: 9940

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})  ...
by Richard Chidiak
Wed May 28, 2014 6:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Printing an oBrw array
Replies: 10
Views: 1310

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 6:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Printing an oBrw array
Replies: 10
Views: 1310

Re: Printing an oBrw array

Harvey

try it this way

DATA menucon3[nField][01]

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

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" ...
by Richard Chidiak
Tue May 27, 2014 4:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Printing an oBrw array
Replies: 10
Views: 1310

Re: Row color when mouse over

Harvey DESCRIPTION You have to change the name of your xbrowse column in which you want your foot in the message. regards    // Descripcion -> change with you column    oB:Descripcion:cFooter := Str(nMouseRow ,4 )+" ...
by cnavarro
Tue Aug 06, 2013 8:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Row color when mouse over
Replies: 24
Views: 4641

Re: need to change a field type on the fly

Harvey Here is what I would do .. 1 - open the database in question .. test for valtype( table->field) If valtype returns "N" .. then write a routine like this .. ( psudo code ) A) Open your old table excl .. ...
by Rick Lipkin
Thu Oct 18, 2012 8:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: need to change a field type on the fly
Replies: 10
Views: 1394

Re: Harbour : benefit's ?

Harvey,

I use Harbour and the gcc compiler included in Apple's Xcode package.

Apple recently released a Xcode command line tools (gcc is included) that avoid the need to install the entire Xcode package:
http://developer.apple.com/downloads
by Antonio Linares
Tue Oct 02, 2012 12:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour : benefit's ?
Replies: 10
Views: 1981

Re: Program could harm you computer

Harvey,

You need to sign the exe with a certificate.

Try to search signtool.exe

Best regards
by lucasdebeltran
Tue Mar 27, 2012 7:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Program could harm you computer
Replies: 2
Views: 727

Re: Windows 8

Harvey,

FWH + Harbour run fine on Windows 8. Already tested :-)
by Antonio Linares
Sun Mar 04, 2012 8:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Windows 8
Replies: 4
Views: 930

Re: problem coloring group box

Harvey,

Please provide a small PRg to reproduce it, and some screenshots if possible, thanks

What FWH version are you using ?
by Antonio Linares
Thu Feb 02, 2012 11:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem coloring group box
Replies: 1
Views: 550

Re: Need copy of the following functions if any body has them.

Harvey,

Also change this line:

return CallWindowProc( ( FARPROC ) GetProp( hWnd, "__FWTRANS" ), hWnd, uMsg, wParam, lParam );

with:

return CallWindowProc( ( WNDPROC ) GetProp( hWnd, "__FWTRANS" ), hWnd, uMsg, wParam, lParam );
by Antonio Linares
Mon Dec 19, 2011 5:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Need copy of the following functions if any body has them.
Replies: 9
Views: 3527

Re: Need copy of the following functions if any body has them.

Harvey,

Please replace this line:

LONG lResult = CallWindowProc( ( FARPROC ) GetProp( hWnd, "__FWTRANS" ), hWnd, uMsg, wParam, lParam );

with:

LONG lResult = CallWindowProc( ( WNDPROC ) GetProp( hWnd, "__FWTRANS" ), hWnd, uMsg, wParam, lParam );
by Antonio Linares
Mon Dec 19, 2011 9:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Need copy of the following functions if any body has them.
Replies: 9
Views: 3527

Re: Need copy of the following functions if any body has them.

Harvey, Please copy this code at the bottom of your main PRG: #pragma BEGINDUMP#include <windows.h>#include <hbapi.h>void WindowBoxBlack( HDC hDC, RECT * pRect );LRESULT static CALLBACK LabelProc( HWND ...
by Antonio Linares
Sun Dec 18, 2011 9:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Need copy of the following functions if any body has them.
Replies: 9
Views: 3527

Re: Need copy of the following functions if any body has them.

Harvey, Here you have FixSays() source code: void WindowBoxBlack( HDC hDC, RECT * pRect );LRESULT static CALLBACK LabelProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam ){   if( uMsg ...
by Antonio Linares
Sun Dec 18, 2011 6:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Need copy of the following functions if any body has them.
Replies: 9
Views: 3527
Next

Return to advanced search