Hi Everyone,

Can I ask your Suggestion/Help about this query.

I am using the Crystal Reports in C#, I want CR to call in MenuStrip(Menu). Every time that I run the main form of my system. I want to call the the CR in menu.

My Menustrip calling for FORM, but I want to call the CR.

 Form Form1;

    private void institutionalToolStripMenuItem_Click(object sender, EventArgs e)
    {
        if (Form1 == null)
        {
            Form1 = new Form1();
            Form1.FormClosed += new FormClosedEventHandler(Form1_FormClosed);
            Form1.Show();


        }

        else {

            Form1.Activate();
        }

                }

    void Form1_FormClosed(object sender, FormClosedEventArgs e)
    {
        //throw new NotImplementedException();
        Form1 = null;

    }

Regards,

Darryl

Recommended Answers

All 2 Replies

Thanks, I got it?

it is possible to landscape your Crystal reports before you print?

I saw this on the search engine:

Crystal Reports uses your current printer settings. Change those, and your report changes to match.

So, to change the orientation of your report to landscape view:

File -> Printer Setup.

In the "Orientation" section, choose "Landscape".

But in my situation i had a lot of Entity fields in my db, I want to landscape the Crystal Reports Templates, it is possible?

Regards,

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.