How to show Quick View form on the Form's Header instead of in form body?

Hi Experts,
I am having requirement to show the Quick view form on the form's header in MS CRM 2013. Is it possible?
If yes please help me out to achieve this.
Thanks
Baji Rahaman

Thanks Andrii for quick response.
I am having look up control on the form and I would like to show the related information in header.
Is there any alternative way to achieve this.
Thanks
Baji Rahaman

Similar Messages

  • How to show all view tab (Main Report and all Sub Report) in Visual FoxPro 9

    I use ActiveX from Crystal Report Developer XI for viewer in Visual FoxPro 9 and I already know how to show Main Report by using command:
    oRptRun=createobject("CrystalRuntime.Application")
    oRptView=thisform.oleRptViewer
    oRptOpen=oRptRun.OpenReport('MyReport.rpt')
    oRptView.ReportSource=oRptOpen
    oRptView.ViewReport
    Inside the MyReport.rpt there is two subreport name :
    1. MySubReport1
    2. MySubReport2
    My Question is :
    How to show all view tab (Main Report and all Sub Report) at the 1st time we call ViewReport?
    I try to using command :
    oRptRun=createobject("CrystalRuntime.Application")
    oRptView=thisform.oleRptViewer
    oRptOpen=oRptRun.OpenReport('MyReport.rpt')
    oRptSub=oRptOpen.OpenSubreport("MySubReport1")
    oRptSub=oRptOpen.OpenSubreport("MySubReport2")
    oRptView.ReportSource=oRptOpen
    oRptView.ViewReport
    but only show Main Report (view tab name : Preview)?
    Did I miss any command before I call oRptView.ViewReport?

    Your right, there is only one tab to view the report.
    To open the subreports you will need to click on them in the main report. I don't know of a way to open them programmatically like you are doing here
    http://diamond.businessobjects.com/robhorne</a>

  • How can I quickly view pdf files like I can do with Windows Picture and Fax viewer for jpg files?

    How can I quickly view pdf files like I can do with Windows Picture and Fax viewer for jpg files? I need to look at several thousand PDF files. It takes too long to open each one individually. The only thing I could think of is combining them into large groups and then using the Navigation index. But I like the way windows Picture and Fax Viewer does it because you can keep the files separate. Combining PDFs causes loss of individual file names. That would be a problem since I do need to have the individual file names.

    Windows Picture and Fax Viewer is a DLL and is started via a rundll32.exe call and can't be set as an application to handle images in Firefox 3 and later versions.
    Try to set Windows Picture and Fax Viewer as the default viewer in Windows, then it should be listed automatically in the Mozilla Firefox Browse dialog.
    *http://www.winhelponline.com/articles/115/1/Windows-Picture-and-Fax-Viewer-as-the-default-viewer-in-Mozilla-Firefox.html
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • How many shows can I DVR at the same time?

    I just signed up for FiOS triple play with preferred HD, premium stations, 75/75 internet and phone. I was watching a show the other night and DVR'd 2 shows - got a message saying I couldn't do that. How many shows can I DVR at the same time? Can I still watch a live show while DVR's recording?
    This is SO frustrating!

    Every regular DVR has 2 tuners It can recordp to 2 shows at a time.
    If both tuners are in use,, then you can't watch anything else.
    Want to record more, get more DVRs or upgrade to Quantum.
    Lowere level has 6 tuners. THey support remote TVs and recording.
    THere agin, you can get combination of channels being watched and recorded up to 6.
    Need even more, upgrade to higher level and have 12 tuners to share.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.

  • HT2491 how to show macintosh hard drive on the desktop

    how to show macintosh hard drive on the desktop in apple macbook pro,n how can i install my canon scaner with printer on mac,i am new user,regards,dr.m.imran

    Thank you for these directions. I just created a new user account and couldn't believe the hard drive was not viewable on the desktop. It seems by default the hard drive should always be viewable on the desktop. By having absolutely nothing on the desktop when making a new user I was freaking out thinking my Mac had a bug after the OS updates.
    Thank you for the directions on how to show the hard drive on a new user's desktop.

  • How to show a background image in the Forms 6i MDI window?

    Hello,
    We are using Oracle Forms 6i Release 2 Patch 18 on Windows XP in client/server environment (not web server).
    Is there any way to show a background image in the MDI root window without using DLL injection to subclass the MDI root window procedure.
    Kurt

    Please try this 
    Public Function Decompress(ByVal arr As Byte()) As Byte()
            Dim s As Byte()
            Dim notCompressed As Boolean
            notCompressed = False
            Dim MS As System.IO.MemoryStream
            MS = New System.IO.MemoryStream()
            MS.Write(arr, 0, arr.Length)
            MS.Position = 0
            Dim stream As System.IO.Compression.GZipStream
            stream = New System.IO.Compression.GZipStream(MS, System.IO.Compression.CompressionMode.Decompress)
            Dim temp As System.IO.MemoryStream
            temp = New System.IO.MemoryStream()
            Dim buffer As Byte() = New Byte(4096) {}
            While (True)
                Try
                    Dim read As Integer
                    read = stream.Read(buffer, 0, buffer.Length)
                    If (read <= 0) Then
                        Exit While
                    Else
                        temp.Write(buffer, 0, buffer.Length)
                    End If
                Catch ex As Exception
                    notCompressed = True
                    Exit While
                End Try
            End While
            If (notCompressed = True) Then
                stream.Close()
                Return temp.ToArray()
            Else
                Return temp.ToArray()
            End If
        End Function
    Thanks & Regards Manoj

  • How to capture "show on (Viewer) panel" via the SDK

    I was able to capture other parameters such as - "Prompt text", "Default Value", "AllowCustomCurrentValues" -- from [[ReportClientDocument-DataDefControllerParameterField-DataDefinition-ParameterFields-ParameterField ]]
    But I am not able to figure out where "show on (Viewer) Panel" resides in the SDK.
    Thanks in advance
    JM

    Hi Jam,
    While using RASSDK to retrieve and set "Show on (Viewer) panel" property of a Crystal Report parameter, we can use methods on ParameterField class.
    Create an object of ReportClientDocument class for ex- ReportClientDoc and try the code                                                                               
    ReportClientDoc.getDataDefController().getDataDefinition.getParameterFields() (It returns Fields object which is collection on parameters).
    Iterate through this collection and cast each individual object to ParameterField class.                                                                               
    - Call getIsEditableOnPanel().
    It returns true if in CR Designer Show on (Viewer) panel is set to editable for the parameter.
    It returns false if "Show on (Viewer) panel" is set to Read Only.                                                                               
    - Call getIsShownOnPanel().
    It returns false if in CR Designer Show on (Viewer) panel is set to "Do not Show" and true otherwise.
    Thanks,
    Shilpi

  • How to show an empty line at the end of a ParagraphView

    Hi everybody,
    I wonder if anyone knows how to extend ParagraphView to show an empty line at the end of every paragraph?
    Thanks in advance,
    mrai

    I tried to use that class and couldn't get it to work.
    JTextField field = new JTextField();
    field.setText("blah blah");
    CompisiteView view = new ParagraphView(field.getDocument().getRootElement());
    int views = view.getViewCount() //always zero...

  • How to Show Every Open Window in the Dock

    Is there an option to show every open window in the dock?
    I have checked & tested the options but it seems somewhat selective as to which open windows appear in the dock down near the apps folder & trash. Some appear at times, but not every window, every time.

    If you mean how to restore all Finder windows that have been collapsed tot he dock, this may help:
    http://macs.about.com/od/usingyourmac/qt/tip-view-all-docked-finder-windows.htm

  • I have a fourth gen iPod Shuffle and I cannot find anywhere how to manage and view songs on the ipod, in iTunes 11 there is no intuitive way to view the songs at all. I guess Jobs thought, "why would anyone want to do that..lets make it impossible"

    I have an ipod shuffle...4th gen.
    I use iTunes 11. When ipod is
    connected is shows but there is
    no intuitive way to view and manage
    songs on the product.
    under the icon is only RECENTLY PLAYED and RECENTLY ADDED.
    Click on the icon and then select music up top of the app does NOT
    show you what is in the ipod but what is stored in itunes.
    I am now thinking this was a Steve Jobs joke he played on customers.
    Does anyone know a definative way to view and manage songs or
    a third party app that permits it.?

    I hav the same problem.  When I "Control" click on the small triangle to the left, I do not get an option to pick Music.

  • How do I set a limit to the number of registrants to an event form?

    How do I set a limit to the number of registrants filling out an event form?

    PLEASE add this feature. as far as I can tell there are no option out there that serve this need. FormAssembly, EmailMeForm, or FormsCentral. Think of how many customers would use this. Imagine a t-shirt company that pre-prints inventory, wouldn't they want to limit how many forms could be submitted that want a size L shirt? My business is participant based, like the evnt question above we need to limit the number of participants. Of course I could program my own solution, but then I would miss out on all the other cool FormsCentral features. Any chance this could be added right away if I sponsored it as a custom development?

  • How to show an arrow pointer to the Barchart image in JSP?

    Hi,
    I want to show an arrow pointer to the particular value on the barchart, i.e. arrow should point to the y-axis of barchart and should change the position accordingly depends on the value on y-axis. How can I implement this? I want to use this code in JSP?
    Thanks,

    I understand that you are not talking about an active mouse pointer.
    You can write HTML with two < div >s that overlap.
    The pointer image should be a .gif (or maybe a .png) with transparency.
    Something like this maybe:
    < div style="position: relative; top: -10px; background: transparent;"  >You can also generate a composed image, and use another JSP
    that acts as if it were an image, using getOutputStream() instead of out,
    and setContentType("image/gif") but that is more error prone.
    Develop a stand-alone test application first.

  • How to show an arrow pointer to the Barchart image?

    Hi,
    I want to show an arrow pointer to the particular value on the barchart, i.e. arrow should point to the y-axis of barchart and should change the position accordingly depends on the value on y-axis. How can I implement this? I want to use this code in JSP?
    Thanks,

    I understand that you are not talking about an active mouse pointer.
    You can write HTML with two < div >s that overlap.
    The pointer image should be a .gif (or maybe a .png) with transparency.
    Something like this maybe:
    < div style="position: relative; top: -10px; background: transparent;"  >You can also generate a composed image, and use another JSP
    that acts as if it were an image, using getOutputStream() instead of out,
    and setContentType("image/gif") but that is more error prone.
    Develop a stand-alone test application first.

  • How to see Design View when using ?php require("header.htm"); ?

    Hello
    I'm new to DW CS4 and have what's probably a simple question, but I can't figure it out.  I have a basic html website in which I'm using php require to call  header.htm and footer.htm files.  In CS4, when I open any page in the Design or Split view, it displays the header.htm file.  The only way I have been able to view the content of the page is to delete the php require code in Code View.  I then edit the page after which I have to paste the require code for the header.htm file back in before saving.
    Is there an easy fix for this?
    Many Thanks!

    Thanks for your response.  All of my pages are php pages in which I use the php require command to display a header and footer.  In CS4, when I open any page from my site in Design or Split view, all I can see is the header.htm file.  I cannot see any of the content from that particular page.  I have to go into code view and delete the <?php require("header.htm"); ?> from the code.  The I can view and edit that page's content after which I have to paste the <?php require("header.htm"); ?> command back in and load the saved file to the server.  A royal pain in the butt.

  • How to show list view of pages?

    I want to show list of subsits on navigation. when clicking a subsite on navigation  to show corresponding pages in list view. on clicking a page in list view to open page. please share your view how it can be done. 

    Hi Magesh,
    According to your description, my understanding is that you want to show subsites on the navigation, and when the mouse hovers, the corresponding pages are shown in list view, click these pages, it will be opened. Is it right?
    To achieve it, you can use managed navigation. Go to Site Settings->Term store management, you can create a term set, create terms based on the names of the subistes, for each term, click Navigation, and under Navigation Node Type, select the URL of the
    subsite for “Simple Link or Header”. Then in each corresonding subsite term, create some sub-terms related to pages, and for each sub-term, click Navigation and under Navigation Node Type, select the URLs of the corresponding page for “Simple Link or Header”.
    After the above, go to Site Settings->Navigation, on the Global Navigation section, select “Managed Navagation:…”. On the Managed Navigation :Term Set section, select the term that you created.
    More information, please refer to the link:
    http://www.c-sharpcorner.com/UploadFile/anavijai/managed-metadata-navigation-in-sharepoint-2013/
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

Maybe you are looking for