Search found 584 matches: adialogs

Return to advanced search

Re: XBROWSE, con Get, Combobox y CheckBox, en una misma Columna

... no hace nada, deja todo habilitado y asi como esta ni siquiera me envia el mensaje del MSGINFO REDEFINE XBROWSE oLbx101c ID 101 OF oFld:aDialogs[2]; COLUMNS 1,2,3,4; HEADERS "Descriptor","Etiqueta","Informacion","Buscar"; COLSIZES 60,100,310,40; ...
by elmoiquique
Thu Mar 28, 2024 9:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE, con Get, Combobox y CheckBox, en una misma Columna
Replies: 10
Views: 2210

Box rtf on a folder

Image

oFolder:aDialogs[3]:bInit := {|| oMemo:LoadFromRTFFile( "table.rtf" ) }

@ 10, 3 RICHEDIT5 oMemo OF oFolder:aDialogs[3] PIXEL SIZE 200, 200 READONLY


why do I see the source file and not the rtf file in the richedit5 box?
by Silvio.Falconi
Thu Jan 25, 2024 10:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Box rtf on a folder
Replies: 0
Views: 478

Re: ButtonBmp TABSTOP

...   ACTIVATE DIALOG oDlg CENTEREDRETURN NIL Thank you Nages for the help look: My button line: REDEFINE BUTTONBMP botaonfs ID 4031 of Folder1:aDialogs[2] Bitmap "DIGNOTAS" TRANSPARENT TOOLTIP "Informar Nfe(s)"; cancel action CadNfs() Folder1:aDialogs[2]:bInit := { || botaonfs:WinStyle( ...
by wartiaga
Sun Jan 07, 2024 5:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp TABSTOP
Replies: 18
Views: 2772

Re: ButtonBmp TABSTOP

... but if i put this solution (I use pelles c .res file) not work. See the line above. Thank you! REDEFINE BUTTONBMP botaonfs ID 4031 of Folder1:aDialogs[2] Bitmap "DIGNOTAS" TRANSPARENT TOOLTIP "Informar Nfe(s)" cancel action CadNfs() botaonfs:nStyle:= nOR(WS_CHILD, WS_VISIBLE)
by wartiaga
Fri Jan 05, 2024 11:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp TABSTOP
Replies: 18
Views: 2772

Re: FolderEx Behaviour Doubt

... uso when .f. neste campo é um campo normal, segue a linha: REDEFINE GET oGet3300 VAR oArqCto:CALCATE ID 127 Bitmap "FINDP"; of Folder1:aDialogs[2] Picture "@!" Color Frente,Fundo update action Mostraate1() Frente e Fundo já é uma variável setada com as respectivas cores, o ...
by wartiaga
Wed Dec 13, 2023 11:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FolderEx Behaviour Doubt
Replies: 4
Views: 388

error TXBROWSE:CARGOS

... REDEFINE GET onrocli var xnrocli ID 101 OF ofld1:aDialogs[ 1 ] picture "999999" valid iif ( xnrocli <> 0, ( val_cli( xnrocli ), onrocli:Refresh(), onomcli:refresh(), odircli:refresh(), ...
by jpcavagnaro
Wed Aug 30, 2023 12:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: error TXBROWSE:CARGOS
Replies: 3
Views: 276

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

... aAlign, ; lAdjust, nSeparator, nOption, bPopUp, lStretch, ; cLayOut, bBmpAction, nBright, lAnimate, nSpeed, oFontDefault, ; lTransparent, aDialogs, lBorder, nClrPane, cVarName ) so ON PAINT TAB  -> bClrTabs ON PAINT TEXT -> bClrText
by Jimmy
Fri May 19, 2023 9:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FOLDEREX ON PAINT -> TFolderEx() how ?
Replies: 2
Views: 203

Ayuda por favor con folder y listbox

... "solapa2", "Solapa3", "Solapa4" // round 10 transparent // BOTTOM REDEFINE GET onrocli var xnrocli ID 101 OF ofld1:aDialogs[ 1 ] picture "999999" valid ( val_cli( xnrocli ), onrocli:Refresh(), onomcli:refresh(), odircli:refresh(), BuscoAntInfo( xnrocli, ...
by jpcavagnaro
Wed Mar 29, 2023 12:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ayuda por favor con folder y listbox
Replies: 1
Views: 237

Error al compilar Harbour - FW2212

... a Harbor 3.2 La siguiente línea muestra un error de compilación. REDEFINE GET ::oSay[7] VAR TFiltraCR():RetCommand(cr():oTable) ID 102 OF ::oFld:aDialogs[3] ACTUALIZAR IMAGEN DE SOLO LECTURA "@!" \sis\fsql901\ctarec\tcr.PRG(341) Error E0022 Valor l no válido ':' He intentado otras formas ...
by Ari
Wed Feb 22, 2023 4:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error al compilar Harbour - FW2212
Replies: 1
Views: 144

Re: Resize TFolder() / TFolderEx() : Dialogs

Dear Jimmy,

Please try:

oTab:aDialogs[ ii ]:SetSize( nWidth, nHeight )
by Antonio Linares
Sat Feb 11, 2023 11:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resize TFolder() / TFolderEx() : Dialogs
Replies: 3
Views: 314

TSAY background color

Hi,

If the TSAY control is on the Dialog window, then I can change its background
Code: Select all  Expand view
oSay:SetColor(CLR_BLACK, CLR_RED)
 oSay:Refresh()

If the control TSAY is on TFolderEx:aDialogs[1], then oSay:SetColor() does not change the background color. Why?t
by Natter
Thu Dec 29, 2022 1:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TSAY background color
Replies: 2
Views: 253

Re: Fighting Xbrowse and lozing !!!

This is the browse system that I use : Generate a browse with 1 line of code oBrw[10] = getXBrowser("WEBSHOP_KLEUREN",oFld:aDialogs[FOL_WEBSHOP_KLEUREN])   //  Code above this line is retrieving xbrowse data fields etc... from DBF   @ nTop,nLeft XBROWSE oBrw ...
by Marc Venken
Thu Dec 22, 2022 11:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fighting Xbrowse and lozing !!!
Replies: 18
Views: 1567

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 "tab1", ...
by hua
Fri Dec 16, 2022 4:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Amending preprocessor directive for TFolderEx
Replies: 4
Views: 391

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: 314

Re: search for TTabControl() Sample

... - oMain:nTop )   oTabs:AddItem("Grid_1")   @ 20, 10 BUTTON oBtn PROMPT "blabla" SIZE 300,200 OF oTabs:aDialogs[ 1 ] PIXEL ACTION MsgInfo("blabla") ... when add more Tab   oTabs:AddItem("Grid_2") Button on oTabs:aDialogs[ ...
by Jimmy
Sat Oct 29, 2022 5:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: search for TTabControl() Sample
Replies: 23
Views: 912
Next

Return to advanced search