Welcome Guest Search | Active Topics | Sign In | Register

EO Browser: printing Options
Craig Oliver
Posted: Monday, August 10, 2015 5:06:44 PM

Rank: Advanced Member
Groups: Member

Joined: 7/7/2014
Posts: 60
On the print side of things we use the BeforePrint event to let us default to landscape printing. Removing our handler, and the select printer dialog comes up just fine, no errors (but defaulting to portrait).

Error (could not seem to insert the image):

Quote:

Assertion failed!
Program:...
File:src\BL_DataExchange.cpp
Line: 73
Expression: wcPrinterName && wcslen(wcPrinterName)>0
...


It may be noted I've seen this outside of EO when rebooting my PC. But it does happen 100% of the time when loading our printer dialog. It still loads the printers though!

Code:

private void loadPrinters()
{
      PrinterSettings settings = new PrinterSettings();
      foreach (String printer in PrinterSettings.InstalledPrinters)
      {
          ComboBoxItem item = new ComboBoxItem();
          item.Content = printer.ToString();
          if (settings.PrinterName == printer)
              item.IsSelected = true;
          cbPrinters.Items.Add(item);
      }
}
eo_support
Posted: Monday, August 10, 2015 5:42:01 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,229
Hi,

Please see if you can find any related information here:

https://code.google.com/p/chromium/issues/detail?id=473226

Thanks!
Craig Oliver
Posted: Tuesday, August 11, 2015 7:46:36 AM

Rank: Advanced Member
Groups: Member

Joined: 7/7/2014
Posts: 60
Thanks - the Foxit PDF printer was the culprit. Remove that printer and the error goes away.

Appreciate your finding that - should have searched first myself d'oh!
eo_support
Posted: Tuesday, August 11, 2015 3:00:54 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,229
No problem. I am glad to hear that the issue is resolved. :)


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.