Sehr geehrte Damen und Herren,
mit folgendem Code funktioniert eigentlich alles prima.
combit.ListLabel24.ListLabel LL = new combit.ListLabel24.ListLabel();
LL.LicensingInfo = Program.LLKey;
LL.DataSource = CreateDataSetResult();
LL.DataMember = "xxx";
LL.AutoProjectFile = fullname;
LL.AutoDestination = LlPrintMode.Preview;
LL.AutoFileAlsoNew = false;
LL.AutoProjectType = LlProject.List;
LL.AutoShowSelectFile = false;
try
{
if (chbDesigner.Checked)
LL.Design();
else
LL.Print();
}
catch (ListLabelException ex)
{
MessageBox.Show(ex.Message);
}
LL.Dispose();
Nur wenn ich dann im DruckDlg die Vorschau auswähle bekomme ich dort (in der preview) keine Menüband für z.B. Export und Print.
Was mache ich falsch.
Danke Dirk