Signatures
Signatures
All,
Has anyone devised a way to capture a signature and save it as a graphic image?
Thanks,
Randal Ferguson
Has anyone devised a way to capture a signature and save it as a graphic image?
Thanks,
Randal Ferguson
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Thank Antonio
Now I try to save the window in a BMP with SaveToBmp but in FWPPC
don't exist
I try
DEFAULT cFile := CurDir() + "\Test.Bmp"
hBmp := WndBitmap( oWnd:hWnd )
hDib := DibFromBitmap( hBmp )
DibWrite( cFile, hDib )
GloBalFree( hDib )
DeleteObject( hBmp )
But I have "error 6"
Any Idea
Regards MAurizio
Now I try to save the window in a BMP with SaveToBmp but in FWPPC
don't exist
I try
DEFAULT cFile := CurDir() + "\Test.Bmp"
hBmp := WndBitmap( oWnd:hWnd )
hDib := DibFromBitmap( hBmp )
DibWrite( cFile, hDib )
GloBalFree( hDib )
DeleteObject( hBmp )
But I have "error 6"
Any Idea
Regards MAurizio
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Hello Antonio I have now found the solution .
Now I have to set the quality of the signature .
I found an old messagge send by you regarding this :
" You may try to fine tune the mouse speed using SystemParametersInf()
and the SPI_SETMOUSE flag. Also check mouse_event()"
How it is possible to do this ?
Regards Maurizio
Now I have to set the quality of the signature .
I found an old messagge send by you regarding this :
" You may try to fine tune the mouse speed using SystemParametersInf()
and the SPI_SETMOUSE flag. Also check mouse_event()"
How it is possible to do this ?
Regards Maurizio
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Maurizio,
We have already implemented support to save any window or control as a BMP file.
We have already implemented support to save any window or control as a BMP file.
Code: Select all
#include "FWCE.ch"
function Main()
DEFINE WINDOW oWnd TITLE "SaveToBmp"
@ 9, 2 BUTTON "Save To Bmp" ;
SIZE 210, 30 ;
ACTION ( oWnd:SaveToBmp( CurDir() + "\test.bmp" ), MsgInfo( "done!" ) )
ACTIVATE WINDOW oWnd
return nil