Search found 103 matches: owndchild

Return to advanced search

Re: MSVS 2012

... fact I already got the events as strings with THActiveX too but I am not sure if it is doing it right. Please try this: oCalex = THActiveX():New( oWndChild, "Codejock.CalendarControl.15.0.2" ) AEVal( oCalex:aEvents, { | c | MsgInfo( c[ 1 ] ) } ) As you see, we have the names but I am ...
by Antonio Linares
Tue May 21, 2013 8:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MSVS 2012
Replies: 77
Views: 15491

Re: ButtonBmp - Escape

Francisco,
It works with the changed VALID

ACTIVATE DIALOG oDlg NOWAIT ;
VALID ( oWndChild:End(), .t. ) ;
ON INIT oDlg:Move(0,0)

// VALID if(!GetKeyState(VK_ESCAPE), ( oWndChild:End(), .t. ), .F.)

Best Regards
Uwe :lol:
by ukoenig
Thu Dec 20, 2012 11:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp - Escape
Replies: 14
Views: 3154

Re: DIALOGS NOWAIT-CLAUSULA VALID

Francisco Consider this code .. notice the the variable lClosed is the key in trapping the valid close. Note that oWndChild:End() trips the valid close just like X on the window close. Rick Lipkin Local lCLosedLocal lOklCLosed := .f.lOk       := .f.cTITLE := "System Params ...
by Rick Lipkin
Thu Dec 06, 2012 2:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: DIALOGS NOWAIT-CLAUSULA VALID
Replies: 20
Views: 4510

Re: Pequeña contribución

BYRON, Compila y ejecuta este ejemplo: checa la sig. linea de codigo: DEFINE DIALOG oDlg FROM 0, 0 TO 30, 70 ; STYLE WS_CHILD OF oWndChild TRANSPARENT prueba con y sin TRANSPARENT Con transparent me sale diferente el degradado pasa eso contigo ? saludos. // This is an example of how to ...
by sysctrl2
Tue Aug 28, 2012 2:49 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pequeña contribución
Replies: 5
Views: 1361

Re: TIMER on Dialog

... with dialogs on them. Timer is checking serial port for data from barcode scanner. One more question : when i open MDI Child DEFINE WINDOW oWndChild MDICHILD OF oWnd ; FROM 5,5 TO 6,6; COLOR "N/W" ; TITLE " New Sale " ; border none nomaximize nominimize oWnd is in static ...
by mosh1
Tue Jun 26, 2012 10:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TIMER on Dialog
Replies: 14
Views: 4163

Re: VALID in dialogs

... When you use MDI ( non-modal ) and non-modal dialogs( winchild ) , valid is always evaluated when you close a window either by oWnd:CLose(), oWndChild:CLose() or by x'ing out of the application. YES, you can have a non-modal dialog ( nowait ), but if the dialog is not a MdiChild of the MDI ...
by Rick Lipkin
Fri Jun 01, 2012 12:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: VALID in dialogs
Replies: 3
Views: 665

no wait dialog of mdichild vs pure no wait dialog

Hi, a very stupid question ,what is the different between no wait dialog of mdichild vs pure no wait dialog ? DEFINE WINDOW oWndChild MDICHILD OF oWnd FROM 5,5 TO 6,6 define dialog odlg of owndchild resource "aaa" redefine get var1 id 101 of odlg ... activate dialog odlg no ...
by ShumingWang
Fri Aug 26, 2011 9:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: no wait dialog of mdichild vs pure no wait dialog
Replies: 0
Views: 272

Re: EnableCommNotification no funciona en MDI

... nComm2, nStatus, cMod ) ************************************************************ local cBuffer:=Space( 20 ),nleitor:=0 if empty(ncgetme) .and. oWndChild==Nil ReadComm( nComm2, @cBuffer ) ... endif return nil ************************************************************* static function InitModem(TBitsSeg,TPortcom,lComClose) ...
by MGA
Thu Jul 14, 2011 9:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: EnableCommNotification no funciona en MDI
Replies: 3
Views: 737

Re: CUT AN IMAGE

... In case You don't want a Border, it is a bit more complicated : You must define 2 Childs : a NON visible < oWndChild > with NOSYSMENU NOICONIZE BORDER NONE NOCAPTION A second < oWndSelect > For painting NOSYSMENU NOICONIZE You define the MDI-child ...
by ukoenig
Sun Jan 23, 2011 4:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: CUT AN IMAGE
Replies: 2
Views: 594

Re: MDI y Dialogs

... COLOR nRGB( 51,51,51 ), nRGB( 51,51,51 ); MENU FrameMenu() TITLE cTitle; ICON oIcon; MDI Y las ventanas hijas: DEFINE WINDOW oWndPClie MDICHILD OF oWndChild; FROM 0,0 TO nWHeight, nWWidth; PIXEL COLOR GetSysColor(15), GetSysColor(15); TITLE "Tabla de Géneros"; NOSYSMENU Espero que te ...
by jll-fwh
Sat Jan 08, 2011 12:51 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: MDI y Dialogs
Replies: 1
Views: 450

Re: Donde descargar ultima version tgraph

... 3 #Define GRAPH_TYPE_PIE 4 #Define GRAPH_TYPE_ALL 5 #Define POINT_TYPE_1 1 #Define POINT_TYPE_2 2 #Define POINT_TYPE_3 3 Function z() local oWndChild,oGraph oWndChild := TMdiChild():New(,,,, "Test de TGraph",,,,, .F.,,,,, .F., .F.,,, !.F., !.F., !.F., !.F., ) oGraph:=TGraph():New(0, ...
by RSalazarU
Wed Oct 13, 2010 10:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Donde descargar ultima version tgraph
Replies: 7
Views: 2832

Re: VSCROLL

Carlos,

Despues de crear la ventana MdiChild haz esto:

DEFINE SCROLLBAR oWndChild:oVScroll VERTICAL OF oWndChild

Con eso debe desaparecer ese error :-)
by Antonio Linares
Sat Sep 25, 2010 7:48 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: VSCROLL
Replies: 6
Views: 912

Re: VSCROLL

Carlos,

Cambia esta línea así:

DEFINE WINDOW oWndChild MDICHILD OF oWnd STYLE nOr( WS_DLGFRAME, WS_VSCROLL )

funciona bien :-)
by Antonio Linares
Thu Sep 23, 2010 1:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: VSCROLL
Replies: 6
Views: 912

Re: He actualizado a FiveWin 10.8 y nome Funciona la tecla ENTER

... haciendo pruebas y he compilado tu ejemplo y funciona perfectamente el ENTER, pero simplemente he puesto NOCAPTION en la linea: DEFINE WINDOW oWndChild MDICHILD OF oWnd y ya no me funciona el ENTER, haz tu la prueba. He probado con: STYLE nOr(WS_DLGFRAME) STYLE nOr(WS_BORDER) y pasa lo mismo. ...
by colthop
Mon Sep 13, 2010 6:42 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: He actualizado a FiveWin 10.8 y nome Funciona la tecla ENTER
Replies: 27
Views: 4875

Re: He actualizado a FiveWin 10.8 y nome Funciona la tecla ENTER

Carlos,

Te refieres a que lo haces asi ?

DEFINE WINDOW oWndChild MDICHILD OF oWnd STYLE nOr(WS_DLGFRAME)
by Antonio Linares
Sun Sep 12, 2010 11:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: He actualizado a FiveWin 10.8 y nome Funciona la tecla ENTER
Replies: 27
Views: 4875
PreviousNext

Return to advanced search