Wednesday, January 30, 2013

How to configure IFD (claims based authentication) crm 2011 for CRM on premise

click here

http://www.interactivewebs.com/blog/index.php/server-tips/microsoft-crm-2011-how-to-configure-ifd-hosted-setup/

steps to configure IFD for CRM on premise

.Download the Microsoft Dynamics CRM 2011 Implementation Guide (click here) - Follow instructions in section "Configure Microsoft Dynamics CRM for Internet-facing deployment" to set up an IFD environment
  1. Download the Microsoft Dynamics IFD configuration tool from: http://support.microsoft.com/kb/948779
  2. Instruct your network administrator to add the following IP range (64.56.203.0-64.56.203.255) to allow access your network
  3. Instruct your network administrator to configure the external DNS to allow https://your.dynamicsurl.com to resolve from outside the firewall
  4. Wait 4-6 hours to allow time for DNS replication to complete

Printing Multiple pages in silverlight

using System.Windows.Printing;


namespace TestProject
{
    public partial class MainPage : UserControl
    {


   public MainPage()
        {

            InitializeComponent();
       
}
       int pagecount = 0;
 List<UIElement> pagesList1 = new List<UIElement>();
        private void btF11_Click(object sender, RoutedEventArgs e)
            {
            PrintDocument prtDoc = new PrintDocument();
            prtDoc.PrintPage +=new EventHandler<PrintPageEventArgs>(prtDoc_PrintPage);
            F11Dealer newDealer = new F11Dealer();
            F11Customer newcustomer = new F11Customer();

    pagesList1.Add(newDealer);
            pagecount++;
            pagesList1.Add(newcustomer);
            pagecount++;
            prtDoc.Print("F11 Report");

            }
    void prtDoc_PrintPage(object sender, PrintPageEventArgs e)
            {

            e.PageVisual = pagesList1[prtDoc.PrintedPageCount];
            e.HasMorePages = prtDoc.PrintedPageCount < (pagecount - 1);
  
            }


reference:
http://eswarbandaru.blogspot.in/2011/02/print-mulitple-pages-using-silverlight.html