Search found 1232 matches: child

Return to advanced search

New FTDN February 2024 (FWH 24.02)

... now we need to check if there is any side effect. * Enhancement: function EnumChildWindows() used codeblock must return .T. to continue to next child control or .F. to stop.
by Antonio Linares
Sat Mar 02, 2024 8:31 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN February 2024 (FWH 24.02)
Replies: 1
Views: 134

Re: how to get Childlist of a Control ?

hi Antonio,
Antonio Linares wrote:EnumChildWindows( hWndControl, { | hWndChild | ... } )

In FWH 24.02 the codeblock must returns .T. to continue with the next child, or .F. to stop the enum
In previous FWH builds, .T. is used by default

ok, understand
THX
by Jimmy
Thu Feb 29, 2024 5:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to get Childlist of a Control ?
Replies: 2
Views: 95

Re: how to get Childlist of a Control ?

Dear Jimmy,

EnumChildWindows( hWndControl, { | hWndChild | ... } )

In FWH 24.02 the codeblock must returns .T. to continue with the next child, or .F. to stop the enum

In previous FWH builds, .T. is used by default
by Antonio Linares
Thu Feb 29, 2024 5:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to get Childlist of a Control ?
Replies: 2
Views: 95

how to get Childlist of a Control ?

hi,

from TWindows() i can get a Childlist of all Controls
Code: Select all  Expand view
  oWnd:aControls

but how to get Childlist of a single Control when have Child :?:
by Jimmy
Thu Feb 29, 2024 12:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to get Childlist of a Control ?
Replies: 2
Views: 95

Re: Fwh 23.10 TGet another problem (UNSOLVED)

Mr. Rao,

I'm not tdialog. My all child dialogs is twindow and tmdichild based. Sorry.

Best regards,
by ertan
Sun Feb 04, 2024 3:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fwh 23.10 TGet another problem (UNSOLVED)
Replies: 132
Views: 52143

Re: TWebView window size

Dear Ruth,

Could you please email me address.dbf ? thanks

If we don't make TWebView child of a parent window, then we can not control the size of it.
by Antonio Linares
Thu Feb 01, 2024 4:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TWebView window size
Replies: 14
Views: 757

Re: link between PRG and RC

... As a general rule, the better you organize and structure your project, the easier it will be to mantain it. This can be easily achieved using child folders from a parent folder. This is a good structure to use: Folder MyApp + Folder source + Folder include + Folder lib (if you are using third ...
by Antonio Linares
Mon Jan 29, 2024 9:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: link between PRG and RC
Replies: 20
Views: 1292

Re: How to find out the IDs of controls and types?

hi,

Question : how can i get Object of Child when EnumChildWindows() :?:

i think about OOP Environment where i need a Object instead of a Handle
by Jimmy
Sun Jan 07, 2024 6:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to find out the IDs of controls and types?
Replies: 16
Views: 1614

Re: ButtonBmp TABSTOP

#include "FiveWin.ch"#define WS_CHILD                 1073741824  // 0x40000000L#define WS_VISIBLE               268435456   // 0x10000000L//#define WS_TABSTOP               65536       // 0x00010000LFunction Main()  LOCAL oDlg, oBtn[3]    DEFINE DIALOG oDlg FROM 0,0 TO 30...
by wartiaga
Fri Jan 05, 2024 11:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp TABSTOP
Replies: 18
Views: 2419

Re: Dialogos dentro de una ventana

Alvaro: Lo que puedes hacer es crear un dialog y que la ventana child se ajuste luego a ese dialogo. Tambien con las versiones nuevas de Fivewin puedes hacer un dialogo resizable y minimizable en lugar de lanzar una ventana child. Depende mucho de la funcionalidad ...
by cmsoft
Wed Dec 06, 2023 11:40 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Dialogos dentro de una ventana
Replies: 14
Views: 2954

Re: Dialogos dentro de una ventana

El andar dando coordenadas es un poco laborioso. ¿Es posible usar un dialogo dentro de un fichero *.rc y que aparezca en la ventana "child" ?


Y Porque no?

Regards, saludos.
by karinha
Wed Dec 06, 2023 11:36 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Dialogos dentro de una ventana
Replies: 14
Views: 2954

Dialogos dentro de una ventana

Buenos días, Tengo una ventana principal MDI DEFINE WINDOW oWnd MDI   y varias ventanas "child" define window oWnd2 MDICHILD of oWnd Dentro de esas ventanas "child" tengo que poner los controles con @10,10 say oSay prompt "reading ...." size ...
by alvaro533
Wed Dec 06, 2023 9:07 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Dialogos dentro de una ventana
Replies: 14
Views: 2954

Re: Como evitar abrir 2 veces la misma ventana child

Muchisimas gracias a todos por sus sugerencias y soluciones.
He logrado el objetivo gracias a Uds.
Es hermoso contar con este foro de amigos que tanto tiempo dedican a ayudarnos.
Muchiiiiiisiiiiimmmmmaaaaaas GRACIAS!!!! :D
by jose_murugosa
Wed Nov 29, 2023 4:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como evitar abrir 2 veces la misma ventana child
Replies: 5
Views: 409

Re: Como evitar abrir 2 veces la misma ventana child

... oBar   DEFINE WINDOW oWnd MDI   DEFINE BUTTONBAR oBar OF oWnd SIZE 100,32 2007   DEFINE BUTTON OF oBar PROMPT "Child-1" CENTER ACTION Child1()   DEFINE BUTTON OF oBar PROMPT "Child-2" CENTER ACTION Child2()   ACTIVATE ...
by nageswaragunupudi
Wed Nov 29, 2023 12:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como evitar abrir 2 veces la misma ventana child
Replies: 5
Views: 409

Re: Como evitar abrir 2 veces la misma ventana child

Mi estimado,,, Antes de abrir la ventana declara un variable static. espero que captes la idea static nNumWin := 0lSalir := .f.If nNumWin > 0   Return(Nil)EndIfDEFINE WINDOW oWndM MDI  ...............           REDEFINE BTNBMP. oSalir ,,,,,,,,,...
by Willi Quintana
Tue Nov 28, 2023 10:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como evitar abrir 2 veces la misma ventana child
Replies: 5
Views: 409
Next

Return to advanced search