fwh Dec 17 vs Fwh Nov 18 RESOLVED!!

fwh Dec 17 vs Fwh Nov 18 RESOLVED!!

Postby Silvio.Falconi » Mon Dec 24, 2018 12:05 pm

I have almost all my procedures changed because compiling with the last fwh the ccordinate have all been modified

for example this procedure is a calculator and this presented with the version fwh 12.17

Image

I could resizemaximized the cal with a tablet , if you want I can send the exe file


and instead with the last version fwh 11.12 the buttons coordinates are thrown wrong

Image

Why it is possible this? what have you changed?
Last edited by Silvio.Falconi on Mon Dec 24, 2018 8:36 pm, edited 1 time in total.
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
User avatar
Silvio.Falconi
 
Posts: 6834
Joined: Thu Oct 18, 2012 7:17 pm

Re: fwh Dec 17 vs Fwh Nov 18

Postby Antonio Linares » Mon Dec 24, 2018 12:07 pm

Silvio,

Please provide a simple PRG to test, thanks
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41366
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: fwh Dec 17 vs Fwh Nov 18

Postby Silvio.Falconi » Mon Dec 24, 2018 12:26 pm

I use two Franklin Demont functions I found on this forum

the test to call TabletCalc

Code: Select all  Expand view


#include "fivewin.ch"
#include "Constant.ch"

#DEFINE TRUE   .T.
#DEFINE FALSE  .F.




STATIC aCoordinates := {} , FV
STATIC StartWidth , StartHeight
STATIC CurrentHeight
STATIC oSayMemory



Function test()
   Local oDlg,oGet
    Local nGet:= 0
   define dialog oDlg
   @10,2 get oGet var  nGet SIZE 100,18 PIXEL;
          PICTURE "999,999,999,999" RIGHT  ACTION  TabletCalc( nGet, oGet)
   activate dialog oDlg CENTER
   return nil


the tabletCalc

