Search found 23 matches: achoice

Return to advanced search

Consulta sobre Achoice

Hola a todos...
Tengo un Array que quiero mostrar con un AChoice.
Hay forma de poner un get que me permita ejecutar una función al dar enter se ejecute y recargue el Array que se está mostrando en el Achoice?
Desde ya muchas gracias.
Saludos,
by jrestojeda
Thu Apr 27, 2023 7:28 pm
 
Forum: FiveWin para CA-Clipper
Topic: Consulta sobre Achoice
Replies: 0
Views: 12707

Re: xChoice() works with FWH 19.06?

... */ FUNCTION XChoice( aPrompts, cTitle ) /*by nageswaragunupudi » Mon Aug 19, 2013 8:30 pm You may try using this function in the place of AChoice */ local nSelect := 0 DEFAULT cTitle := "Select" XBROWSER aPrompts TITLE cTitle SELECT ( nSelect := oBrw:nArrayAt ) ; SETUP ( oBrw:lHeader ...
by cnavarro
Fri Aug 16, 2019 10:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xChoice() works with FWH 19.06?
Replies: 1
Views: 590

Re: FWH 18.08: Enhancements to strings.prg

... i18n( "This is a test with a plain string") * * @12,10 SAY i18n( "Select Language: " ) * MakeBox( 12,40, 20, 55 ) * nChoice := Achoice(13, 41, 19, 54, aLanguages,,, ; * Ascan( aLangCodes, { |x| x == HB_I18NGetLanguage() } ) ) * * IF nChoice > 0 .and. nChoice < 4 * HB_I18NSetLanguage( ...
by carlos vargas
Tue Nov 13, 2018 7:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.10: Enhancements to strings.prg
Replies: 19
Views: 5445

Re: funciones de FWH y Harbour en un archivo .txt

... __Run(<cCommand>)->Nil __Zap()->Nil AAdd(<aArray>,<xValue>)->Value Abs(<nExpression>)->nPositive AChoice(<nTop>,<nLeft>,<nBottom>,<nRight>,<acMenuItems>,[<alSelectableItems>|<lSelectableItems>],[<cUserFunction>],[<nFirstItem>],[<nFirstRow>])->nPosition ...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5719

Re: funciones de FWH y Harbour en un archivo .txt

... __objDelMethod __objDerivedFrom __objGetMethodList __objGetValueList __objModInline __objModMethod __objSetValueList __Pack __Run __Zap AAdd Abs AChoice AClone ACopy ACos AddASCII AddMonth ADel ADir ADSBlob2File ADSClearAOF ADSCustomizeAOF AdsDDRemoveTable ADSEvalAOF ADSFile2Blob ADSGetAOF ADSGetAOFnoOpt ...
by carlos vargas
Sat Oct 21, 2017 8:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5719

Re: HBZIP.LIB

Dear Mr.Antonio, I am trying to us xharbour to use "DLLCALL" function. When I compiled 'achoice.prg" in samples folder, there was following message. xHarbour 1.2.3 Intl. (SimpLex) (Build 20150603)Error: Unresolved external '__ltolower_lcid' ...
by kim yong woo
Sat Jul 25, 2015 5:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HBZIP.LIB
Replies: 9
Views: 1836

Re: Harbour-32.dll

EXPORTS HB_FUN_AADD @1 HB_FUN_ABS @2 HB_FUN_ACCELERATO @3 HB_FUN_ACCELERATOR @4 HB_FUN_ACHOICE @5 HB_FUN_ACLONE @6 HB_FUN_ACOPY @7 HB_FUN_ADEL @8 HB_FUN_ADIR @9 HB_FUN_AEVAL @10 HB_FUN_AFIELDS @11 HB_FUN_AFILL @12 HB_FUN_AINS @13 HB_FUN_ALERT @14 HB_FUN_ALIAS @15 HB_FUN_ALLTRIM @16 HB_FUN_ALTD @17 H...
by pgfdz
Fri May 29, 2015 8:06 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Harbour-32.dll
Replies: 5
Views: 2361

Lista de funciones de [x]harbour con sus parametros para edi

... funciones asi como sus parametros? por ejemplo extraer AAdd(<aArray>, <xValue>) -> Value Abs(<nExpression>) -> nPositive AChoice(<nTop>, <nLeft>, <nBottom>, <nRight>, <acMenuItems>, [<alSelectableItems> | <lSelectableItems>], [<cUserFunction>], ...
by carlos vargas
Wed Feb 11, 2015 2:37 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Lista de funciones de [x]harbour con sus parametros para edi
Replies: 2
Views: 1031

Re: xHarbour 1.2.3 build 20141106

... source/rdd/dbstrux.prg * source/rdd/usrrdd/rdds/adordd.prg * source/rdd/usrrdd/rdds/ansirdd.prg * source/rdd/usrrdd/rdds/arrayrdd.prg * source/rtl/achoice.prg * source/rtl/browse.prg * source/rtl/cstr.prg * source/rtl/cstruct.prg * source/rtl/dbedit.prg * source/rtl/decode.prg * source/rtl/dumpvar.prg ...
by Enrico Maria Giordano
Thu Dec 04, 2014 5:09 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour 1.2.3 build 20141106
Replies: 16
Views: 5821

Re: problem with FWH 2013.09 and xHarbour.com

Antonio, when I use xharbour january 2013 and FWH1309 and compile a simple test (achoice): #include "FiveWin.ch"//----------------------------------------------------------------//function Main()   SET _3DLOOK ON   MsgInfo( ...
by codemaker
Sat Nov 16, 2013 9:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with FWH 2013.09 and xHarbour.com
Replies: 4
Views: 1795

Re: How can I do this in GUI style ?

You may try using this function in the place of AChoice function XChoice( aPrompts, cTitle )   local nSelect  := 0   DEFAULT cTitle := "Select"   XBROWSER aPrompts TITLE cTitle SELECT ( nSelect ...
by nageswaragunupudi
Mon Aug 19, 2013 8:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How can I do this in GUI style ?
Replies: 2
Views: 615

How can I do this in GUI style ?

Guys: I've got an old Clipper 5.2e / DOS text routine that receives an array of indexes and builds a small ACHOICE() index / order selection screen. The window growse or shrinks depending on the number of array elements. How can I get the same functionality in GUI ? Thank you. ...
by HunterEC
Mon Aug 19, 2013 6:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How can I do this in GUI style ?
Replies: 2
Views: 615

Re: ejemplo con postgresql

... in sqlrdd.ini" Quit ElseIf len(aKeys) == 1 nKey := 1 Else clear screen @5,1 say PadC( "Choose connection option", 80 ) nKey := achoice( 5, 20, 22, 60, aKeys ) clear screen If nKey == 0 ? "No connection selected" Quit EndIf EndIf hDsn := HGetValueAt( hIniFile, nKey ...
by russimicro
Sat Apr 17, 2010 4:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ejemplo con postgresql
Replies: 3
Views: 1579

ERROR en la generacion de HARBOUR - checkbox.prg(132)

... source\rtl\valtostr.c: source\rtl\valtype.c: source\rtl\version.c: source\rtl\word.c: source\rtl\xhelp.c: source\rtl\xsavescr.c: obj\b32\achoice.c: obj\b32\adir.c: obj\b32\alert.c: obj\b32\altd.c: obj\b32\browdb.c: obj\b32\browdbx.c: obj\b32\browse.c: source\rtl\checkbox.prg(132) Error ...
by jmansur
Wed Mar 25, 2009 4:07 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ERROR en la generacion de HARBOUR - checkbox.prg(132)
Replies: 1
Views: 749

Re: Migracion a HB: HB_SYMBOL_NAME_LEN

... source\rtl\valtostr.c: source\rtl\valtype.c: source\rtl\version.c: source\rtl\word.c: source\rtl\xhelp.c: source\rtl\xsavescr.c: obj\b32\achoice.c: obj\b32\adir.c: obj\b32\alert.c: obj\b32\altd.c: obj\b32\browdb.c: obj\b32\browdbx.c: obj\b32\browse.c: source\rtl\checkbox.prg(132) Error ...
by jmansur
Wed Mar 25, 2009 4:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Migracion a HB: HB_SYMBOL_NAME_LEN
Replies: 5
Views: 1199
Next

Return to advanced search