Search found 150 matches: ofolder

Return to advanced search

Re: Lookup method of Tdatabase

... oRec:RecNo == 0 )       local lSave := .f.       local lFree := .t.       local oFolder //Silvio       DEFINE FONT oFont NAME "MS Sans Serif" SIZE 0,-8       oBold := oFont:Bold()  ...
by Silvio.Falconi
Wed Aug 25, 2021 9:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Lookup method of Tdatabase
Replies: 44
Views: 2869

Re: To Nages Problem with Tdatabase and new DAtepick

Please revise this code @  3, 140 DTPICKER oPrenotazione:check_in SIZE 80,12 PIXEL OF oFolder:aDialogs[1] ;   PICTURE "ddd dd mmm yyyy"WITH OBJECT oPrenotazione:check_in   :lNoToday         := .t.   :lNoTodayCircle   := .t.   :SetRange( dStagioneMin,dStagioneMax ...
by Silvio.Falconi
Thu May 06, 2021 7:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages Problem with Tdatabase and new DAtepick
Replies: 13
Views: 1761

FolderEx problem

... the Folderex tab below the tab bitmap, see the picture https://i.postimg.cc/NMC3VcN0/problem-folderex.jpg the code @ 3, 3 FOLDEREX oFolder PIXEL LEFT STRETCH; PROMPT "&Generale", "&Stampe","Spiaggia", "Planning" ; TAB HEIGHT 120 ; ...
by Silvio.Falconi
Wed Mar 24, 2021 10:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FolderEx problem
Replies: 6
Views: 728

Combobox no Cambia

... "Var2_3" ON CHANGE se ejecuta perfectamente... Redefine ComboBox oCbxPresenta Var cCbxPresenta items aArreglo_Presenta Id 4001 of oFolder:aDialogs[2] on Change ( Fnct_ChangePresenta() ) Redefine ComboBox oCbxColores Var cCbxColor items aArreglo_Colores Id 4002 of oFolder:aDialogs[2] ...
by JoseAlvarez
Wed Nov 18, 2020 4:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Combobox no Cambia
Replies: 8
Views: 878

change xImage on line

... nRow+=2 @ nRow,180 XIMAGE oBmp ; RESOURCE "CLIP_OFF"; NOBORDER ; SIZE 30,30 PIXEL; OF oFolder:adialogs[1] ; UPDATE oBmp:bRClicked := {||NIL } oBmp:ltransparent:=.t. oBmp:nUserControl :=0 nRow+=10 @ nRow,10 GET aGet[1] VAR CUSTOMER->FIRST ...
by Silvio.Falconi
Fri Oct 02, 2020 9:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: change xImage on line
Replies: 0
Views: 389

Bpaint execute

... error because when call the function to create the message the folder Is not created Also . But It Is strange because 1) if put the message on ofolder:adialogs[1] Make error 2) if put the message on ofolder It not make error How i can resolve?
by Silvio.Falconi
Wed Jun 10, 2020 10:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bpaint execute
Replies: 0
Views: 282

Re: Agrandar la caja de selección de un combobox

Horacio
REDEFINE COMBOBOX oCombos1[ 16 ] VAR aCombos1[ 16 ] ID 1101 ;
ITEMS aFnts OF oFolder:aDialogs[ nOp ] ;
LISTWIDTH 200

Funciona igual con controles redefinidos o no
by cnavarro
Fri Jun 05, 2020 8:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Agrandar la caja de selección de un combobox
Replies: 6
Views: 870

Re: COMBOBOX HEIGHTGET is not working? *Solved*

NOT RUN OK ON RESOURCES On my order I have @ 2,5 COMBOBOX aGet[1] VAR nIcoElemento Items aElementiItems ; BITMAPS aBmpCombo SIZE 50,90 PIXEL of oFolder:aDialogs[1]; ON CHANGE ( ncella:="", aGet[2]:refresh()) HEIGHTGET 66 and run ok https://i.postimg.cc/T3pJHj9Q/twofolder.png
by Silvio.Falconi
Wed May 20, 2020 10:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: COMBOBOX HEIGHTGET is not working? *Solved*
Replies: 11
Views: 1591