Code: Select all  Expand view
function TabletCalc( nNumber, oControl)
   Local oDialogo,lSalida
   Local aBtnCalc[30]
   Local oCursor :=TCursor():New(,'HAND')
   Local cNumber
   Local oNumber
   Local nValue      := 0
   Local cOperacion  := ""
   Local n,nRow:=18,nCol:=2
   Local nValueMemory:=0
   Local nBtnSizeW:=30
   Local nBtnSizeH:=20
   Local oFontGet := TFont():New( "Segoe UI",  0, ( 18 ), .f., .t. )
   Local oFontDlg := TFont():New( "Segoe UI",  0, ( 18 ), .f., .t. )
   Local cTitle         := "Tablet Calc"
   Local nBottom   := 19
   Local nRight    := 5
   Local nWidth :=  Max( nRight * DLG_CHARPIX_W, 155 )
   Local nHeight := nBottom * DLG_CHARPIX_H
   local nMINWidth := 328
   local nMINHeight := 370
   local nMAXWidth := GETSYSMETRICS( 0 ) //risoluzione orizzontale
   local nMAXHeight := GETSYSMETRICS( 1 ) //risoluzione verticale
   local cPastMsg       := fwstring("&Copia")   //"&Paste"
   local cAbortMsg      := fwstring("&Annulla") //"&Cancel"

    CurrentHeight := 0   //not modify
    FV := 1              //not modify

    lSalida  := FALSE

    DEFAULT nNumber      := 0

    cNumber           := Ltrim( Str( nNumber, 20 ) )

    DEFINE DIALOG oDialogo SIZE nWidth, nHeight;
                     TRANSPARENT PIXEL;
                      TITLE cTitle FONT oFontDlg
    oDialogo:nStyle := nOr( WS_OVERLAPPED,WS_THICKFRAME,WS_SYSMENU,WS_MAXIMIZEBOX,   0 )

   @  nRow,nCol  BTNBMP aBtnCalc[26]  PROMPT "MC" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal("MC", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory ))  NOBORDER
   nCol+=nBtnSizeW+1
   @  nRow,nCol  BTNBMP aBtnCalc[27]  PROMPT "MR" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal("MR", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory ))  NOBORDER
   nCol+=nBtnSizeW+1
   @  nRow,nCol  BTNBMP aBtnCalc[28]  PROMPT "MS" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal("MS", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory ))  NOBORDER
   nCol+=nBtnSizeW+1
   @  nRow,nCol  BTNBMP aBtnCalc[29]  PROMPT "M+" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal("M+", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory ))  NOBORDER
   nCol+=nBtnSizeW+1
   @  nRow,nCol  BTNBMP aBtnCalc[30]  PROMPT "M-" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal("M-", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory ))  NOBORDER
   nRow+=nBtnSizeH+1
   nCol:=2

   @  nRow,nCol  BTNBMP aBtnCalc[1]  PROMPT "Back" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal("<", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory ))  NOBORDER
   nCol+=nBtnSizeW+1
   @  nRow,nCol  BTNBMP aBtnCalc[2]  PROMPT "CE" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal("CE", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory ))    NOBORDER
   nCol+=nBtnSizeW+1
   @  nRow,nCol  BTNBMP aBtnCalc[3]  PROMPT "C" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal("C", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory ))    NOBORDER
   nCol+=nBtnSizeW+1
   @  nRow,nCol  BTNBMP aBtnCalc[4]  PROMPT "+/-" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal("S", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory ))  NOBORDER
    nCol+=nBtnSizeW+1
   @  nRow,nCol  BTNBMP aBtnCalc[5] PROMPT "Sqrt" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal("R", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory ))  NOBORDER
   nRow+=nBtnSizeH+1
   nCol:=2
   @   nRow,nCol    BTNBMP aBtnCalc[6]  PROMPT "7" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal("7", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory ))  NOBORDER
   nCol+=nBtnSizeW+1
   @   nRow,nCol     BTNBMP aBtnCalc[7]  PROMPT "8" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal("8", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory )) NOBORDER
   nCol+=nBtnSizeW+1
   @  nRow,nCol  BTNBMP aBtnCalc[8]  PROMPT "9" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal("9", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory ))     NOBORDER
   nCol+=nBtnSizeW+1
   @  nRow,nCol  BTNBMP aBtnCalc[9]  PROMPT "/" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION KeyCal("/", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory )       NOBORDER
   nCol+=nBtnSizeW+1
   @  nRow,nCol  BTNBMP aBtnCalc[10]  PROMPT "%" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION KeyCal("%", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory )       NOBORDER
   nRow+=nBtnSizeH+1
   nCol:=2
   @  nRow,nCol  BTNBMP aBtnCalc[11]  PROMPT "4" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal("4", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory ))   NOBORDER
   nCol+=nBtnSizeW+1
   @  nRow,nCol  BTNBMP aBtnCalc[12]  PROMPT "5" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal("5", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory ))  NOBORDER
   nCol+=nBtnSizeW+1
   @  nRow,nCol  BTNBMP aBtnCalc[13]  PROMPT "6" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal("6", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory ))  NOBORDER
   nCol+=nBtnSizeW+1
   @  nRow,nCol  BTNBMP aBtnCalc[14]  PROMPT "*" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION KeyCal("*", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory )    NOBORDER
   nCol+=nBtnSizeW+1
   @  nRow,nCol  BTNBMP aBtnCalc[15]  PROMPT "1/x" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION KeyCal("X", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory )    NOBORDER
   nRow+=nBtnSizeH+1
   nCol:=2
   @  nRow,nCol  BTNBMP aBtnCalc[16]  PROMPT "1" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal("1", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory ))  NOBORDER
   nCol+=nBtnSizeW+1
   @  nRow,nCol  BTNBMP aBtnCalc[17]  PROMPT "2" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal("2", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory ))   NOBORDER
   nCol+=nBtnSizeW+1
   @  nRow,nCol  BTNBMP aBtnCalc[18]  PROMPT "3" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal("3", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory ))   NOBORDER
   nCol+=nBtnSizeW+1
   @  nRow,nCol BTNBMP aBtnCalc[19]  PROMPT "-" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal("-", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory ))   NOBORDER
   nCol+=nBtnSizeW+1
   @  nRow,nCol BTNBMP aBtnCalc[20]  PROMPT "=" SIZE nBtnSizeW,nBtnSizeH+nBtnSizeH+1 OF  oDialogo   PIXEL ACTION (KeyCal("=", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory )) NOBORDER
   nRow+=nBtnSizeH+1
   nCol:=2
   @  nRow,nCol  BTNBMP aBtnCalc[21]  PROMPT "0" SIZE nBtnSizeW+nBtnSizeW+1,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal("0", @cNumber, oNumber, @cOperacion,@nValue,@nValueMemory ))  NOBORDER
   nCol+=nBtnSizeW+nBtnSizeW+2
   @  nRow,nCol  BTNBMP aBtnCalc[22]  PROMPT "," SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal(".", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory )) NOBORDER
   nCol+=nBtnSizeW+1
   @  nRow,nCol BTNBMP aBtnCalc[23]  PROMPT "+" SIZE nBtnSizeW,nBtnSizeH OF  oDialogo   PIXEL ACTION (KeyCal("+", @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory)) NOBORDER
   nRow+=nBtnSizeH+1
   nCol:=2
   @  nRow,nCol  BTNBMP aBtnCalc[24]  PROMPT cPastMsg  SIZE (nBtnSizeW+nBtnSizeW+nBtnSizeW-16),nBtnSizeH OF  oDialogo   PIXEL ACTION (lSalida:=TRUE,oDialogo:End(IDOK))   NOBORDER
   nCol+=nBtnSizeW+nBtnSizeW+nBtnSizeW-10
   @  nRow,nCol  BTNBMP aBtnCalc[25]  PROMPT cAbortMsg SIZE (nBtnSizeW+nBtnSizeW+nBtnSizeW-16),nBtnSizeH OF  oDialogo   PIXEL ACTION (lSalida:=TRUE,oDialogo:End(IDCANCEL ))     NOBORDER
   @ 0.4,0  GET oNumber VAR cNumber   SIZE oDialogo:nWidth-30,15 PIXEL   OF oDialogo FONT oFontGet RIGHT
   @ 2.5,oNumber:nWidth+10  SAY oSayMemory PROMPT space(6)  SIZE 50,15  PIXEL   OF oDialogo FONT oFontGet COLOR CLR_HBLUE

      oDialogo:aMinMaxInfo = { GETSYSMETRICS( 0 ), GETSYSMETRICS( 1 ),;  // xMaxSize,      yMaxSize
                                                              0,  0,;  // xMaxPosition,  yMaxPosition
                                             nMINWidth,  nMINHeight,;  // xMinTrackSize, yMinTrackSize
                                             nMAXWidth, nMAXHeight }

      oDialogo:bKeydown   := { | nKey | KeyCal( nKey, @cNumber, oNumber, @cOperacion, @nValue,@nValueMemory ) }
                      * Rgb(219,225,32)
  AEVAL(  aBtnCalc, {| oBtn |oBtn:nClrText:= CLR_WHITE } )
  AEVAL(  aBtnCalc, {| oBtn |oBtn:nClrPane:=CLR_HGRAY } )
  AEVAL(  aBtnCalc, {| oBtn |oBtn:nLayOut:= 0 } )
  AEVAL(  aBtnCalc, {| oBtn |oBtn:oCursor:= oCursor } )

         aBtnCalc[2]:nClrPane:= CLR_HRED
         aBtnCalc[3]:nClrPane:= CLR_HRED
         aBtnCalc[24]:nClrPane:= CLR_HGREEN
         oDialogo:lHelpIcon:= .F.

      oDialogo:bResized := {|| ( ResizeControlsKey(oDialogo , @aCoordinates ,;
                                 @FV , @StartWidth , @StartHeight , @CurrentHeight), ;
                                 AEVAL(  aBtnCalc, {| oBtn | oBtn:refresh() } )    )}


      ACTIVATE DIALOG oDialogo CENTERED ;
      ON PAINT oNumber:SetFocus()     ;
      ON INIT (oNumber:SelectAll(),       ;
               ResizeControlsKey(oDialogo , @aCoordinates ,;
                                 @FV , @StartWidth , @StartHeight , @CurrentHeight), ;
                                 AEVAL(  aBtnCalc, {| oBtn | oBtn:refresh() } ) )   ;
      VALID  lSalida



      IF lSalida
          IF oDialogo:nresult == IDOK
           IF oControl:CLASSNAME()="TGET"
              TIPVAR:=oControl:VarGet()
              IF VALTYPE(TIPVAR)="N"
                oControl:VarPut(Val( cNumber )  )
              ELSEIF ValType(TIPVAR)="C"
                oControl:VarPut( str(Val( cNumber),10,2) )
              ENDIF
              oControl:Refresh()
           ENDIF
        ELSE
          ENDIF

    AEVAL(  aBtnCalc, {| oBtn | oBtn:End() } )
    aBtnCalc:= NIL
    oCursor:End()
    RELEASE  oFontDlg
    RELEASE  oFontGet
  ENDIF

