This member of Class WaveLinkScribblePad is supported on: Palm, CE
The DisplayDialog Method displays the scribble pad dialog box. When the user presses the OK button, the picture is saved to a .jpg or .bmp file.
Syntax
public void DisplayDialog(String trgtFileName)
throws WaveLinkError
Parameters
trgtFileName |
The file in which the new picture is saved, with a .jpg or .bmp extension |
Throws
WaveLinkError
Remarks
If you do not include the full path in the file name, the ScribblePad file is stored in the directory where the application is running.
Example
WaveLinkScribblePad scribIface = new WaveLinkScribblePad();
.
.
.
try {
scribIface.DisplayDialog("Sig.jpg");
}
catch (WaveLinkError wlErr) {
//Do error handling
}
Was this article useful?
The topic was:
Inaccurate
Incomplete
Not what I expected
Other