Search found 42 matches: maximizebox

Return to advanced search

Problem with scroll and bRush

I insert a brush into image and I try to make a scroll of a dialog when i move the scroll the bruh make error see here : https://s33.postimg.cc/74wtlgf0v/Immagine.png How I can resolve it ? DEFINE BRUSH oBrush1 FILENAME ".\bitmaps\spiaggia.bmp" DEFINE DIALOG oDlg SIZE 1100,...
by Silvio.Falconi
Thu Aug 09, 2018 4:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with scroll and bRush
Replies: 2
Views: 498

Re: scroll on folder

On explorer bar there is a dispositive create a vertical scroll when we resize it...why we cannot insert it on folder class ? here a test ( but not run) #include "fivewin.ch" #include "constant.ch" #define WS_VSCROLL 2097152 // 0x00200000L Function test() Local oDlg,oFolder,oVScr...
by Silvio.Falconi
Sun Feb 11, 2018 4:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: scroll on folder
Replies: 6
Views: 1131

Re: Richedit on a dialog

I tried and run but I have problems http://www.eoeo.it/wp-content/uploads/2016/04/vv.jpg I use a Dialog and not a Window I use a Dialog style WS_OVERLAPPED oDlgModelli:nStyle := nOr( WS_OVERLAPPED,WS_THICKFRAME,WS_SYSMENU,WS_MAXIMIZEBOX, 0 ) then I resize all controls of the dialog i...
by Silvio.Falconi
Wed Apr 20, 2016 8:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Richedit on a dialog
Replies: 17
Views: 8928

Re: XBrowse - Midi y lRegistered

Jose Luis, asi es como lo he hecho, si puedo echarte una mano en lo que esté a mi alcance...... .../... local cControl := "TPanel" local aPnels := {} local aClrPnels := {} local oBrush1 local cPanel := "wcia21.bmp" //"wcia2.bmp" Local oBrw1 Local oBrw2 hDC := GetDeskTop...
by cnavarro
Thu Feb 21, 2013 5:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBrowse - Midi y lRegistered
Replies: 14
Views: 2525

Re: xBrowse-Memory, something to Relax ( Download )

Christian, thanks for the Response. I will have a look at this. 2. prevent to expand the window of the game. DEFINE DIALOG oDlg1 FROM 5, 0 TO 695, 1010 TITLE "MEMORY 1.1 / 12-Sept-2012" PIXEL oDlg1:nStyle += (WS_MINIMIZEBOX + WS_MAXIMIZEBOX) Got it working with the Solution from Mr. Rao !!...
by ukoenig
Tue Sep 11, 2012 9:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse-Memory, something to Relax ( UPDATE 3.1 new )
Replies: 14
Views: 7567

Galeria fotografica clase tscrdlg

Foro: Estoy implementando una galería fotográfica con un scroll tanto horizontal como vertical, para ello uso la clase tscrdlg de Eric Yang. Hasta donde puedo modificar los valores de… # define D_WIDTH 08 && 06 && 04 DIP # define D_HEIGHT 36 && 24 && 13 ¿ Qué problema...
by J. Ernesto
Fri Jan 27, 2012 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Galeria fotografica clase tscrdlg
Replies: 0
Views: 548

Re: MouseMove no ListBox

Boa tarde Veja o exemplo abaixo. Funciona bem. Ficheiro Prg dbSelectArea("PRO") PRO->(OrdSetFocus("DDATA")) DEFINE DIALOG oDlg RESOURCE DIALOG_1 TITLE (Titulo) REDEFINE LISTBOX oLbx; FIELDS dtoc(PRO->DDATA), PRO->VENDE; FIELDSIZES 60, 70; HEADERS "Data", "...
by j.fmagalhaes
Sat Aug 27, 2011 1:36 pm
 
Forum: All products support
Topic: MouseMove no ListBox
Replies: 2
Views: 1668

Re: nomodal dialog menu area shows pre background ?

test1.prg #include "fivewin.ch" function main() public ownd,omenu define window ownd FROM 0,0 TO 10,10 activate window ownd on init buildmenu(ownd) function buildmenu(ownd) menu omenu 2007 menuitem "aaa" action aaa() menuitem "bbb" endmenu ownd:setmenu(omenu) ownd:refre...
by ShumingWang
Sat Aug 27, 2011 5:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: nomodal dialog menu area shows pre background ?
Replies: 4
Views: 778

