Search found 12 matches: nomove

Return to advanced search

Re: EJECUTAR UN .EXE

ASI /* - autor: wmormar, INCOS - wmormar@hotmail.com - fecha: 31 . octubre . 2008 - hora: 03.11 */ #include "fivewin.ch" FUNCTION main() LOCAL oBmp LOCAL tCalc32 LOCAL oCalculator Local lIncrustar:=.f. //LOCAL this := Self LOCAL lSalir := .f. /* IF ::oCalculator:classname() == "TDIALO...
by Claudio Leiva
Mon Mar 27, 2017 9:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: EJECUTAR UN .EXE
Replies: 13
Views: 2231

Re: Question about control tab order

George, You may use SetWindowPos() to change the tab order of a control: SetWindowPos( hWndControl, hWndControlInsertAfter, 0, 0, 0, 0, nOr( SWP_NOMOVE, SWP_NOSIZE ) ) i.e., if you have two GETs, oGet1 and oGet2, then: SetWindowPos( oGet2:hWnd, oGet1:hWnd, 0, 0, 0, 0, nOr( SWP_NOMOVE, SWP_NOSIZE ) )...
by Antonio Linares
Fri May 04, 2012 6:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about control tab order
Replies: 4
Views: 954

Re: TGET, ACTION, VALID problem?

Dear Uwe, Thank you for your reply, it work fine but how can I do without put oGet1:SetFocus() (How to change in TGET.PRG?). Because it change in classes only one time and do not put in all GET ACTION VALID. METHOD CreateButton() CLASS TGet local oThis := Self local hBitmap local nBmpWidth := 1 loca...
by dutch
Fri Mar 26, 2010 6:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGET, ACTION, VALID problem?
Replies: 2
Views: 623

Re: Siempre "on top"

Muchas gracias a los dos. Alvaro static ontop:=.t. SetWindowPos( oWnd:hWnd, if( ontop , HWND_TOPMOST , HWND_NOTOPMOST ) , 0, 0, 0, 0, ; nOr( SWP_NOMOVE, SWP_NOSIZE, SWP_SHOWWINDOW, SWP_NOACTIVATE ) ) ontop:=!ontop #define SWP_NOSIZE 0x0001 #define SWP_NOMOVE 0x0002 #define SWP_NOZORDER 0x0004 #defin...
by alvaro533
Sat Jan 24, 2009 11:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Siempre "on top"
Replies: 4
Views: 654

Re: Siempre "on top"

Alvaro,

Tienes que llamar a la función nOr() en vez de a "|":

nOr( SWP_NOMOVE, SWP_NOSIZE, SWP_SHOWWINDOW, SWP_NOACTIVATE )
by Antonio Linares
Sat Jan 24, 2009 6:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Siempre "on top"
Replies: 4
Views: 654

Re: Siempre "on top"

alvaro,

SetWindowPos( oWnd:hWnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE |;
SWP_NOSIZE |;
SWP_SHOWWINDOW |;
SWP_NOACTIVATE )
by wmormar
Sat Jan 24, 2009 4:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Siempre "on top"
Replies: 4
Views: 654

1. Como puedo hacer para que un dialogo o ventana este siempre al frente y no se pueda mover ni cambiar de tamaño. Revisa el ejemplo TestTop.prg de todas formas te dejo una explicacion de esta funcion que la puedes conseguir en los help de FWH Changes the size, position, and Z order of a child, pop...
by Daniel Garcia-Gil
Wed Nov 26, 2008 2:23 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Dialogo o ventana siempre al frente!
Replies: 8
Views: 2273

Es un buen trabajo, lo probe y seguro lo uso, me encontre con estos inconvenientes, es seguro que esperas comentarios y experiencias con el uso de la misma.... la idea es que trabaje con cualquier calculadora, en espaniol - ingles u otro idioma, lo malo es que solo funciona para cuando la calculador...
by Daniel Garcia-Gil
Fri Oct 31, 2008 9:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Incrustar CALCULADORA en FWH
Replies: 11
Views: 2720

Problem with Editor of Source

Friends have following problems backspace doesnot deleted bar scroll horizontal text colur green commentar painted all Here Source Code #include "FiveWin.ch" /// VISUAL EDITOR E INTERPRETE DE CODIGO /* LIMITACIONES DEL INTERPRETE - NO SOPORTA LOOP - NO SOPORTA Local tc:=gsbus(_VG("PRO_2140"),'CAM'+x...
by Vladimir Zorrilla
Wed Jun 18, 2008 10:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with Editor of Source
Replies: 1
Views: 1525

Editor de Codigo con syntaxis coloreada interperte y texto i

Estimados Amigos se puede hacer con fw un editor con texto inteligente interprete y syntaxis coloreada . Estoy desarrollandolo pero tengo los siguientes problemas - El backspace no borra - El scroll horizontal no funciona - El pintado de el texto en verde e comentario cuando se hace pagina arriba ab...
by Vladimir Zorrilla
Wed Jun 18, 2008 10:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Editor de Codigo con syntaxis coloreada interperte y texto i
Replies: 1
Views: 2157

bLostFocus in a Dialog

The following code must put the window on top always and never loose focus. Windows is always on top but it looses focus, it seems to me that bLostFocus is not working, I prove with GotFocus and Set Focus and is the same thing. Could somebody helpme please, becouse I cant find a solution. Here is th...
by jose_murugosa
Mon Jul 31, 2006 12:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: bLostFocus in a Dialog
Replies: 4
Views: 1768

Block bLostFocus() de Windows o Dialog

El código que sigue, debería poner la ventana siempre visible y no debería perder foco nunca a menos que se cerrara. Si bien queda siempre visible, el block bLostFocus que debería volver el foco a la ventana no lo hace, probé con GotFocus y SetFocus y es lo mismo, parece que ignora el block. Alguien...
by jose_murugosa
Mon Jul 31, 2006 12:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Block bLostFocus() de Windows o Dialog
Replies: 0
Views: 454

Return to advanced search

cron