OpenPcitureDialog

Discuss and ask questions about CAD VCL (Delphi and C++ Builder).

Moderators: SDS, support, admin

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Re: OpenPcitureDialog

Post by support » 24 Dec 2012, 17:23

Hello Roland.
Please try to switch off SHX fonts using before call LoadFromFile with the version 8.1. This can be done also with Viewer application menu option.
The second issue you described not reproduced on our side. Please test it with the latest library version. We have sent necessary information to your e-mailbox.

Alexander.
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

Roland
Posts: 11
Joined: 25 Apr 2008, 12:52

Re: OpenPcitureDialog

Post by Roland » 02 Jan 2013, 13:36

Using SHX fonts seem to off by default so i tried turning them on. We'll see if that works on the client's PC.

Strangely turning SHX fonts on solves the 'new' issue on my PC. We have noticed that this issue may be linked to AutoCAD itself. On computers where AutoCAD is installed (I have AutoCAD 2011) when we call LoadFromFile some AutoCAD modules (DLL's) are loaded aswell autmatically and we get the issue. On computers without AutoCAD installed this issue doesn't occur. The strange lines look to be fonts that aren't displayed correctly - very big letters. I'm getting the same with 8.1 and the 9.0 test code.

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Re: OpenPcitureDialog

Post by support » 03 Jan 2013, 16:16

Hello Roland.
The following code must be executed before loading a file to use SHX fonts:

Code: Select all

  bUseSHXFonts := true;
  sSHXSearchPaths := paths;
  sDefaultSHXPath := path;
  sDefaultSHXFont := font_name.shx; 
A number of folders that will be searched for SHX fonts can be set to sSHXSearchPaths. If a SHX font that defined by style not found then it will be replaced with an other font. Please note, paths that specified in sSHXSearchPaths affect replacement algorithm, even if bUseSHXFonts := false.
On computers where AutoCAD is installed (I have AutoCAD 2011) when we call LoadFromFile some AutoCAD modules (DLL's) are loaded aswell autmatically and we get the issue
Not exactly. It looks like sSHXSearchPaths contains paths to AutoCAD SHX fonts. Viewer demo stores the value in "Settings.ini" file, possibly your application uses the same scheme?

Please note, correspond fonts must be used to display texts correctly!!!

We thought you use SHX fonts because most AutoCAD drawings contain SHX texts. So returning to the first issue - try to switch on/off all SHX parameters.

Alexander.
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

Roland
Posts: 11
Joined: 25 Apr 2008, 12:52

Re: OpenPcitureDialog

Post by Roland » 11 Feb 2013, 16:37

I tried with the following settings:
bSearchSHXPaths := False;
sSHXSearchPaths := ExtractFilePath(ParamStr(0));
bUseSHXFonts := True;
sDefaultSHXFont = simplex.shx

And put the simplex.shx font in the app folder.

This works then. I guess the user has a font installed on the computer which cannot be read?

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Re: OpenPcitureDialog

Post by support » 21 Feb 2013, 16:57

Hello Roland.
We have tested the file that you sent. It requires specific SHX file that contains compiled forms definitions. The problem can be related to this file. Please send this file to support@cadsofttools.com for testing, if possible.

Alexander.
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

Post Reply