Search found 72 matches: aprompts

Return to advanced search

Re: can use SWITCH Control in XBROWSE ?

i like to request EDIT_LOGIC This is implemented as: oCol:SetCheck( [aBmps], [lEdit], [aPrompts] Parameters: aBmps: Optional. Array or 2 or 3 bitmaps to be displayed when the value is .T., .F., nil. If omitted, xbrowse provides default bitmaps which ...
by nageswaragunupudi
Tue May 30, 2023 12:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: can use SWITCH Control in XBROWSE ?
Replies: 7
Views: 512

Re: FOLDEREX ON PAINT -> TFolderEx() how ?

... )}, .F.,;         Upper("TOP"), {|Self,nOption| ( If( nOption == 8, oWnd:End(),  MsgInfo( "Action defined to " + StrTran( ::aPrompts[ nOption ], "&", "" ) ) ) )},, .T., 50,,;        .F.,, .F.,, "oFld" ) this i compare with Parameter in my ...
by Jimmy
Fri May 19, 2023 9:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FOLDEREX ON PAINT -> TFolderEx() how ?
Replies: 2
Views: 203

Amending preprocessor directive for TFolderEx

I am trying to build a dynamic TFolderEx so when it is REDEFINE, the value for aPrompts and aDialogs will come from file. What do I need to change at its pre-processor directive so instead of coding    REDEFINE FOLDEREX ::oFolder ID 110 OF ::oDlg   ;      PROMPTS ...
by hua
Fri Dec 16, 2022 4:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Amending preprocessor directive for TFolderEx
Replies: 4
Views: 392

TRIBBON.PRG - New nQuickHigh (DEFINE QUICKBUTTON )

CLASS TRibbonBar FROM TControl CLASSDATA lRegistered AS LOGICAL DATA oBold, oFont DATA aLeft DATA aPrompts DATA aDialogs DATA aSizes DATA aGrad DATA aGradFld DATA aGradOver DATA aGradHigh DATA aQuickRGrad DATA nQuickHigh INIT 32 <---- New METHOD Paint() CLASS TRibbonBar ...
by MGA
Wed Nov 23, 2022 9:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TRIBBON.PRG - New nQuickHigh (DEFINE QUICKBUTTON )
Replies: 1
Views: 315

Re: search for TTabControl() Sample

