Search found 21 matches: overlappedwindow

Return to advanced search

Re: ¿Dialogo que funcione como ventana?

José,

Prueba a usar este estilo en el diálogo: WS_OVERLAPPEDWINDOW

Añádelo en el fichero de recursos
by Antonio Linares
Tue Dec 04, 2018 7:34 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿Dialogo que funcione como ventana?
Replies: 7
Views: 1318

Refresh()

On a Dialog the final user can change the size of a folder ( on Height) calling a function this function is call on bResized and pressing a button . the dialog style is WS_OVERLAPPEDWINDOW on this function I set the size of Folder, the oBrw there is on first fold of Folder and some Says controls I n...
by Silvio.Falconi
Thu Nov 13, 2014 12:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Refresh()
Replies: 0
Views: 359

Re: Resize a Dialog

Sorry Daniel,
If I not use STYLE nOr( WS_OVERLAPPEDWINDOW ) .....I cannot resize the dialog ...

Perhaps I explain bad



I wish enlarge the dialog but I wish to shrink the dialog to the original coordinates, it is possible ?
by Silvio.Falconi
Tue Feb 12, 2013 6:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resize a Dialog
Replies: 4
Views: 1351

Re: Resize a Dialog

Silvio

not use STYLE nOr( WS_OVERLAPPEDWINDOW )
by Daniel Garcia-Gil
Tue Feb 12, 2013 2:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resize a Dialog
Replies: 4
Views: 1351

Re: Changing the tTitle text at runtime

Hello Marco, You don't need to define the Title, only the Textobject. This button ( on Mainwindow ) changes the Text defined in Title 1. // Style 2007 // ------------- @ 580, 300 BTNBMP oBtn1 OF oWnd ; SIZE 200, 80 ; PROMPT "&Change Text" 2007 ; FONT oFont2 CENTER ; ACTION oText1:SetTe...
by ukoenig
Sat May 07, 2011 4:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Changing the tTitle text at runtime
Replies: 7
Views: 1235

Re: TFolderEx error. (FWH 10.10)

Horizon #include "FiveWin.ch" function Main() LOCAL oDlg, oFld      DEFINE DIALOG oDlg SIZE 620, 294 ;         STYLE nOr( WS_OVERLAPPEDWINDOW ) TRANSPARENT     oDlg:SetColor(,9425383)        @ 2, 3 FOLDERex oFld OF oDlg SIZE 100, 100 PIXEL ;       PROMPTS "&Genel", "Taki...
by Daniel Garcia-Gil
Thu Nov 18, 2010 12:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TFolderEx error. (FWH 10.10) Solved
Replies: 13
Views: 2372

Re: Como desabilitar BarTitle de uma Dialog=

Daniel. desculpa e para :

WS_OVERLAPPEDWINDOW

qual o valor de define?

onde puedo consultar estas variaveis?

Gracias.
by PeterBaga
Sun Feb 07, 2010 11:55 pm
 
Forum: FiveWin para Pocket PC
Topic: Como desabilitar BarTitle de uma Dialog=
Replies: 9
Views: 2314

Re: Como desabilitar BarTitle de uma Dialog=

Pedro, 1) Si el diálogo lo creas desde código puedes usar la claúsula STYLE:    DEFINE DIALOG oDlg FROM 10, 10 TO 20, 40 ;      TITLE "Dialog" STYLE nOr( WS_VISIBLE, WS_OVERLAPPEDWINDOW )  Si el diálogo está definido en tu fichero RC de recursos, cámbi...
by Antonio Linares
Sat Feb 06, 2010 7:37 pm
 
Forum: FiveWin para Pocket PC
Topic: Como desabilitar BarTitle de uma Dialog=
Replies: 9
Views: 2314

Re: fwh\samples\RE.prg - FiveWin Resources Editor underrated

After a long time I had again a look into re.prg. I changed the code to get the ID of the control into the dialog. But I can’t find out how to do with comboboxes. It would also be fine to have the caption of the says. The dialog is saved to clipboard and you can paste it to your source code. Would y...
by Otto
Sun Aug 30, 2009 6:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: fwh\samples\RE.prg - FiveWin Resources Editor underrated
Replies: 38
Views: 12558

Re: C++ ( To Antonio )

Antonio ,

Yo alterei lo WS_OVERLAPPEDWINDOW por WS_VISIBLE pero la windows es create outside,
yo quero criar dentro dela windows semelhante la tua class tactivex.
Image
by lailton.webmaster
Sat Jul 25, 2009 3:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Language C ( To Antonio )
Replies: 17
Views: 3194

Language C ( To Antonio )

HB_FUNC( OLEWECREATE ) { HWND hWndCtrl; LoadAtl(); hWndCtrl = CreateWindowEx( (DWORD) 0 , // nExStyle (LPCTSTR) "AtlAxWin" , // cClsName (LPCTSTR) hb_parc( 1 ) , // cProgId (DWORD) WS_OVERLAPPEDWINDOW , // style CW_USEDEFAULT , // nLeft CW_USEDEFAULT , // nTop 0 , // nWidth 0 , // nHeight ...
by lailton.webmaster
Sat Jul 25, 2009 2:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Language C ( To Antonio )
Replies: 17
Views: 3194

Re: cActiveX ( To antonio )

Antonio tu pode mostrar en la funcion acima como fica con tua modificacion ? HB_FUNC( OLEWECREATE ) { PHB_ITEM pObject = hb_param( 1, HB_IT_OBJECT ); // the object supplied as the first parameter HWND hWndCtrl; LoadAtl(); hWndCtrl = CreateWindowEx( (DWORD) 0 , // nExStyle (LPCTSTR) "AtlAxWin&qu...
by lailton.webmaster
Mon Jul 20, 2009 11:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: cActiveX ( To antonio )
Replies: 11
Views: 4366

cActiveX ( To antonio )

HB_FUNC( OLEWECREATE ) { HWND hWndCtrl; LoadAtl(); hWndCtrl = CreateWindowEx( (DWORD) 0 , // nExStyle (LPCTSTR) "AtlAxWin" , // cClsName (LPCTSTR) hb_parc( 1 ) , // cProgId (DWORD) WS_OVERLAPPEDWINDOW , // style CW_USEDEFAULT , // nLeft CW_USEDEFAULT , // nTop 0 , // nWidth 0 , // nHeight ...
by lailton.webmaster
Mon Jul 20, 2009 8:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: cActiveX ( To antonio )
Replies: 11
Views: 4366

Re: Window and TRANSPARENT

Anser, > Do u know the syntax to diplay minimise and restore button on a dialog ? Try this: DEFINE DIALOG oDlg FROM 10, 10 TO 20, 40 ; TITLE "Dialog" STYLE nOr( WS_VISIBLE, WS_OVERLAPPEDWINDOW ) ACTIVATE DIALOG oDlg Please notice that WS_OVERLAPPEDWINDOW is defined this way: #define WS_...
by Antonio Linares
Sun Feb 01, 2009 10:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Window and TRANSPARENT
Replies: 5
Views: 869

Sorry,

I found using STYLE WS_OVERLAPPEDWINDOW.
by Horizon
Sun Sep 21, 2008 4:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resizable Dialogs?
Replies: 1
Views: 375
Next

Return to advanced search