RETURN NIL
//--------------------------------------------------------------------------------------------------------------//
FUNCTION KeyCal( cKey, cNumber, oNumber, cOperacion, nValue,nValueMemory )
RETURN NIL
//--------------------------------------------------------------------------------------------------------------//


 





Frankin Demont procedures
Code: Select all  Expand view
 STATIC FUNCTION ResizeControlsKey(oWnd , aCoordinates ,FV , StartWidth , StartHeight , CurrentHeight)

/*# ifndef TEST
STATIC aCoordinates := {} , FV
STATIC StartWidth , StartHeight
STATIC CurrentHeight
# endif
*/

LOCAL i , aHlp[5] ,  F := Hash()
LOCAL oCtl
LOCAL NewFontH  , oFont , cFaceName , lNewFont := .F.
*# ifndef TEST
IF EMPTY( aCoordinates )
  FOR EACH oCtl IN oWnd:aControls
    AADD(aCoordinates , Array(5))
    i := Hb_EnumIndex()
    aCoordinates[i,1] := oCtl:nTop
    aCoordinates[i,2] := oCtl:nLeft
    aCoordinates[i,3] := oCtl:nWidth()
    aCoordinates[i,4] := oCtl:nHeight()
    aCoordinates[i,5] := oCtl:oFont:nHeight
  NEXT
  StartWidth  :=oWnd:nWidth()
  StartHeight := oWnd:nHeight()
   FV := 1
   lFont := .F.
   CurrentHeight := 0
