Unable to view specified Url Article
Hi,
As i was going through the below mentioned articles in the forums
http://www.syncfusion.com/support/forums/message.aspx?MessageID=19398
http://www.syncfusion.com/support/forums/message.aspx?MessageID=17722
http://www.syncfusion.com/support/forums/message.aspx?MessageID=13195
I found below link which is related to my problem but i am unable to find this article as it is asking for enter an Article id to view.
http://www.syncfusion.com/Support/article.aspx?id=10377
please help me
Thanks,
mahesh
As i was going through the below mentioned articles in the forums
http://www.syncfusion.com/support/forums/message.aspx?MessageID=19398
http://www.syncfusion.com/support/forums/message.aspx?MessageID=17722
http://www.syncfusion.com/support/forums/message.aspx?MessageID=13195
I found below link which is related to my problem but i am unable to find this article as it is asking for enter an Article id to view.
http://www.syncfusion.com/Support/article.aspx?id=10377
please help me
Thanks,
mahesh
SIGN IN To post a reply.
5 Replies
SR
SubhaSheela R
Syncfusion Team
July 28, 2008 07:14 AM UTC
Hi Mahesh,
Thanks for your interest in syncfusion products.
If your intention is to have two or more grids on the same page, then you can refer the below KB article that discusses the same.
http://www.syncfusion.com/support/kb/grid/Default.aspx?ToDo=view&questId=63
Please let me know if it helps.
Regards,
Subhasheela R
Thanks for your interest in syncfusion products.
If your intention is to have two or more grids on the same page, then you can refer the below KB article that discusses the same.
http://www.syncfusion.com/support/kb/grid/Default.aspx?ToDo=view&questId=63
Please let me know if it helps.
Regards,
Subhasheela R
AD
Administrator
Syncfusion Team
July 28, 2008 10:55 AM UTC
Hi Subhasheela
Thanks for your reply,
Why can't I read that article..?
Actually my requirement is to print Multiple grids which consists different no.of rows and columns.
1.If no.of columns are more Shrink those columns to appear on same page, they shouldn't get Trimmed.
2.If there are more no.of rows they must move to next pages.
I've also tried the following
C:\Documents\Syncfusion\EssentialStudio\5.1.1.47\Windows\Grid.Windows\Samples\2.0\Printing\PrintToFit
it is printing the Grid in one page instead I need to move on to next pages.
And more over it is printing only the First Grid but not other Grids.
I am sending a sample regarding this, please go through it and give me the suitable suggestion.
Thanks,
Mahesh
Print Multiple Grids_a730d62.zip
Thanks for your reply,
Why can't I read that article..?
Actually my requirement is to print Multiple grids which consists different no.of rows and columns.
1.If no.of columns are more Shrink those columns to appear on same page, they shouldn't get Trimmed.
2.If there are more no.of rows they must move to next pages.
I've also tried the following
C:\Documents\Syncfusion\EssentialStudio\5.1.1.47\Windows\Grid.Windows\Samples\2.0\Printing\PrintToFit
it is printing the Grid in one page instead I need to move on to next pages.
And more over it is printing only the First Grid but not other Grids.
I am sending a sample regarding this, please go through it and give me the suitable suggestion.
Thanks,
Mahesh
Print Multiple Grids_a730d62.zip
SR
SubhaSheela R
Syncfusion Team
August 5, 2008 07:27 AM UTC
Hi Mahesh,
We regret for the long delay caused in getting back to you.
Please refer the below code to print More than one grid one after another and let me know if this helps.
if (this.gridControl1 != null)
{
try
{
GridPrintDocument pd = new GridPrintDocument(this.gridControl1, true);
PrintDialog dlg = new PrintDialog() ;
dlg.Document = pd;
if(dlg.ShowDialog() == DialogResult.OK)
{
pd.Print(); //print first grid
//print the next grid with same settings...
GridPrintDocument pd1 = new GridPrintDocument(this.gridControl2, true);
pd1.DefaultPageSettings = pd.DefaultPageSettings;
pd1.Print(); //print the second grid
}
}
catch(Exception ex)
{
MessageBox.Show("An error occurred attempting to print- " + ex.Message);
}
}
Regards,
Subhasheela R
MA
mahesh
August 8, 2008 04:39 AM UTC
Thanks for your reply Subhasheela
SR
SubhaSheela R
Syncfusion Team
August 25, 2008 04:09 AM UTC
Hi Mahesh,
Thanks for your update.
Please feel free to open new one if you have any other concerns.
Regards,
Subhasheela R
Thanks for your update.
Please feel free to open new one if you have any other concerns.
Regards,
Subhasheela R
SIGN IN To post a reply.
- 5 Replies
- 3 Participants
-
MA mahesh
- Jul 26, 2008 07:49 AM UTC
- Aug 25, 2008 04:09 AM UTC