Open new window vs changing window

in iWeb 08 I had a command/choice if you click on a hyperlink if you want that to replace your window vs opening a new window.
in iWeb 09 I can't find that option. Where is it?

ok, found it for external pages but I guess I can't for same-site pages.

Similar Messages

  • Just downloaded Firefox 6.0 and have restarted 4 plus times, but it continues to hang while launching. I cannot open new windows, change any settings, or do anything but Force Quit. I'm on Mac OSX 10.5.8. How do I get past this hang?

    Just downloaded Firefox 6.0 and have restarted 4 plus times, but it continues to hang while launching. I cannot open new windows, change any settings, or do anything but Force Quit. I'm on Mac OSX 10.5.8. How do I get past this hang?

    Long story short: Simply get CC for teams. At 500 bucks a year it's a steal and those 5 licenses in the base package (or was it 10 even?) cover all your computers, at least the 3 ones you mentioned. For system requirements refer to the individual product pages.
    Mylenium

  • How do I change the default settings for opening new window?

    Everytime I click on a link, new window would only open in new tab not new window. How would I change this default to open new windows instead of new tab?
    Thanks.

    HI,
    From the Safari Menu Bar click Safari/Preferences (or Command + comma on your keyboard).
    Click Tabs. You can set your preferences there.
    Carolyn
    Message was edited by: Carolyn Samit

  • My firefox opens new window automatically, how can i change this?

    ok, since 3 or 4 days, my firefox opens new window automatically. it happends at lease 20 times a day. sometimes it happends after i open some webs in new tabs, sometimes it just happens..without doing anything...and the new window often times show the homepage of google...sometimes there were other shopping-web. i try to block them unter "options-content-block pop-up windows"...but it doesnt work. and sometimes the normal webs are redireckted to some webseits...i never had this before. i didnt open some untrustable webs....so...what's going on? how can i change it?

    You question is a little Confusing...
    Do you mean you have created A NEW Apple ID...
    If so...
    It should be Noted that anything Downloaded with a Particular Apple ID is tied to that Apple ID and Cannot be Merged or Transferred to a Different Apple ID
    If not..
    Settings > iTunes and App Store > Apple ID = Sign Out... Then Sign In using the preferred Apple ID.
    Apple ID FAQs
    http://support.apple.com/kb/HT5622

  • How to open new window and generate oracle report from apex

    Hi,
    I had created an application that generates PDF files using Oracle Reports, following this Guide.
    http://www.oracle.com/technology/products/database/application_express/howtos/howto_integrate_oracle_reports.html
    And I followed 'Advanced Technique', so that users can't generate PDF file by changing URL and parameters. This is done for security reasons.
    But in this tutorial, when 'Go' button is pressed, the PDF file is displayed on the same window of apex application. If so, user might close the window by mistake. In order to avoid this, another window have to be opened.
    So, I put this code in the BRANCH - URL Target. (Note that this is not in Optional URL Redirect in the button property, but the branch which is called by the button.)
    javascript:popupURL('&REPORTS_URL.quotation&P2100_REP_JOB_ID.')
    But if the button is pressed, I get this error.
    ERR-1777: Page 2100 provided no page to branch to. Please report this error to your application administrator.
    Restart Application
    If I put the code 'javascritpt ....' in the Optional URL Redirect, another window opens successfully, but the Process to generate report job is not executed.
    Does anyone know how to open new window from the Branch in this case?

    G'day Shohei,
    Try putting your javascript into your plsql process using the htp.p(); procedure.
    For example, something along these lines should do it:
    BEGIN
    -- Your other process code goes here...
    htp.p('<script type="javascript/text">');
    htp.p('popupURL("&REPORTS_URL.quotation&P2100_REP_JOB_ID.")');
    htp.p('</script>');
    END;
    What happens is the javascript is browser based whereas your plsql process is server based and so if you put the javascript into your button item Optional URL Redirect it is executed prior to getting to the page plsql process and therefore it will never execute the process. When you have it in your branch which normally follows the processes, control has been handed to the server and the javascript cannot be executed and so your page throws the error "Page 2100 provided no page to branch to"... By "seeding" the plsql process with the embedded javascript in the htp.p() procedure you can achieve the desired result. You could also have it as a separate process also as long as it is sequenced correctly to follow your other process.
    HTH
    Cheers,
    Mike

  • What is the correct way to open new window with launchDialog & returnDialog

    Hi,
    JDev : 11.1.1.1.2.0
    My current page url is http://127.0.0.1:7101/ThruputApplication/faces/Test.jspx?_afrLoop=21785535204821&_afrWindowMode=0&_adf.ctrl-state=d1x4f8z6p_9 and
    From this page, I trying to open new browser window using command button's action method with below code
    FacesContext facesContext = FacesContext.getCurrentInstance();
    ViewHandler viewHandler =
    facesContext.getApplication().getViewHandler();
    StringBuilder strBuilder = new StringBuilder();
    UIViewRoot dialog =
    viewHandler.createView(facesContext, strBuilder.append("/reports/LPLReport.jsp?").append(sURL).toString());
    Map properties = new HashMap();
    properties.put("width", Integer.valueOf(500));
    properties.put("height", Integer.valueOf(300));
    AdfFacesContext afConetxt = AdfFacesContext.getCurrentInstance();
    afConetxt.launchDialog(dialog, properties, null, true, null);
    New browser window is getting open successfully but after opeing this new window if I do any operation such like selecting item from selectOneChoice or checkbox selection from the screen from which I have launce new browser window then is giving me below message.
    Are you sure you want to navigate away from this page ?
    There are one or more dependent dialogs open. Navigation from this page will invalidate any open dialogs.
    Press OK to continue, or Cancel to stay on the current page.
    I have also tried AdfFacesContext.getCurrentInstance().returnFromDialog(null, null); to return dialog but its giving me below error:
    <DialogServiceImpl><returnFromDialog> No 'DialogUsedRK' key available for returnFromDialog to do the right thing!
    <Reports><generateReports> Exception
    java.lang.IllegalStateException: popView(): No view has been pushed.
         at org.apache.myfaces.trinidadinternal.context.DialogServiceImpl.popView(DialogServiceImpl.java:88)
         at org.apache.myfaces.trinidadinternal.context.DialogServiceImpl.returnFromDialog(DialogServiceImpl.java:182)
         at org.apache.myfaces.trinidadinternal.context.RequestContextImpl.returnFromDialog(RequestContextImpl.java:132)
         at oracle.adfinternal.view.faces.context.AdfFacesContextImpl.returnFromDialog(AdfFacesContextImpl.java:318)
         at com.enbridge.forecasting.tps.backing.reports.Reports.generateMsgRptGenerated(Reports.java:2602)
         at com.enbridge.forecasting.tps.backing.reports.Reports.generateReports(Reports.java:1212)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(AstValue.java:157)
         at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
         at org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:46)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:812)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:292)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:70)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:326)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Please give me the solution so that I can stay on the screen and can continue with that screen after opening new browser window.
    Currently after opening new window as mentioned above, I can't do anything. If I press ok button then it will give me login page and if I press cancel button then my screen component's state become invalid.
    Regards,
    devang

    Thanks Frank,
    We have resolved the issue. Cookies max age was set as current browser seeion in websphere.
    After changing it as some max seconds, it is working fine.
    Mohanraj M

  • Embedded links in emails won't open new window or tab in FF.

    Running Mac OS X 10.6.6 and FF Version 3.6.12. I'm using Mail Version 4.4 as my email client and when I try and open an embedded link from an email, the link doesn't open a new tab or window. FF recognizes the link, but doesn't respond with a new tab or window. If I copy and paste the link into the browser the links work fine, so I feel like it's a setting or bug that has been changed somewhere somehow. This problem only happens when I try to click directly from the email. I've tried searching the preferences in both Mail and FF, but can't seem to find anything that fixes the problem. This issue started happening two weeks ago when I did the latest Mac OS X security update. Any thoughts or suggestions?

    Hi everyone, I have Snow Leopard 10.6.8. I have been very very frustrated by this problem. [I could not create new windows, and anything that opens new windows, such as trying to see what Add-ons you have etc would not work]. I read about changing screen alignment to the top... I have one screen so the option does not exist. The above messages would not fix this problem. I searched hard and did find a solution in the end. I read stuff about removing Add-ons until the problem is fixed, but its simply not the case.
    First of all open Firefox. next go to options: Help --- 'Restart with Add-ons disabled'. Tick the box for add-ons, restart firefox. Next go to Tools --- Add-ons. Next (In the Add-ons Manager' click on 'Plugins' on the left hand side pane. Look for the small blue writing that says 'Check to see if your plugins are up to date'.
    Now notice it should say 'Missing Flash'. "For your safety, Firefox has disabled your outdated version of Flash. Please upgrade to the latest version". I followed this, reinstalled Flash and it now works as it always did, no problems. For people where the above fix didn't work, try this one out. Hope it helps people!
    :o)

  • Safari always opens new windows/tabs

    Every time I click on a link Safari opens a new window or tab instead of just going to that link in the window that I am in. So when I close Safari I have multiple pages/tabs open.  It used to just go from page to page without opening new windows or tabs. What setting needs to be changed to get back to the single window?

    I figure out what the problem is. I set the Google search to open link in new window, and then it can be opened in tab with one tap. Thanks for help!

  • I am receiving a lot of pop-up ads on website pages. It has only recently started happening. They open new windows with ads for online gambling, online dating and other things. They are annoying and I want them shut off. Please help me

    I have recently started seeing millions of pop-up ads on website pages. It is not something that normally happens. They open new windows with ads for online gambling, online dating among other things. I am growing sick and tired of these ads, and have tried multiple things. I have uninstalled and reinstalled software, I have blocked pop-up ads and unenabled Java script. I have tried everything I could find, but nothing has worked. I have even downloaded AdBlock and Clean Genius. Nothing has even remotely changed this annoying trait. I hope this can be a quick fix I can perform and not something that will have to be done by a tech-hand. Please, if you know anything about this issue, let me know how to fix it.
    Thanks.

    Unfortunately, you have installed malware by clicking on a pop up ad.
    Removal instructions here >>  The Safe Mac » Adware Removal Guide
    Uninstall CleanGenius >  Mac App uninstaller: How to uninstall the Macintosh applications with CleanGenius uninstaller on Mac OS X?
    Third party maintenance utilities are not necessary on a Mac and can actually do more harm than good and cannot remove malware > Mac App uninstaller: How to uninstall the Macintosh applications with CleanGenius uninstaller on Mac OS X?

  • Why does Firefox keep opening new Windows rather than a new Tab in the current window?

    I have " Open a new Tab in the current Window" select in Preferences.
    Why then does this version (Version 4) keep opening new Windows, rather than new Tabs in the current Window.
    This feature worked fine in 3.6.1.3, but in Version 4, it is a frigging pain in the rigging!
    C'mon, Mozilla - time for an URGENT update ...

    That issue can be caused by an extension that isn't working properly.
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • Firefox 31 (Ubuntu) won't open new window or Javascript pop-ups

    Hi, I am running Firefox 31.0 in Ubuntu 14.04 having the following problem:
    1) When I click on New Window or New Private Window in the File menu, nothing happens, same with pressing Ctrl-N.
    2) Certain websites are not able to open new windows or pop-up windows through Java or Javascript
    (e.g. the command: javascript:popup_imp(...) does not produce anything)
    I did try safe-mode and there everything works fine. Then I restarted firefox (several times) with all plugins disabled but still had the same problem, so I don't know what causes the difference between safe-mode and no plugins.
    (By the way, there is no problem opening a New Tab by pressing Ctrl-T or from the file menu, the issue is only the New Window and New Private Window).
    Is there any other way to narrow down what is preventing the new windows?

    Hi cor-el,
    thanks for your answer, however as I explained in my post, safe-mode does not present the problem, but disabling the extensions on its own does not help (i.e with all extensions disabled the problem still is there).
    Also, I did not have this problem in the past and I did not change anything graphics related (unless something was changed software-wise internally and I did not notice).
    And yes I am currently using the default theme.

  • Opening new window on button click from pdf without loosing session

    Hi,
    In my Java web applicaion on click of a link, we are opening a new window in which we are displaying a pdf. There are 5 buttons on this pdf.
    On clicking of this button again we are opening a application link in new window. But in this window we are not gettting our session, which is there in first two window.
    For opening new window from pdf button click we are using
    var dynamicUrl3 = myappurl;
    app.launchURL(dynamicUrl, true); 
    How can i open new window with the same sesion from the pdf button.
    Please help for the same.
    Thanks,
    Abhijit Mohite.

    Yes, with target="_blank" in a link or a form.Thanks for ur valuable suggestion. I changed the button to link.
    Its working fine now without JavaScript.
    Now i got another requirement. When user select some items and press a button in the new popup window, the window must close on button click and the parent window must refresh. This must also be done without using JavaScript.
    Is this possible? Please give me an idea to do this.
    Thanks.

  • Opening New Window or Explorer

    Hi Everybody,
    My scenario is like this I have one Webdynpro application which contains two Views , First View contains one Link (LinkToAction) when ever I clicks on that link Second View Should open in New Internet Explorer means new Window,
    For this I have created 2 Windows which is having first/second view.
    Following Code is there
          IWDWindowInfo windowInfo = (IWDWindowInfo) wdComponentAPI
               .getComponentInfo().findInWindows("SecondWindow");
               IWDWindow window = wdComponentAPI.getWindowManager().createWindow(windowInfo,true);
               window.setWindowPosition(300, 150);
               window.show();
              //     Save WindowInstance in Context
               wdContext.currentPopupElement().setWindowInstance(window);
    But still its opening same Window or explorer.
    I tried with this method also.
    IWDWindow window = wdComponentAPI.getWindowManager()
    .createModalWindow(windowInfo);
    Still it is not opening New Window.
    Please help me out by opening New Window.
    Thanks in advance.
    AW

    Hi Adam willams,
    FIRST OPTION
    The sample webdynpro url is like this:
    http://<hostname>:<port no>/webdynpro/dispatcher/*******/<Application Name>
    In the above URL, only hostname and portnumber may change if you switch to different server. So, in the code, if we are calling any application using the URL, we need to get the hostname and portnumber dynamically so that, even if we switch to different server our URL will work.
    try {
            InetAddress addr = InetAddress.getLocalHost();
            // Get IP Address
            byte[] ipAddr = addr.getAddress();
            // Get hostname
            String hostname = addr.getHostName();
        } catch (UnknownHostException e) {
    store the host name and portnumber in variables and form the URL
    String URL = "http://"hostname":"port"/webdynpro/dispatcher/....../<YourApplicationName>"
    SECOND OPTION
    Following is the way to do it
    http://localhost:50000/webdynpro/dispatcher/demo.sap.com/firstapp/FirstApp?ToSecondView=yes
    Here the parameter name is ToSecondView and the value for it is yes
    To read this from Webdynpro use
    //value will hold the value yes from the url.
    String value = WDProtocolAdapter.getProtocolAdapter().getRequestObject().getParameter("ToSecondView");
    Now, in the view init() write the above code.
    If value contains yes then you have to navigate to view 2 immediatley. If not be in the same view only.
    Suppose if you access the url directly, you will see the view1.
    If you want to open view2 in the pop up window, call the URL, http://localhost:50000/webdynpro/dispatcher/demo.sap.com/firstapp/FirstApp?ToSecondView=yes.
    In the opened window, it will show view2.
    Regards,
    VJR.

  • How do I tell Logic to open new windows always on my external monitor (when available)?

    Hey guys
    I finally got my own copy of Logic 9 from the App Store and I'm very happy with it.
    I have a question though. Logic always open new windows (e.g. when opening a project or when opening a plugin, etc.) in my Macbook Pro's monitor, but at home I have a big external screen which I want to use as the main screen.
    I already have set the external monitor to be the main screen in the System Preferences, so the dock and menu bar always display correctly on my external monitor when available. But Logic still uses my MBP's monitor as main monitor, so I have to move the windows to the external display every time I open them.
    Is there a way to tell Logic to use my external monitor as default when it's availble?
    Thanks, Josh

    There is a thing in OSX that is called "key focus" or "focus".
    When you type on your keyboard (text or any keyboard shortcut), the OS has to know where to send that command to if you have multiple windows open (or multiple applications).  The answer is, it directs the command to the window that has "key focus".
    The key focus window is the one with the active window title bar (not grayed out) and the colored three buttons in the upper left corner (unfortunately, Logic doesn't use colors).
    Now to Logic:
    Logic follows the same rules. However, you have to pay attention to multi-pane windows like the Arrange window. This is a window with more windows (panes) inside. Now the question is, which window pane inside that window has key focus. If you look closely, then you see that the window frame changes  their shade slightly (sometimes very hard to see). Pay especially attention to plugins. They also have key focus when selected and can receive keystrokes.
    Finally to your question.
    You cannot set the preferences on which monitor screen Logic opens  a window. This is determined by the location of the window that has currently key focus. Any new window and also alert windows and dialog windows  (Save, Open) will open on that screen.
    So if you want a window to open on you external screen, click on a Logic window on that screen.
    I have five monitors on my Logic setup and I use a QuicKeys macro (push one button) that sets the key focus to my main monitor and now any new window will open on that screen screen.
    Hope that helps 
    Edgar Rothermich 
    http://DingDingMusic.com/Manuals/
    'I may receive some form of compensation, financial or otherwise, from my recommendation or link.'

  • Cmd-click in finder on title bar opens new window - why?

    This is a feature I used all the time previously, but since I've updated to 10.5.2 it always open a new window when I select a dir further back. Does anybody know how I can make it not open a new window, just navigate in the existing window?

    ..."cmd-click in finder on title bar opens new window"...
    Holding down the cmd key while opening a folder in the "Finder" has caused the folder to open in a new window for quite some time. I can't recall what the behaviour was with respect to the Titlebar in earlier OS X versions, but if it has really changed in 10.5, perhaps it was to make it more consistent with the behaviour of folders in general.
    Are you sure you weren't using ctrl-click in the past?

  • Won't open new window, only tabs

    Previous version I could change option to open new window rather than tabs in 'tools' - 'options' This does not change anything. Also, it no longer saves 'home page'

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You can check for problems with preferences and rename or delete the prefs.js file and possible numbered prefs-##.js files and a possible user.js file to reset all prefs to the default value.
    *http://kb.mozillazine.org/Preferences_not_saved
    *http://kb.mozillazine.org/Resetting_preferences

Maybe you are looking for

  • Java.security.ProviderException: unable to parse algorithm params.

    java.security.ProviderException: unable to parse algorithm params. Anyone any idea how to get around this problem? Is it something to do with the java.security file?

  • Can't access my desktop from the sidebar. Keeps going to terminal

    can't access my desktop from the sidebar. Keeps opening in terminal window. Also when trying to save from an email, I cannot save to desktop

  • A simple BADI implementation - very urgent

    Hi,   I am new to ABAP. I need a small piece of coding. I am implementing a BADI. There is a table which has 3 fields (MATID, LOCID, STATUS and PLANNING_DATE). For each MATID (material ID), there are many LOCID (Location ID) available. My BADI has to

  • Page alignment is inconsistent

    Post Author: raja6791 CA Forum: Exporting Hi , I have a report, which is working fine on my machine. When i run the same application(same dlls) from another system, report is not dispalying properly.  Some pages in the report are displaying in two pa

  • Discoverer Viewer - Calendar usage

    Hi, I am working with Discoverer Plus and Discoverer Viewer. I have a report defined with a parameter of type DATE. When working Discoverer Plus I see the calendar icon near the parameter and I can use it to easily choose a date. However, when I run