ENDIF
*# else
*IF aCoordinates == nil
*   SetValues(@aCoordinates , @StartWidth , @StartHeight , oWnd)
*END
*# endif
F["H"] := oWnd:nWidth()/StartWidth       // horizontal
F["V"] := oWnd:nHeight()/StartHeight     // vertical
IF F["V"] <> FV
  IF ABS(ROUND(( F["V"] - 1 )*100 ,2 ) - CurrentHeight) > 5// 10
    lNewFont := .T.
     IF F["V"] > FV
       CurrentHeight += 5//10
    ELSEIF F["V"] < FV
      CurrentHeight -= 5//10
     END
  ENDIF
ENDIF
FOR EACH oCtl IN oWnd:aControls
  i := Hb_EnumIndex()
  aHlp[1] := aCoordinates[i,1]*F["V"]              // nTop
  aHlp[2] := aCoordinates[i,2]*F["H"]              // nLeft
  aHlp[3] := aCoordinates[i,3]*F["H"]              // nWidth
  aHlp[4] := aCoordinates[i,4]*F["V"]              // nHeight
   oCtl:Move( aHlp[1] , aHlp[2] , aHlp[3] , aHlp[4] , .T. )
   IF lNewFont
    NewFontH := ROUND(aCoordinates[i,5]*F["V"],0)
      oFont := oCtl:oFont
      cFaceName := oFont:cFaceName
      oFont:end()
      oFont :=  TFont():New( cFaceName,  0, (  -NewFontH ), .f., .t. )
      oCtl:SetFont(ofont)
      oCtl:refresh()
  END
NEXT
FV := F["V"]
RETURN
//------------------------------------------------------------------------------------------------------------------//
 PROC SetValues(aCoordinates , StartWidth , StartHeight , oWnd)
//------------------------------------------------------------------------------------------------------------------//

