ActiveReports for .NET 2.0 Support

Started by jtengan at 02-16-2010 1:43 PM. Topic has 1 replies.

Print Search Rate
Sort Posts:    
   02-16-2010, 1:43 PM
jtengan is not online. Last active: 7/22/2011 1:31:06 AM jtengan

Not Ranked
Joined on 02-22-2008
Posts 8
Mimicing Fillable PDF type functionality
I have used the end user designer before by following the tutorial. What I would like to do is load a designer with a report that I created, with text boxes/rich text boxes etc that the user could type into, but could not change the layout of the report. Is there a way to make it so that the user is unable to move text boxes or change the background picture of a end user designer control?

Thanks

   Report 
   02-16-2010, 2:15 PM
AnkitN is not online. Last active: 6/8/2010 6:43:55 AM AnkitN

Top 25 Posts
Joined on 03-03-2009
Posts 844

DDStaff
Re: Mimicing Fillable PDF type functionality
Hello,

You can use the LayoutChanging event of designer for locking the layout of the report as shown in the following code:

private void arDesigner_LayoutChanging(object sender, LayoutChangingArgs e)
{
  if (e.Type == LayoutChangeType.ControlMove)
    {
       e.AllowChange = false;
     }
}


Regards,
Ankit Nigam


   Report 
GrapeCity » Product Support » ActiveReports f... » Re: Mimicing Fillable PDF type functionality

Privacy Policy | Copyright © 1997-2012 — GrapeCity, inc.
All trademarks mentioned are the property of their respective owners.