Search found 39 matches: dlgframe

Return to advanced search

Re: DIALOG NOCAPTION no funciona con XIMAGE

Leandro, mira los cambios: - No use -1 en los controles del dialogo. Y use: WS_DLGFRAME DBF2RC2 DIALOG 136, 48, 349, 247STYLE DS_ABSALIGN | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_DLGFRAME | WS_SYSMENUFONT 8, "Arial"{ EDITTEXT 110, 4, 42, 137, 12, WS_BORDER | WS_TABSTOP P...
by karinha
Wed Jul 26, 2023 3:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: DIALOG NOCAPTION no funciona con XIMAGE
Replies: 17
Views: 1506

Re: Consulta sobre Get

Hola Amigo Karinha Muchas gracias por tu ayuda. Ya lo solucione, al parecer era un poco compleja con recursos, asi es que cambie a coordenadas "DEFINE DIALOG oDlg2 SIZE 350,250 PIXEL TRUEPIXEL FONT oFont2 STYLE nOr( WS_POPUP, WS_VISIBLE, WS_DLGFRAME )". Ahora funciona perfecto. Muchas grac...
by remtec
Fri Apr 22, 2022 8:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta sobre Get " SOLUCIONADO "
Replies: 14
Views: 643

Re: Ayuda Cambiar el Color de un SAY "URGENTE"

Hola Cristobal. Muchas gracias por responder. Si entiendo bien tu respuesta, te refieres a esto: DEFINE DIALOG oDlg2 SIZE 600,570 PIXEL TRUEPIXEL FONT oFont2 STYLE nOr( WS_POPUP, WS_VISIBLE, WS_DLGFRAME ) Si es asi, le saque el Style, no hay cambios, sigue sin funcionar, quizás sea algún error que e...
by remtec
Thu Jun 11, 2020 7:25 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda Cambiar el Color de un SAY "SOLUCIONADO"
Replies: 12
Views: 1627

Re: Buscando funciones/propiedades...

Saludos, talves te sirva la función GETSYSMETRICS(N) GetSysMetrics() Retrieves the system metrics Syntax: GetSysMetrics( <nIndex> ) --> nValue Parameters: <nIndex> System measurement to retrieve. Puede ser uno de los siguientes valores. SM_CXBORDER 5 Width of window frame that cannot ...
by cuatecatl82
Sun Dec 24, 2017 9:25 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Buscando funciones/propiedades...
Replies: 2
Views: 965

Re: Una Matriz de Botones

Saludos Tuve 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 ...
by noe aburto
Fri Mar 25, 2016 7:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Una Matriz de Botones (SOLUCIONADO)
Replies: 8
Views: 2254

Re: Ayuda FWH 2006 xHB a FWH 2014 Harbour

Joaquin, Compilando xZoom.prg... C:\local\fwh2014\include\WinApi.ch(25) Warning W0002 Redefinition or duplicate definition of #define WS_CHILD C:\local\fwh2014\include\WinApi.ch(27) Warning W0002 Redefinition or duplicate definition of #define WS_CLIPSIBLINGS C:\local\fwh2014\include\WinApi.ch(37) W...
by Antonio Linares
Sat Sep 06, 2014 9:38 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda FWH 2006 xHB a FWH 2014 Harbour
Replies: 5
Views: 1016

Ayuda FWH 2006 xHB a FWH 2014 Harbour

Hola, Necesito pasar una aplicación bastante grande, desde FWH del 2.006 con xHarbour a FWH 2014 con Harbour. Me encuentro varios problemas al compilar y no encuentro cual es la razón, a ver si alguien me puede orientar. 1) En una definición de clase, si uso PRIVATE: o PUBLIC: para definir las DATA´...
by jmartial
Fri Sep 05, 2014 7:05 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda FWH 2006 xHB a FWH 2014 Harbour
Replies: 5
Views: 1016

Re: a dialog ws_child