LOCAL oCtl , i
aCoordinates := {}
? "setval"
FOR EACH oCtl IN oWnd:aControls
  AADD(aCoordinates , Array(5))
  i := Hb_EnumIndex()
  aCoordinates[i,1] := oCtl:nTop
  aCoordinates[i,2] := oCtl:nLeft
  aCoordinates[i,3] := oCtl:nWidth()
  aCoordinates[i,4] := oCtl:nHeight()
  aCoordinates[i,5] := oCtl:oFont:nHeight
NEXT
StartWidth  := oWnd:nWidth()
StartHeight := oWnd:nHeight()
RETURN


 



I hace calculator, keyboard and other function ( utility) on my application use these function of Demont it resize all controls and also the text into, now it's no possible why ?
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
User avatar
Silvio.Falconi
 
Posts: 6834
Joined: Thu Oct 18, 2012 7:17 pm

Re: fwh Dec 17 vs Fwh Nov 18

Postby nageswaragunupudi » Mon Dec 24, 2018 3:12 pm

Compilation:
1) Every function should return a value. The function ResizeControlsKey(...) does not return any value. Please correct this. I modified it as RETURN NIL for testing.
2) Variables TIPVAR in TabletCalc and lFont in ResizeControlsKey(...) are not declared. You may do well to add these variables in the declaration section.

Execution:
I built the program with both 18.11 and 17.12 on my PC. They both look the same and behave the same.

FWH 17.12

Image

FWH 18.11

Image

Note: Clicking on the keys has no effect and so the calculator does not work. Probably you have some more functions to include. That is upto you.

I could not understand what is your problem.
Regards

G. N. Rao.
Hyderabad, India
User avatar
nageswaragunupudi
 
Posts: 10295
Joined: Sun Nov 19, 2006 5:22 am
Location: India

Re: fwh Dec 17 vs Fwh Nov 18

Postby Silvio.Falconi » Mon Dec 24, 2018 3:40 pm

Dear Nages,

Compilation
I not create the ResizeControlsKey functions, Franklin Demont is the author


Execution:
>I built the program with both 18.11 and 17.12 on my PC. They both look the same and behave the same.
>I could not understand what is your problem.


the problem is when you resize the dialog arriving to maximized the dialog

before on my tablet I had this result

Image



now with the current version it not run , probable someone change something


>Note: Clicking on the keys has no effect and so the calculator does not work. Probably you have some more functions to include. That is upto you.
yes of course I not published the the KeyCal function
see on your mail pls
Last edited by Silvio.Falconi on Mon Dec 24, 2018 3:46 pm, edited 2 times in total.
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
User avatar
Silvio.Falconi
 
Posts: 6834
Joined: Thu Oct 18, 2012 7:17 pm

Re: fwh Dec 17 vs Fwh Nov 18

Postby nageswaragunupudi » Mon Dec 24, 2018 3:45 pm

We will check that also.
Regards

G. N. Rao.
Hyderabad, India
User avatar
nageswaragunupudi
 
Posts: 10295
Joined: Sun Nov 19, 2006 5:22 am
Location: India

Re: fwh Dec 17 vs Fwh Nov 18

Postby Silvio.Falconi » Mon Dec 24, 2018 3:48 pm

New game.

look for the differences

fwh 12.17

Image

fwh 11.18

Image
Last edited by Silvio.Falconi on Mon Dec 24, 2018 4:23 pm, edited 1 time in total.
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
User avatar
Silvio.Falconi
 
Posts: 6834
Joined: Thu Oct 18, 2012 7:17 pm

Re: fwh Dec 17 vs Fwh Nov 18

Postby nageswaragunupudi » Mon Dec 24, 2018 6:22 pm

Thank you Mr. Silvio

The bug is fixed now.
We sent you revised btnbmp.prg
Please check.
Regards

G. N. Rao.
Hyderabad, India
User avatar
nageswaragunupudi
 
Posts: 10295
Joined: Sun Nov 19, 2006 5:22 am
Location: India

Re: fwh Dec 17 vs Fwh Nov 18

Postby Silvio.Falconi » Mon Dec 24, 2018 6:28 pm

with this fix ...run ok..good
Do you remember to insert this fix to next release ?
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
User avatar
Silvio.Falconi
 
Posts: 6834
Joined: Thu Oct 18, 2012 7:17 pm


Return to FiveWin for Harbour/xHarbour

Who is online

Users browsing this forum: karinha and 28 guests