hi Antonio, have some (small) Problem with TFolder() when i assign {} as 3rd Parameter (aPrompts) of TFolder() and use AddItem() than Control will not appear :?   oTabs := TFolder():New( 0, 0,{} , , oMain, 1, , , .t.,;                          ...
by Jimmy
Sat Oct 29, 2022 5:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: search for TTabControl() Sample
Replies: 23
Views: 915

Re: FUNCION XEDIT DE FWH

... nil  https://imagizer.imageshack.com/v2/xq90/923/jrDy6T.png What you are asking is achieved by using oRec:SetPrompt( aPrompts )    oRec:SetPrompt( { { "first", "Name" }, { "Last", "Surname" }, ...
by nageswaragunupudi
Thu Feb 04, 2021 1:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FUNCION XEDIT DE FWH
Replies: 5
Views: 631

Re: xChoice() works with FWH 19.06?

Try with Prueba asi /* *********************************************************************************** */ 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 ...
by cnavarro
Fri Aug 16, 2019 10:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xChoice() works with FWH 19.06?
Replies: 1
Views: 588

xChoice() works with FWH 19.06?

Mr. Rao, xChoice() function works with FWH 1906? Wiht FWH 15.07 works fine. Note: aPrompts is an array like { "Hola", "que tal" } /* *********************************************************************************** */FUNCTION XChoice( aPrompts, ...
by FiveWiDi
Fri Aug 16, 2019 3:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xChoice() works with FWH 19.06?
Replies: 1
Views: 588

Re: Nuevo FWH 16.05

... as libmysql.dll or libmariadb.dll. SetCheck() In case you want to have both bitmaps and prompts then please use: oCol:SetCheck( aBitmaps, .T., aPrompts ) In your case : oBrw:aCols[ 1 ]:SetCheck( { "Imagenes\level1.bmp", "Imagenes\level2.bmp" }, .T., { "S", "N" ...
by nageswaragunupudi
Sun Jul 17, 2016 12:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo FWH 16.05
Replies: 12
Views: 3773

Re: Tfolderex Tab cursor

I made Local cCursorTab:= TCursor():New(,'HAND') oApp():oGrid := TFolderex():New( , , , , oApp():oDlg, , ,, aPrompts) oApp():oGrid:cursor:=cCursorTab and this is the error give me Application =========== Path and name: C:\WORK\Prg\Archivia\Main.Exe (32 bits) Size: 6,055,424 bytes ...
by Silvio.Falconi
Fri Apr 01, 2016 3:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tfolderex Tab cursor
Replies: 4
Views: 924

Re: Una Matriz de Botones

... que hacer algo asi y me funciono, que te expongo en tu ejemplo: [code} FUNCTION build_pages( oFolder ) LOCAL oDialog FOR J := 1 TO LEN( oFolder:aPrompts ) DEFINE DIALOG oDialog OF oFolder STYLE NOR( WS_VISIBLE, WS_DLGFRAME, WS_CHILD) TRANSPARENT FOR I := 1 TO LEN(oBtn) IF oBtn[I,4] = J DO CASE ...
by noe aburto
Fri Mar 25, 2016 7:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Una Matriz de Botones (SOLUCIONADO)
Replies: 8
Views: 2279

Re: Search record from tab

... CU->(DbGoTop()) oApp():oGrid:Refresh(.t.) return nil endif do case case nOrder= 1 set filter to left(CU->FIRST,1)=oApp():oTab:aPrompts[n] case nOrder= 2 set filter to left(CU->LAST,1)=oApp():oTab:aPrompts[n] endcase CU->(DbGoTop()) oApp():oGrid:Refresh(.t.) return nil ...
by Silvio.Falconi
Thu Sep 17, 2015 8:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Search record from tab
Replies: 8
Views: 1988

Re: Search record from tab

... Cufiltrar(oApp():oGrid, oApp():oTab,oApp():oTab:nOption) ) Function Cufiltrar (oGrid,oTab,n,nOrder) ?alltrim(oApp():oTab:aPrompts[n] ) do case case nOrder= 1 CU->(DbSetFilter( alltrim(Left(CU->First,1))==alltrim(oApp():oTab:aPrompts[n] ) )) case nOrder= 2 CU->(DbSetFilter( ...
by Silvio.Falconi
Thu Sep 17, 2015 7:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Search record from tab
Replies: 8
Views: 1988

Re: Search record from tab

... CU->(DbSetOrder(1)),; CU->(DbGoTop()) ,; IIF( oApp():oTab:nOption=1, oApp():oGrid:Seek(""),; oApp():oGrid:Seek(alltrim(oApp():oTab:aPrompts[oApp():oTab:nOption] )) ),; oApp():oGrid:Refresh(.t.) ) it run ok bu tI mean to show sample only that customer init for "A" or "B" ...
by Silvio.Falconi
Wed Sep 16, 2015 7:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Search record from tab
Replies: 8
Views: 1988

Re: Clase TIconGroup

... desde donde se llama a ExtDrawIcon() En concreto: ::aCoors[ nAt ] = ExtDrawIcon( hDC, ::aCoors[ nAt, 1 ], ::aCoors[ nAt, 2 ], ; ::aIcons[ nAt ], ::aPrompts[ nAt ], hFont, ; ::nClrText, ::nClrPane, lFocused, .t., ::lEdit ) Yo probaría a cambiar el color de ::nClrPane Prueba asi: oIconGroup:bGotFocus ...
by Antonio Linares
Fri Jul 31, 2015 11:52 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clase TIconGroup ( SOLUCIONADO )
Replies: 12
Views: 1721
Next

Return to advanced search

cron