Page 1 of 1

Calculator in Get

PostPosted: Tue Aug 22, 2006 6:39 am
by Antonio Linares

PostPosted: Wed Dec 10, 2008 6:55 pm
by Horizon
Hi Antonio,

I am interested in calculator get. Is it in 8.11 or external file? How Can I find it?

Thanks,

Re: Calculator in Get

PostPosted: Thu Dec 11, 2008 8:22 am
by jose_murugosa
Antonio Linares wrote:Developed by Timm Sodtalbers:

http://hyperupload.com/download/02dbcac ... c.zip.html


Antonio, no he podido acceder al link.

PostPosted: Thu Dec 11, 2008 9:06 am
by Antonio Linares
We have contacted Timm Sodtalbers to get that file again.

Hemos contactado con Timm Sodtalbers para conseguir ese fichero de nuevo.

PostPosted: Thu Dec 11, 2008 11:36 am
by jose_murugosa
Antonio Linares wrote:We have contacted Timm Sodtalbers to get that file again.

Hemos contactado con Timm Sodtalbers para conseguir ese fichero de nuevo.


gracias :D

PostPosted: Thu Dec 11, 2008 11:54 am
by Horizon
Thanks

PostPosted: Fri Dec 12, 2008 7:26 am
by Timm Sodtalbers
Hi!

You will find that file here:
www.reportdesigner.info/downloads/GetCalc.zip

PostPosted: Fri Dec 12, 2008 9:07 am
by Antonio Linares
Timm,

Thanks! :-)

We have placed a copy of it in:
www.fivetechsoft.com/files/utilities/getcalc.zip

PostPosted: Fri Dec 12, 2008 10:16 am
by jose_murugosa
Timm Sodtalbers wrote:Hi!

You will find that file here:
www.reportdesigner.info/downloads/GetCalc.zip


Tim,
It is a nice contribution, thanks!!!


Just one thing:

For recent versions of fivewin (tget is modified) you will need to comment this lines or result wil be wrong.
Code: Select all  Expand view
FUNCTION SC_FormulaString( oGet )

............

/*
   IF nLastKey <> 8
      cBuffer := STUFF( cBuffer, oGet:nPos, 0, CHR( nLastKey ) )
   ENDIF
*/

............


Thanks again!! :D

PostPosted: Fri Dec 12, 2008 12:58 pm
by Horizon
Thanks Timm

Re: Calculator in Get

PostPosted: Fri May 23, 2014 2:36 pm
by karinha
Maestro, que error és este?

Code: Select all  Expand view

Application
===========
   Path and name: c:\FWH1306\samples\GETCALC.exe (32 bits)
   Size: 2,438,656 bytes
   Compiler version: xHarbour 1.2.3 Intl. (SimpLex) (Build 20130422)
   FiveWin  Version: FWHX 13.05
   Windows version: 6.1, Build 7601 Service Pack 1

   Time from start: 0 hours 0 mins 0 secs
   Error occurred at: 05/23/14, 11:34:25
   Error description: Error BASE/1004  Class: 'NIL' has no exported method: OGET
   Args:
     [   1] = U  

Stack Calls
===========
   Called from:  => OGET( 0 )
   Called from: GETCALC.prg => SHOWCALCULATOR( 48 )
 


Gracias, saludos.

Re: Calculator in Get

PostPosted: Fri May 23, 2014 4:22 pm
by Antonio Linares
Joao,

Que código hay en esta línea ?

Called from: GETCALC.prg => SHOWCALCULATOR( 48 )

Re: Calculator in Get

PostPosted: Fri May 23, 2014 6:02 pm
by wilsongamboa
LOCAL cBuffer := oCurGet:oGet:Buffer

saludos


Wilson

Re: Calculator in Get

PostPosted: Fri May 23, 2014 6:20 pm
by Antonio Linares
Una posible solución seria (a falta de saber porque ese valor llega nil):

LOCAL cBuffer := If( oCurGet != nil, oCurGet:oGet:Buffer, "" ) // ó nil, según se necesite

Re: Calculator in Get

PostPosted: Mon May 26, 2014 2:10 pm
by karinha
Antonio Linares wrote:Una posible solución seria (a falta de saber porque ese valor llega nil):

LOCAL cBuffer := If( oCurGet != nil, oCurGet:oGet:Buffer, "" ) // ó nil, según se necesite


Maestro, también no funciona.

Resuelto asi:

viewtopic.php?f=6&t=28497

Gracias, salu2.