slight flicker with buttonbmp

... oBtnGiorn; RESOURCE aImagesGiorno[ 1 ] ; PROMPT { || If( lGiorno, "giornaliero", "periodico" ) } ; SIZE 80,20 PIXEL OF oFolder:aDialogs[1]; TEXTRIGHT FONT oFontBold GDIPLUS; ACTION ( lGiorno := !lGiorno, ; oBtnGiorn:hBitmap:= If( lGiorno, aImagesGiorno[ 1 ], aImagesGiorno[ ...
by Silvio.Falconi
Wed Apr 08, 2020 10:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: slight flicker with buttonbmp
Replies: 0
Views: 220

Re: FwDArrow() NOT SHOW THE ARROW

On oldest application I used Btnget classo of Ramirez and it run ok instead of normal tget @ 80,50 BTNGET aGet[3] VAR ncella SIZE 70,32 PIXEL; of oFolder:aDialogs[1] FONT oLarge picture "9999"; ACTION NIL https://i.postimg.cc/25H4PfZB/BTNGET.png It build the button with ...
by Silvio.Falconi
Sat Dec 21, 2019 12:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FwDArrow() NOT SHOW THE ARROW
Replies: 3
Views: 604

FwDArrow() NOT SHOW THE ARROW

Image

@ 06,50 GET aGet[2] VAR ncella SIZE 70,32 PIXEL;
of oFolder:aDialogs[1] FONT oLarge picture "9999";
BITMAP FwDArrow() ;
ACTION nil
by Silvio.Falconi
Fri Dec 20, 2019 4:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FwDArrow() NOT SHOW THE ARROW
Replies: 3
Views: 604

Re: show a message then created a dialog and not before

Silvio,

just change to :
.....
.....
oDlg:bPainted := {||Calcolo(@aItems) }

ACTIVATE DIALOG oDlg CENTERED;
ON INIT ( oPanelGreen := PanelGreen(oFolder),;
EVAL( oDlg:bResized))

regards
Uwe :D
by ukoenig
Fri Aug 23, 2019 4:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: show a message then created a dialog and not before
Replies: 5
Views: 767

Re: Folder tabs on the bottom

... the bottom of a dialog rather than being on the top ? Thanks Rick Lipkin And with command #xcommand @ <nRow>, <nCol> FOLDEREX [<oFolder>] ; [ <of: OF, WINDOW, DIALOG> <oWnd> ] ; [ <prm: PROMPT, PROMPTS, ITEMS> <cPrompt,...> ] ; [ <bm: BITMAPS, IMAGES, ...
by cnavarro
Thu Jun 07, 2018 8:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folder tabs on the bottom
Replies: 5
Views: 968

Re: scroll on folder

... but not run) #include "fivewin.ch" #include "constant.ch" #define WS_VSCROLL 2097152 // 0x00200000L Function test() Local oDlg,oFolder,oVScroll Local nBottom := 33 Local nRight := 115 Local nWidth := Max( nRight * DLG_CHARPIX_W, 180 ) Local nHeight := nBottom * DLG_CHARPIX_H ...
by Silvio.Falconi
Sun Feb 11, 2018 4:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: scroll on folder
Replies: 6
Views: 1156

Re: scroll on folder

only with this command can I see the scroll, the vertical scroll is shown even when it should not be shown oApp():oFolder:adialogs[1]:nSTYLE := nOR( WS_CHILD, WS_VSCROLL ) it show vertical scroll on first tab when I click on the scroll button I can not see the other controls i think ...
by Silvio.Falconi
Sat Feb 10, 2018 10:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: scroll on folder
Replies: 6
Views: 1156
PreviousNext

Return to advanced search