Silvio, the solution, You are looking for ? As long the dialog is open and You change to folderpages 2 or 3, on page 1 the dialog is still visible until You close it with the button. Dialog-NOWAIT is used, to make it possible, to edit the 2 gets. Define the dialog like : DEFINE DIALOG oDlgBarra OF o...
by ukoenig
Fri Dec 20, 2013 3:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: a dialog ws_child
Replies: 8
Views: 2610

Re: xBrowse ASC / VKey -viewer ( DOWNLOAD ) Upd. 2.1

Hello Uwe, nice job!
Here, to compile WASC.PRG, had to change the line # 627 to:
STYLE nOR( DS_MODALFRAME , WS_POPUP, WS_DLGFRAME, WS_THICKFRAME )
The Excel opens at the front.
Regards, Euclides.
by Euclides
Tue Jun 11, 2013 6:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse ASC / VKey -viewer ( DOWNLOAD ) Upd. 3.2
Replies: 11
Views: 5474

Re: xBrowse ASC / VKey -viewer ( DOWNLOAD ) Upd. 2.1

André, Thank You very much for testing. There are 2 compiled versions included ( EXE ) WAsc.exe ( with Mainwindow ) and DAsc.exe ( only Dialog ). There Excel is not shown on TOP ? Maybe someting to do with my config. Can You send me Your recompiled Version by Email for a test ? esckoenig@aol.com The...
by ukoenig
Tue Jun 11, 2013 3:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse ASC / VKey -viewer ( DOWNLOAD ) Upd. 3.2
Replies: 11
Views: 5474

Re: impedir que una Window sea redimensionada

Muchas gracias a todos. Al final lo solventé con STYLE nOr(WS_DLGFRAME) Pongo aquí los distintos estilos por si ayuda a otros: WS_BORDER   Creates a window that has a border. WS_CAPTION   Creates a window that has a title bar (implies the WS_BORDER style). Cannot be used with ...
by lucasdebeltran
Fri Feb 03, 2012 12:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: impedir que una Window sea redimensionada
Replies: 4
Views: 1295

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

calendar shows empty?

Hi, FUNCTION cal( ) LOCAL odlg, oCal,date1:=date() LOCAL lOk := .f. DEFINE DIALOG odlg RESOURCE "cal" REDEFINE CALENDAR oCal VAR date1 ID 101 OF odlg DBLCLICK (lok:=.t.,odlg:end()) oCal:bKeyDown := {|nkey| IF( nKey = 13 .OR. nKey = 32, odlg:end(), ) } odlg:oClient := oCal ACTIVATE DIALOG o...
by ShumingWang
Fri May 06, 2011 3:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: calendar shows empty?
Replies: 1
Views: 529

Re: MDI without caption

Marco, like You can see in the Include-file, I think it is not possible on MDI-frame. Instead, to show just a empty Screen, You can use a Dialog like : DEFINE IMAGE oTmp FILENAME c_Path + "\bitmaps\Backgrd.jpg" DEFINE DIALOG oDlg FROM 0, 0 TO 720, 1004 PIXEL ; // TRANSPARENT ; STYLE WS_POP...
by ukoenig
Sun Apr 24, 2011 4:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MDI without caption
Replies: 6
Views: 1415

Re: xBrowse Image-viewer DOWNLOAD Release 1.3 !!!

Updated to => Release 1.3 Download ( 2.0 MB includes : Exe, Prg, Backgrd.jpg and Freeimage.pdf ) http://www.pflegeplus.com/fw_downloads/xbrwimage1.zip Changes / New : 1. Adjustment of Screen-resolution ( new Background-image added ) Dialog and Brush changed to calculated, fixed Dimension. A Scree...
by ukoenig
Thu Apr 21, 2011 2:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Image-viewer DOWNLOAD / Update Release 1.5 !!!
Replies: 11
Views: 3815
Next

Return to advanced search