Window and a Resizable dialog inside

#include "fivewin.ch" FUNCTION MAIN() LOCAL oMain DEFINE WINDOW oMain FROM 10 , 10 TO 500 , 500 PIXEL ACTIVATE WINDOW oMain ON INIT OpenDialog() RETURN NIL FUNCTION OPENDIALOG() LOCAL oDlg LOCAL oSay DEFINE DIALOG oDlg FROM 200 , 200 TO 400 , 400 ; STYLE NOR( WS_POPUP, WS_VISIBLE, WS_CAPTI...
by MarcoBoschi
Sat Jul 02, 2011 4:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Window and a Resizable dialog inside
Replies: 9
Views: 2048

difference between xp and seven

Is it normal this difference? (see below screen shots) Thanks in advance Marco >>fold.prg<<< #include "fivewin.ch" FUNCTION MAIN() LOCAL oDlg LOCAL oFld LOCAL aFld := { } LOCAL oSay1 , cSay1 := "First" LOCAL oGet1 , cGet1 := SPACE( 10 ) LOCAL oSay2 , cSay2 := "...
by MarcoBoschi
Mon Mar 21, 2011 5:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: difference between xp and seven
Replies: 14
Views: 5239

Re: Minimize Dialog and Window too

Probably this is the solution: Many thanks marco #include "Fivewin.ch" STATIC oDlg STATIC oWnd REQUEST HB_GT_GUI_DEFAULT FUNCTION MAIN() DEFINE WINDOW oWnd FROM 1000 , 1000 TO 1000 , 1000 oWnd:bResized = { || resize_wnd( ) } ACTIVATE WINDOW oWnd ICONIZED ON INIT dialogo( ) RETURN NIL FUNCT...
by MarcoBoschi
Mon Jan 24, 2011 2:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Minimize Dialog and Window too
Replies: 25
Views: 4223

Re: Minimize Dialog and Window too

To James and EMG: How can I test iconized state OF a Dialog or Window? probably the solution is in this code But now I'm using a generic ::bresized #include "Fivewin.ch" STATIC oDlg STATIC oWnd REQUEST HB_GT_GUI_DEFAULT FUNCTION MAIN() DEFINE WINDOW oWnd FROM 1000,1000 TO 1000,1000 PIXEL o...
by MarcoBoschi
Mon Jan 24, 2011 9:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Minimize Dialog and Window too
Replies: 25
Views: 4223

Minimize Dialog and Window too

Hi, I don't remember how to resolve this problem. I cannot find the example. When I minimize the dialog it remains over the application bar I want that it minimizes normally I can remember how to do it Thanks in advance marco #include "fivewin.ch" FUNCTION MAIN( ) LOCAL oWnd DEFINE WINDOW ...
by MarcoBoschi
Fri Jan 21, 2011 5:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Minimize Dialog and Window too
Replies: 25
Views: 4223

Missing folder tabs

I'm having trouble with something that has worked for me quite well in the past. I have a shell folder that normally contains 6 tabbed dialogs. DEFINE DIALOG oMembDlg RESOURCE "DLG_FLDRSHELL" ; TITLE allTrim(Z_MMNAME) +", Members" ; ICON oIcon REDEFINE FOLDER oFld ID 5000 OF oMem...
by DonDrew
Mon Aug 23, 2010 8:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Missing folder tabs
Replies: 2
Views: 590

Re: [Plz Linares] How to change the color of a disabled folder?

Dietmar, > yes, I did. Please post the portion of the RC file where you declare that folder, thanks here it is: SUCHFOLDER DIALOG 7, 15, 398, 268 STYLE DS_MODALFRAME | WS_OVERLAPPED | WS_VISIBLE | WS_DLGFRAME | WS_SYSMENU | WS_MINIMIZEBOX | WS_MAXIMIZEBOX { CONTROL "", 210, "RFold...
by Dietmar Jahnel
Sun May 17, 2009 8:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: [Plz Linares] How to change the color of a disabled folder?
Replies: 19
Views: 5697
Next

Return to advanced search