FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Error Base/1004 Class: 'Numeric' has no exported method: LFO
Posts: 170
Joined: Sat Aug 07, 2010 11:36 PM
Error Base/1004 Class: 'Numeric' has no exported method: LFO
Posted: Mon Nov 08, 2010 07:04 PM

Tengo el siguiente código:

Procedure prueba()
local testvar
@ 1, 50 prompt 'Menu Item 1' message 'Menu Message 1'
@ 2, 50 prompt 'Menu Item 2' message 'Menu Message 2'
@ 3, 50 prompt 'Menu Item 3' message 'Menu Message 3'
@ 4, 50 prompt 'Menu Item 4' message 'Menu Message 4'
menu to testvar
@ 7, 10 say 'Press F8 to recurse into MENU TO'
@ 9, 50 say 'Your Choice = ' + str( testvar, 1 )
Return

Al llegar a linea "menu to testvar" da el siguiente error:

Error Base/1004 Class: 'Numeric' has no exported method: LFOCUSED"

Se agradece cualquier ayuda. :oops:

Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: Error Base/1004 Class: 'Numeric' has no exported method: LFO
Posted: Tue Nov 09, 2010 07:56 AM

You can't use MENU TO command as it is a CUI command and is not supported by Fivewin. Use MENU or MENU ... POPUP command instead (look at the samples).

EMG

Posts: 170
Joined: Sat Aug 07, 2010 11:36 PM
Re: Error Base/1004 Class: 'Numeric' has no exported method: LFO
Posted: Tue Nov 09, 2010 07:46 PM
Gracias Enrico... ya encontre el error y estaba entre el teclado y la silla.

Muchas gracias...

Enrico Maria Giordano wrote:You can't use MENU TO command as it is a CUI command and is not supported by Fivewin. Use MENU or MENU ... POPUP command instead (look at the samples).

EMG

Continue the discussion