Help with CR Viewer XI

Post Author: Lee XI
CA Forum: General
Hello all. I'm currently using CR XI (not server) and downloaded the Viewer yesterday to test on a spare pc. Reason for this is I want others to be able to view and set parameters I designed in the report(s). However, when you open the Viewer, no parameters that I set up are showing. (IE: date, State, Customer, etc) When I am in CR XI and I hit refresh it brings up all the parameters that should be available to the end users to adjust the report manually.The reason I'm trying to go this route is that our company is small and running CR server is out of the budget. Should the viewer allow for prompted params for those using the CR Viewer or not? I do not want to waste time with this if the Viewer cannot or will not allow end users to select a date range or state, or other params I want them to? I do not want to purchase another CR XI version because I do not want these users to have design access to the reports. I simply want them to be able to select certain params that I have set up for them. Thanks in advance! Lee

Post Author: DRCL
CA Forum: General
I have discovered another issue with the viewer also.
If a report is designed/saved in LANDSCAPE mode, but the recipient opens in the viewer and the printer default is PORTRAIT, then it automatically prints in Portrait. It scales to fit to the page.
If the user overrides the default and changes it to LANDSCAPE, it still prints in Portrait.
Any ideas on this or the linked OLE issues would be much appreciated.

Similar Messages

  • Need Help with Crystal viewer and ActiveX

    Hi !!
    I have a problem that i cant seem to be able to solve. I had alot of help from the forum but i think i got everything mixtup now...
    From my addon i can print with CrystalReport Viewer or i cant print a Crystal report directly to my default printer, so thats good and working well. The problem is with Crystal Viewer that drags on the SBO screen and stays on the task bar.
    It is strongly recommended to use an Activex to display my Crystal Viewer report. I tried so many differrent ways allways ending up with class id errors, or private class errors.
    My report is called c:\report.rpt
    My Working CrystalViewer form is called 'frmCRV'
    Can some one help me thru this last step...  I tried with the Activex sample in SDK but i think i dont have to use the Tree function ??? am i right ??
    I'm running on SBO 2005 SP1 PL3
    Crystal Report .net V10 and .net for code.
    Thanks you all for your patience.

    Hi Again !
    I can now open a form with an Activex part but i cant pass my CrystalViewer in it. Always says specified cast not valid.
    Thanks

  • Help with image viewer

    Would love some help with this one.. I am new so please bare with me. This app just reads contents of a txt file. What I am trying to add is the ability to display an image inside the program frame with scrolls bars.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class Viewer extends JFrame
       private JMenuBar menuBar;
       private JMenu fileMenu;
       private JMenu fontMenu;
       private JMenuItem newItem;
       private JMenuItem openItem;
       private JMenuItem saveItem;
       private JMenuItem saveAsItem;
       private JMenuItem exitItem;
       private JRadioButtonMenuItem monoItem;
       private JRadioButtonMenuItem serifItem;
       private JRadioButtonMenuItem sansSerifItem;
       private JCheckBoxMenuItem italicItem;
       private JCheckBoxMenuItem boldItem;
       private String filename;
       private JTextArea editorText;
         private JLabel label;
       private final int NUM_LINES = 20;
       private final int NUM_CHARS = 40;
       public Viewer()
          setTitle("Viewer");
          setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          editorText = new JTextArea(NUM_LINES, NUM_CHARS);
          editorText.setLineWrap(true);
          editorText.setWrapStyleWord(true);
          JScrollPane scrollPane = new JScrollPane(editorText);
          add(scrollPane);
          buildMenuBar();
          pack();
          setVisible(true);
       private void buildMenuBar()
          buildFileMenu();
          buildFontMenu();
          menuBar = new JMenuBar();
          menuBar.add(fileMenu);
          menuBar.add(fontMenu);
          setJMenuBar(menuBar);
       private void buildFileMenu()
          newItem = new JMenuItem("New");
          newItem.setMnemonic(KeyEvent.VK_N);
          newItem.addActionListener(new NewListener());
          openItem = new JMenuItem("Open");
          openItem.setMnemonic(KeyEvent.VK_O);
          openItem.addActionListener(new OpenListener());
          saveItem = new JMenuItem("Save");
          saveItem.setMnemonic(KeyEvent.VK_S);
          saveItem.addActionListener(new SaveListener());
          saveAsItem = new JMenuItem("Save As");
          saveAsItem.setMnemonic(KeyEvent.VK_A);
          saveAsItem.addActionListener(new SaveListener());
          exitItem = new JMenuItem("Exit");
          exitItem.setMnemonic(KeyEvent.VK_X);
          exitItem.addActionListener(new ExitListener());
          fileMenu = new JMenu("File");
          fileMenu.setMnemonic(KeyEvent.VK_F);
          fileMenu.add(newItem);
          fileMenu.add(openItem);
          fileMenu.addSeparator();
          fileMenu.add(saveItem);
          fileMenu.add(saveAsItem);
          fileMenu.addSeparator();
          fileMenu.add(exitItem);
       private void buildFontMenu()
          monoItem = new JRadioButtonMenuItem("Monospaced");
          monoItem.addActionListener(new FontListener());
          serifItem = new JRadioButtonMenuItem("Serif");
          serifItem.addActionListener(new FontListener());
          sansSerifItem =
                  new JRadioButtonMenuItem("SansSerif", true);
          sansSerifItem.addActionListener(new FontListener());
          ButtonGroup group = new ButtonGroup();
          group.add(monoItem);
          group.add(serifItem);
          group.add(sansSerifItem);
          italicItem = new JCheckBoxMenuItem("Italic");
          italicItem.addActionListener(new FontListener());
          boldItem = new JCheckBoxMenuItem("Bold");
          boldItem.addActionListener(new FontListener());
          fontMenu = new JMenu("Font");
          fontMenu.setMnemonic(KeyEvent.VK_T);
          fontMenu.add(monoItem);
          fontMenu.add(serifItem);
          fontMenu.add(sansSerifItem);
          fontMenu.addSeparator();
          fontMenu.add(italicItem);
          fontMenu.add(boldItem);
       private class NewListener implements ActionListener
          public void actionPerformed(ActionEvent e)
             editorText.setText("");
             filename = null;
       private class OpenListener implements ActionListener
          public void actionPerformed(ActionEvent e)
             int chooserStatus;
             JFileChooser chooser = new JFileChooser();
             chooserStatus = chooser.showOpenDialog(null);
             if (chooserStatus == JFileChooser.APPROVE_OPTION)
                File selectedFile = chooser.getSelectedFile();
                filename = selectedFile.getPath();
                if (!openFile(filename))
                   JOptionPane.showMessageDialog(null,
                                    "Error reading " +
                                    filename, "Error",
                                    JOptionPane.ERROR_MESSAGE);
          private boolean openFile(String filename)
             boolean success;
             String inputLine, editorString = "";
             FileReader freader;
             BufferedReader inputFile;
                   label = new JLabel();
                    add(label);
             try
                freader = new FileReader(filename);
                inputFile = new BufferedReader(freader);
                inputLine = inputFile.readLine();
                while (inputLine != null)
                   editorString = editorString +
                                  inputLine + "\n";
                   inputLine = inputFile.readLine();
                editorText.setText(editorString);
                inputFile.close(); 
                success = true;
             catch (IOException e)
                success = false;
             return success;
       private class SaveListener implements ActionListener
          public void actionPerformed(ActionEvent e)
             int chooserStatus;
             if (e.getActionCommand() == "Save As" ||
                 filename == null)
                JFileChooser chooser = new JFileChooser();
                chooserStatus = chooser.showSaveDialog(null);
                if (chooserStatus == JFileChooser.APPROVE_OPTION)
                   File selectedFile =
                                 chooser.getSelectedFile();
                   filename = selectedFile.getPath();
             if (!saveFile(filename))
                JOptionPane.showMessageDialog(null,
                                   "Error saving " +
                                   filename,
                                   "Error",
                                   JOptionPane.ERROR_MESSAGE);
          private boolean saveFile(String filename)
             boolean success;
             String editorString;
             FileWriter fwriter;
             PrintWriter outputFile;
             try
                fwriter = new FileWriter(filename);
                outputFile = new PrintWriter(fwriter);
                editorString = editorText.getText();
                outputFile.print(editorString);
                outputFile.close();
                success = true;
             catch (IOException e)
                 success = false;
             return success;
       private class ExitListener implements ActionListener
          public void actionPerformed(ActionEvent e)
             System.exit(0);
       private class FontListener implements ActionListener
          public void actionPerformed(ActionEvent e)
             Font textFont = editorText.getFont();
             String fontName = textFont.getName();
             int fontSize = textFont.getSize();
             int fontStyle = Font.PLAIN;
             if (monoItem.isSelected())
                fontName = "Monospaced";
             else if (serifItem.isSelected())
                fontName = "Serif";
             else if (sansSerifItem.isSelected())
                fontName = "SansSerif";
             if (italicItem.isSelected())
                fontStyle += Font.ITALIC;
             if (boldItem.isSelected())
                fontStyle += Font.BOLD;
             editorText.setFont(new Font(fontName,
                                    fontStyle, fontSize));
       public static void main(String[] args)
          Viewer ve = new Viewer();
    }I tried using JLabel() but I cant seem to make it work. Whenever i browse and select a .jpg it displays "�������t���o\�[��+�p��B3�+�p��B3�"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    In the future, Swing related questions should be posted in the Swing forum.
    Whenever i browse and select a .jpg it displays "�������t���o\�[��+�p��B3�+�p��B3�" You can read in a jpg file and treat it like a text file.
    Read the Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/components/icon.html]How to Use Icons for the proper way to read images.

  • Help with Live View - Links Not Working

    Hello,
    I am having a problem with Live View.  It had been working just fine, until recently.  Now, when I load a site stored locally, the page looks normal and links highlight when I cursor over them, but when I click them no navigation takes place.  I just remain on the index page.  The site does test fine in IE8, Chrome, Firefox and used to test fine in Live View.  The same happens with all my sites.  No changes have been made to my system.  Maybe I changed a setting unknowingly?  Is there some type of setting that I am missing perhaps?  Any help would be appreciated.
    Jason

    Did you close and restart DW to see if that helps?
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • Help with HTML View

    Hi, I need help building VC Logic to display 1 of 4 reports (HTTP Links) in an HTML View.  Depending on the value of a incoming data field I want to feed the HTML View a different web page link.  It looks like you can't nest the logic of an if statement.  What's the best way to achieve this?
    Thanks!

    OK, I have my solution. 
    Just created 4 HTML IViews with a connection to my Web Service that provides the value I need. 
    Each link has a guard condition that activates the link depending on the incoming value and the link provides the hard coded input url as well. A simple condition on the HTML IView determines visibility. 
    I found sizing the HTML Views and placing them all on exactly the same position a real pain.

  • Help with ADF view

    Hello,
    I've learnt how to define the Entity Objects and View Objects in JDeveloper but I don´t know how to make the view....For example if i want to make an application to submit invoices into a database I should
    1.- Make a connection to my database which has alredy been loaded with tables...let´s say: Invoice and InvoiceDetail
    2.- I create the EO and VO in JDeveloper.
    3.- (PLEASE HELP ME HERE) How do i make a page with a form to fill with all the data from the invoice....this is the header and the detail and then submit to the DB?
    Thank You VERY much.

    Try some of the tutorials we offer:
    http://www.oracle.com/technology/obe/obe1013jdev/10131/masterdetail_adf_bc/master-detail_pagewith_adf_bc.htm
    and then:
    http://www.oracle.com/technology/obe/ADFBC_tutorial_1013/10131/index.htm

  • Help with live view new camera options...

    Hey guys...I have recently bought a hahnel remote shutter release so that I can take pics on the top of a mast around seven metres up.
    I have a 5 inch monitor at ground level to view the pictures taken, using an av cable from the camera. Problem is, I cant get a continuous "live view" image on the monitor, as you need to hold down the * button whilst in live view to auto focus, so I have to put up with just the shot thats been taken showing up after each shot instead!
    Does anyone know of a canon that would offer a continuous live view image on my monitor, without having to press the * button to auto focus?
    Ideally it would be one from the list below, as they are the cameras that my new hahnel wireless remote supports!
    I hope someone can help! cheers!
    List of supported cameras...would any of these offer live view without the need to press * to autofocus and take a shot:
    Compatible Camera Models:
    EOS 1200D / 1100D / 1000D / 650D / 600D / 550D /500D / 450D / 400D / 350D / 300D /
    70D / 60D / 50D / 40D / 30D / 20D / 20Ds /
    10D / 7D / 6D / 5D / 5D Mark II / 5D Mark III
    1D / 1DX / 1DC / 1Ds Mark III / 1Ds Mark IV
    SX50HS
    Powershot G10 / G11 / G12 / G15 / G1X Mk II
    Pentax Pentax K-5 II / K-5 IIs / K-5 / K-7 / K10 / K20 / K50 / K100 /
    K200 / K500
    Samsung GX10 / GX20

    What camera are you using?  Most "modern" Canon SLRs allow you to set focus during live view.   You move a little rectangle around to select your focus area.   But you need more than a monitor, you'd either need a computer (like a small netbook) running EOS Utility, or a tablet with DSLR Remote or equivilent on it.  The 70D and 6D both have WiFi ability, so you can do it from a smart phone, tablet, or computer, no wires needed.

  • Help with Creating Views

    Hi Gurus,
    There are 3 R/3 Tables for Plant Maintenance namely:
    1. ZPM_T_CONTRWO - Work Order Details for Contractor Payroll - ZIPY
    2. ZPM_T_WODETAILS - Work Order Details for ZIPY
    3. ZPM_T_ZIPYMASTER - Document Numbers for ZIPY
    The keys for the tables are:
    1. ZPM_T_CONTRWO: Document #, Order #, Operation/Activity #, Notification #
    2. ZPM_T_WODETAILS: Document #, Order #, Operation/Activity #, Notification #
    3. ZPM_T_ZIPYMASTER: Document #
    I'm thinking of creating 2 views, one b/w CONTRWO & ZIPYMASTER and the other b/w CONTRWO & WODETAILS.
    Please provide me guidelines & suggestions of doing this.
    Points will be rewarded.
    Thanks in advance,
    Manjesh
    NOTE: Below are the field names for each table ***
    ZPM_T_CONTRWO:
    Client, Document Number - ZIPY, Order Number, Operation/Activity Number
    Notification Number, Work Order Reference Number, Base quantity
    Base unit of measure, Total hours in selection period, Segment From
    Segment To, Offset From, Offset To, Checkbox, Last changed on, Time of entry
    User name
    ZPM_T_WODETAILS:
    Client, Document Number - ZIPY, Order Number, Operation/Activity Number
    Work Order Reference Number, Base quantity, Base unit of measure
    Total hours in selection period, Segment From, Segment To, Offset From
    Offset To, Checkbox, Page Number, Single-character flag, Confirmation number of operation, Confirmation counter, Single-character flag, Last changed on,
    Time of entry, User name
    ZPM_T_ZIPYMASTER:
    Client, Document Number - ZIPY, Date, Work center, Plant, Personnel number,
    Single-character flag, Time, Last changed on, Time of entry, User name

    Hi Manjesh,
    To create a view, you have to have atleast one common field in both tables to have the right join condition.
    You are meeting that condition with Document# for all tables.
    Refer this
    http://help.sap.com/saphelp_erp2005/helpdata/en/cf/21ec5d446011d189700000e8322d00/content.htm
    <b>for how to create the views?</b>
    R/3 side:
    1. Go to SE11 tcode.
    2. Enter the name of the view and create.
    3. Take common key fields of the tables to meet the Join Conditions ZPM_T_CONTRWO or ZPM_T_WODETAILS or ZPM_T_ZIPYMASTER
    ---> Document# will give correct join condition.
    4. add the fields from ZPM_T_CONTRWO or ZPM_T_WODETAILS or ZPM_T_ZIPYMASTER.
    Regards,
    BVC

  • Help with Paged view dataset!

    I'm new to Spry and not really a programmer, but I'm sure
    what I'm trying to do is pretty simple, can anyone help?
    Here's what I'm trying to do:
    - I have created a dataset (dsProjects) which contains 7 rows
    (one of the column values is 'Proj_id')
    - I have created a paged view dataset (pv1) based on
    dsProjects. The page count is 4 - so there are 2 pages I can
    navigate through.
    What I want is when there is a URL parameter (Proj_id), pv1
    will show the correct page containing the row that has the same
    column value for 'Proj_id'
    i.e. when I click on this link
    http://www.ollybaker.com/projects.php?Proj_id=11
    pv1 should display Page 2 of 2 because the row containing the
    Proj_id column value of 11 is on page 2.
    but this doesn't happen... any ideas what I'm doing wrong?
    The code is below:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml"
    xmlns:spry="
    http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=UTF-8" />
    <title>Untitled Document</title>
    <script src="SpryAssets/xpath.js"
    type="text/javascript"></script>
    <script src="SpryAssets/SpryData.js"
    type="text/javascript"></script>
    <script src="SpryAssets/SpryURLUtils.js"
    type="text/javascript" ></script>
    <script src="SpryAssets/SpryPagedView.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    var dsProjects = new
    Spry.Data.XMLDataSet("xml/recent_work.php", "export/row");
    dsProjects.setColumnType("Proj_id", "number");
    dsProjects.setColumnType("image", "image");
    //Set up pv variables to display information about the paged
    views
    var pv1 = new Spry.Data.PagedView( dsProjects ,{ pageSize: 4
    var pvInfo = pv1.getPagingInfo();
    var params = Spry.Utils.getLocationParamsAsObject();
    params == 1;
    //Set up pv variables to display information about the paged
    views
    pv1.addObserver({ onPostLoad: function(ds, type) {
    var row = pv1.findRowsWithColumnValues({"Proj_id":
    params.Proj_id}, true);
    // If we have a matching row, make it the current row for the
    data set.
    if (row)
    pv1.goToPageContainingItemNumber(row.ds_RowID);
    </script>
    </head>
    <body>
    <div spry:region="pv1">
    <table cellpadding="10" cellspacing="0">
    <tr>
    <th>Proj_id</th>
    <th>Image</th>
    </tr>
    <tr spry:repeat="pv1">
    <td>{Proj_id}</td>
    <td><img src="images/{image}" width="100"
    height="50"/></td>
    </tr>
    </table>
    </div>
    <p spry:region="pvInfo" spry:repeatchildren="pvInfo">
    <a spry:if="{ds_CurrentRowNumber} != {ds_RowNumber}"
    href="#"
    onclick="pv1.goToPage('{ds_PageNumber}')">{ds_PageFirstItemNumber}-{ds_PageLastItemNumber }</a>
    <span spry:if="{ds_CurrentRowNumber} == {ds_RowNumber}"
    class="currentPage">{ds_PageFirstItemNumber}-{ds_PageLastItemNumber}</span></p>
    <br /><br />
    </body>
    </html>

    You have to make 2 changes:
    - Tell findRowswithColumnValues() to include filtered items
    (items not in the current page) in your search. So change:
    var row = pv1.findRowsWithColumnValues({"Proj_id":
    params.Proj_id}, true);
    to:
    var row = pv1.findRowsWithColumnValues({"Proj_id":
    params.Proj_id}, true, true);
    - Lastly, you are calling the wrong function to show the
    page:
    pv1.goToPageContainingItemNumber(row.ds_RowID);
    It should be:
    pv1.goToPageContainingRowID(row.ds_RowID);
    --== Kin ==--

  • Can someone help with video viewing?

    I just got a new MacBook and downloaded some videos into it. When I play them they are playing full screen instead of in the little viewing box at the
    bottom corner. I expect there is a preference to select this but I can't find it.
    Can anyone help?
    Thanks,
    Judy

    Never mind....I found it. I should have looked harder before posting.
    Judy

  • Help with the view.

    Hi, I have two tables:
    Table one with header info including 3 users names (user 1, user 2, user 3)
    table two is a user info table with user email (user name, email address , and more).
    I would like to create a view with two columns
    Column 1     Record ID from the first table
    Column 2     Concatenated emails for all 3 users for each record.
    Any suggestions
    Thanks in advance.
    Robert

    Hi,
    That's called String Aggregation , and the following page shows several ways to do it:
    http://www.oracle-base.com/articles/10g/StringAggregationTechniques.php
    Which way should you use? That depends on your version of Oracle, and your exact requirements (e.g., whether or not order is important).
    Since there are only 3 strings, you could also outer-join to 3 copies of the user_info table.
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables, and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using.
    Edited by: Frank Kulash on Sep 6, 2011 2:39 PM

  • Help with detail view on photo page... no help from previous post!

    I posted these questions a few days ago and although people have been looking no one has any suggestions yet...
    Is my request too complicated?
    Old Toad, Wyodor, Cyclosaurus... would you have any tips?
    Many thanks
    I am using iweb to create my site and have an album that contains photo pages. I used a web widget / HTML snippet, to jump from my album page straight to 'detail view mode' on my photo page.
    I'd like to customize the look of my 'detail view' a little (I'm using the 'White' Theme).
    I have removed 'subscribe' and 'download' and do not have a slide show.
    How do I:
    1. Remove the text 'previous', and 'next' that appear under the image leaving just the arrows?
    2. Change the look of those arrows (from 'canvasarrow-right03.png' and 'canvasarrow-left03.png' to 'canvastransport-left-N03.png' and 'canvastransport-right-N03.png')?
    3. Remove the arrow that is next to 'Back to album' leaving just text?
    4. Change the font and colour of this text ('Back to album') to Aerial Regular 12pt caps, 65% black?
    5. The thumbnails have a blue frame to indicate which image is in large view, how do I change the colour to an orange?
    6. Remove the buttons in blue and grey, top centre (that change the view from thumbnails and large pic to just large pic)?

    I can't change the "Sending Page" because it uses custom "Filtering & Sorting" to drill down to the addresses..
    Once the User has "Checked" the records to be mapped, they click the Map button, and it takes them to this Detail page (with the ID's in the URL)
    Now that you mention it, the Detail form does have all of the Form fields/wkRptID's (for each of the addresses) on the page.. but how would I iterate thru the form data of each record, and grab the wkRptID's and add them to the WHERE statement..?
    Either way, once I have the Query correct, it is then fed to my Google Map to plot the addresses..

  • Help With PDF Viewing

    Hi there,
    Right now I am creating a website for my company. There are many different forms that our customers use daily that I want to make available to them via the website. I have the pdf file that I need in the general web folder and am linking directly to them. I also made them open in a new window.
    <li><a href="../TaxExemptionCerfiticate.pdf" target="_blank">Tax Exempt Certificate</a><br /></li>
    Can anyone see anything wrong with this code? Or have any better ideas for me?
    Thanks in advance!

    I am obviously a bit frazzled by this, I didn't even properly explain the problem! When I click on the link (which is attached to the pdf file), it opens in a new window/tab fine but the pdf itself doesn't appear and I get blank black that turns blank white if you click it. Has anyone else had issues with this?
    Thanks!

  • Help with inline view query

    Hi
    I have written a query that is supposed to return the following result.
    LOCATION                  YOUNGEST                    ELDEST
    york                       Name                        Name
    Luton                      Name                        NameI am having trouble with the INNER JOIN of the outer query. I cannot seem to match up both the YOUNGEST and ELDEST COLUMNS, only one of them. Does anyone know how I match it up to produce the appropriate result
    SELECT
         res.ldes,
         a.first_name||' '||a.last_name YOUNGEST,
         a.first_name||' '||a.last_name ELDEST
    FROM
      SELECT
            l.description ldes,
            MAX(a.birth_date) maxbd,
            MIN(a.birth_date) minbd
      FROM
            locations l
      INNER JOIN
            agents a
      ON
            l.location_id=a.location_id
      GROUP BY
            l.description
    ) res
    INNER JOIN
            agents a
    ON
            a.birth_date = res.maxbd  --PROBLEM IS HERE need to match up a.birth_date with res.minbd also but cannot get it
    ORDER BY
            res.ldesThanks for any response

    metzquar gave your answer.
    try
    with locations as(select 10 location_id,'ABC' description from dual union all
    select 20,'XYZ' from dual union all
    select 30,'RPF' from dual),
    agents as(select 10 location_id,'IM' first_name,'ELDEST' last_name,to_date('08/08/1988','mm/dd/yyyy') birth_date from dual union all
    select 20,'IM','ELDEST', to_date('08/08/1988','mm/dd/yyyy') from dual union all
    select 30,'IM','ELDEST', to_date('08/08/1988','mm/dd/yyyy') from dual union all
    select 10,'IM','MIDAGE', to_date('07/07/1977','mm/dd/yyyy') from dual union all
    select 20,'IM','MIDAGE', to_date('07/07/1977','mm/dd/yyyy') from dual union all
    select 30,'IM','MIDAGE', to_date('07/07/1977','mm/dd/yyyy') from dual union all
    select 10,'IM','YOUNGEST', to_date('06/06/1966','mm/dd/yyyy') from dual union all
    select 20,'IM','YOUNGEST', to_date('06/06/1966','mm/dd/yyyy') from dual union all
    select 30,'IM','YOUNGEST', to_date('06/06/1966','mm/dd/yyyy') from dual)
    SELECT   l.description ldes,
             MIN(a.first_name || ' ' || a.last_name)KEEP (DENSE_RANK FIRST ORDER BY a.birth_date) AS youngest,
             MIN(a.first_name || ' ' || a.last_name)KEEP (DENSE_RANK LAST ORDER BY a.birth_date) AS eldest
        FROM locations l INNER JOIN agents a ON l.location_id = a.location_id
    GROUP BY l.description
    ORDER BY 1;
    O/P:-
    LDES     YOUNGEST      ELDEST
    ABC     IM YOUNGEST     IM ELDEST
    RPF     IM YOUNGEST     IM ELDEST
    XYZ     IM YOUNGEST     IM ELDEST

  • Help with folder view

    Hi, not sure how to describe this but when i open certain folder, the Name/Date Modified/Size/Kind on the folder view could not be adjust - meaning I could not pull the top tab to view the whole filenames. The same happen when I want to attached a file in Mac Mail - attached.
    Thanks.

    For the Finder window that opens when you click the Attachments button, use the menubutton I've circled in thei pic to set it to 'none'.

Maybe you are looking for

  • How to get System time during report generation?

    Hi, I am developing a template in which I am required to show data of current year only. Is there any method by which I can get system time(from which I will extract year) ?

  • SQL or Formula in Crystal 8.5?

    Hello Forum Oracles! I am new to Crystal and SQL. I have had no formal training in any aspect of IT but have a good understanding of certain things. I have been around windows based PC since the early 1990s. I need help in writing a formula or SQL I

  • I messed up my links and don't know what I did.

    Hello All On my home page I created all my links by going through the "page properties" to set the color and the no underline thing. I tested it in my browser and they all work out fine, So I realize doing it that was would take to long so when I got

  • Do LCD TV's show entire frame?

    I just finished an art video I've been working on for two years and certain parts near the very edge would of ocurse be cropped off by a standard crt TV. So I was thinking about shrinking the entire video maybe 10% and putting a narroe black frame ar

  • Using Web Dynpro iViews in Web Page Composer

    Hi all, is it possible to add a Web Dynpro / Web Dynpro iView in a Web Page Composer page? I'm using NW7.0 EhP1.