Project Wizard does not start

When I create a new project, I cannot get the Project Wizard to start. When
I go to Project | Page Setup and select the Templates tab it is empty? The
code (.NET c#) I use to open the project is very simple:

OleDbCommand cmd = new OleDbCommand(“SELECT * FROM StudentData”, dbConn);
OleDbDataAdapter adapter = new OleDbDataAdapter(cmd);

DataTable dtStudent = new DataTable(“Students”);

adapter.Fill(dtStudent);

cmd = null;

adapter = null;

listLabel1.SetDataBinding(dtStudent, string.Empty);

listLabel1.AutoProjectType = LlProject.Label | LlProject.FileAlsoNew;

listLabel1.Design();

dbConn.Close();

dbConn.Dispose();

Is there something else I need to be doing?

I did verify that the New Project Wizard check box was checked in Options,
Workspace tab.

If I run the Example Program (.NET C#), it fires the Project Wizard when I
create a new project.

Thanks,

Tim

Do the files ‘cmll15??.inf’ (label formats) and ‘cmll15pw.llx’ (project
wizard) exist on your system? Or even better: Do these files exist in the
same folder as the List & Label main DLLs (e.g. cmll15.dll)?

In the textfile ‘redist.txt’ I could find the following information about
that:

CMLL15PW.LLX (optional, project wizard)

CMLL15??.INF (optional, contains label formats; has to be
in the same path of CMLL15.DLL) *1

Maybe it could help you?!

“tk” <tkelley@hrimagin…> schrieb im Newsbeitrag
news:20365252010173446@combit.net…

When I create a new project, I cannot get the Project Wizard to start.
When I go to Project | Page Setup and select the Templates tab it is
empty? The code (.NET c#) I use to open the project is very simple:

OleDbCommand cmd = new OleDbCommand(“SELECT * FROM StudentData”, dbConn);
OleDbDataAdapter adapter = new OleDbDataAdapter(cmd);

DataTable dtStudent = new DataTable(“Students”);

adapter.Fill(dtStudent);

cmd = null;

adapter = null;

listLabel1.SetDataBinding(dtStudent, string.Empty);

listLabel1.AutoProjectType = LlProject.Label | LlProject.FileAlsoNew;

listLabel1.Design();

dbConn.Close();

dbConn.Dispose();

Is there something else I need to be doing?

I did verify that the New Project Wizard check box was checked in Options,
Workspace tab.

If I run the Example Program (.NET C#), it fires the Project Wizard when I
create a new project.

Thanks,

Tim