This topic and its replies were posted before the current version of LEADTOOLS was released and may no longer be applicable.
#1
Posted
:
Thursday, July 5, 2007 11:24:56 PM(UTC)
Groups: Registered
Posts: 6
Hi,
I put this code:
_rasterDlgFile.Filter:= 'All Files|*.*';
_rasterDlgFile.FileDlgFlags:=0;
_rasterDlgFile.DialogTitle:= 'Save File';
_rasterDlgFile.Bitmap:=_rasterViewer.Raster.Bitmap;
_rasterDlgFile.UIFlags:=SAVE_SHOW_FILEOPTIONS_STAMP +
SAVE_SHOW_FILEOPTIONS_MULTIPAGE +
SAVE_SHOW_FILEOPTIONS_PROGRESSIVE +
SAVE_SHOW_FILEOPTIONS_J2KOPTIONS +
SAVE_SHOW_FILEOPTIONS_BASICJ2KOPTIONS +
SAVE_SHOW_FILEOPTIONS_QFACTOR +
SAVE_ENABLESIZING +
SAVE_AUTOPROCESS;
try
nRet:=_rasterDlgFile.ShowSaveDlg(Handle);
except
end;
In the except, appears this error: LEAD Error: Feature not available. Why?? I don't understand! I need some file .dll more?
Please, I need help!!!!
Thank you.
#2
Posted
:
Monday, July 9, 2007 4:15:24 AM(UTC)
Groups: Guests
Posts: 3,022
Was thanked: 2 time(s) in 2 post(s)
If you already initialized the
dialogs, one possible reason for the error is absence of needed DLLs. The SAVE_AUTOPROCESS
flag causes the dialog to actually try to save the image. If you don't have the
appropriate file format DLL (LF???14n.DLL).
Please read the help topic "Files to be Included
with Your Application" and make sure you have all the correct files for
the features you're using.
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.