Search found 11 matches: animatewindow

Return to advanced search

Re: FADE IN AND FADE OUT

hi, not sure if you search this https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-animatewindow DLLFUNCTION AnimateWindow(hwnd,dwTime,dwFlags) USING STDCALL FROM USER32.DLL     hHwnd := oDlg:GetHwnd()     DO CASE        CASE cOrtTaskbar ...
by Jimmy
Mon Nov 18, 2019 9:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FADE IN AND FADE OUT
Replies: 3
Views: 539

Re: Testing Window-Api < AnimateWindow >

I tested this windows API long time back. I was not very happy with the results, otherwise these would have been part of FWH natively long time back.
by nageswaragunupudi
Thu Jan 03, 2013 5:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Testing Window-Api < AnimateWindow >
Replies: 10
Views: 3233

Re: Testing Window-Api < AnimateWindow >

Uwe, Have you tested it with older versions of Windows? I wonder if the problem is because those are not standard Windows controls? I also wonder if a change to the paint methods of those controls would fix the problem. I know I tested it with Windows XP and all the controls I used were working fine...
by James Bott
Thu Jan 03, 2013 3:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Testing Window-Api < AnimateWindow >
Replies: 10
Views: 3233

... == 2 cAni:= AW_HOR_NEGATIVE ELSEIF nSel == 3 cAni:= AW_VER_POSITIVE ELSEIF nSel == 4 cAni:= AW_VER_NEGATIVE ELSEIF nSel == 0 cAni:= AW_BLEND ENDIF AnimateWindow( oDlg : hWnd, 200, cAni ) oDlg : refresh() Return 0 DLL32 function AnimateWindow( hWnd As LONG, dwTime As LONG, dwFlags As LONG ) AS LONG ...
by MauroArevalo
Thu Jun 26, 2008 5:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: COMO ABRIR LAS VENTANA EN FORMA DE ZOOM
Replies: 1
Views: 690

Horacio: !Espectacular¡ Gracias. Rubén: De lo que entendi. Efecto de izquierda a derecha *----------------------------- Function Izquierda( oDlg ) AnimateWindow( oDlg : hWnd, 200, AW_HOR_POSITIVE ) oDlg:refres() Return 0 Efecto de derecha izquierda *----------------------------- Function Derecha( ...
by MauroArevalo
Sat Feb 16, 2008 6:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: efectos para dialogos
Replies: 19
Views: 4240

... == 2 cAni:= AW_HOR_NEGATIVE ELSEIF nSel == 3 cAni:= AW_VER_POSITIVE ELSEIF nSel == 4 cAni:= AW_VER_NEGATIVE ELSEIF nSel == 0 cAni:= AW_BLEND ENDIF AnimateWindow( oDlg : hWnd, 200, cAni ) oDlg:Refresh() RETURN 0 Saludos desde México.. :lol:
by cuatecatl82
Sat Feb 16, 2008 6:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: efectos para dialogos
Replies: 19
Views: 4240

Special effects for dialogs

... oDlg Pixel Action oDlg : End() Activate Dialog oDlg On Init Centra( oDlg ) Centered Valid( Fade( oDlg ), .t. ) Return 0 Function fade( oDlg ) If( AnimateWindow( oDlg : hWnd, 1000, AW_BLEND + AW_HIDE ) == 0 ) oDlg : Hide() endif Return 0 Function Centra( oDlg ) AnimateWindow( oDlg : hWnd, 200, ...
by horacio
Fri Feb 15, 2008 9:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Special effects for dialogs
Replies: 2
Views: 766

efectos para dialogos

... oDlg Pixel Action oDlg : End() Activate Dialog oDlg On Init Centra( oDlg ) Centered Valid( Fade( oDlg ), .t. ) Return 0 Function fade( oDlg ) If( AnimateWindow( oDlg : hWnd, 1000, AW_BLEND + AW_HIDE ) == 0 ) oDlg : Hide() endif Return 0 Function Centra( oDlg ) AnimateWindow( oDlg : hWnd, 200, ...
by horacio
Fri Feb 15, 2008 2:51 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: efectos para dialogos
Replies: 19
Views: 4240

NageswaraRao,

Yes, I have noticed that too.

I would not recommend to use AnimateWindow() as it does not uses FWH windows procedure, but the standard (default) one
by Antonio Linares
Mon Nov 05, 2007 8:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Animation of Windows
Replies: 11
Views: 2625

... shall continue experimenting with on paint ownd:say, etc. I am using opening activation as Mr. Antonio suggested. For closing I am using " VALID ( AnimateWindow( oWnd:hWnd, 200, nOr ( AW_HIDE, AW_VER_POSITVE ), .T. )". Mr. Antonio may suggest, with this usage is the window properly closed and released?.
by nageswaragunupudi
Mon Nov 05, 2007 8:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Animation of Windows
Replies: 11
Views: 2625

Animation of Windows

... message dialogs, which pop up (sliding upwards) in the right bottom corner of the screen, like some instant messengers do. I am trying with the AnimateWindow( HWND hWnd, DWORD dwTime, DWORD dwFlags) of user32.dll. Borland's winuser.h has the constants and prototype of this function. I am able ...
by nageswaragunupudi
Sun Nov 04, 2007 3:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Animation of Windows
Replies: 11
Views: 2625

Return to advanced search