Amazon S3 Organizer add-on gives an exception error when downloading: "Too many arguments"

When I try to download any file from the S3 server to my PC, the above exception error comes up. "[Exception... "Not enough arguments [nslWebBrowserPersis.saveURI]" nsresult: 0x80570001 (NS_ERROR_XPC_NOT_ENOUGH_ARGS)" location "JS frame......" (much more that is not copied here). Interestingly, if I try to download a bucket, it will create a folder on the PC but it hangs on the files inside. I have uninstalled and reinstalled Firefox as well as the add-on S3 Firefox Add-on 0.7. Doesn't help.

Start '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Firefox in Safe Mode]''' {web Link} by holding down the '''<Shift><br> ''(Mac Options)'' ''' key, and then starting Firefox. Is the problem still there?
Contact tech support for that program for help.

Similar Messages

  • NS Internal Inconsistency Exception Error when downloading from OS 10.6.8 to OX Yosimite

    I am getting this when I am upgrading from 10.6.8 to OS X Yosemite I am receiving the NS Internal Inconsistency Exception Error.
    Screen shot below..
    What do I have to do.. I have checked all the requirements before upgrading..  How can this be fixed?

    There seem to be a number of 10.6.8 users getting this error...if you have at least a MacBook Pro3,1 you may want to wait a day or two for the server load to drop so you get faster and more reliable data transfer.  The file is 5.16 GB and an take long enough for packets to get messed up on the way.

  • If image file not exist in image path crystal report not open and give me exception error problem

    Hi guys my code below show pictures for all employees
    code is working but i have proplem
    if image not exist in path
    crystal report not open and give me exception error image file not exist in path
    although the employee no found in database but if image not exist in path when loop crystal report will not open
    how to ignore image files not exist in path and open report this is actually what i need
    my code below as following
    DataTable dt = new DataTable();
    string connString = "data source=192.168.1.105; initial catalog=hrdata;uid=sa; password=1234";
    using (SqlConnection con = new SqlConnection(connString))
    con.Open();
    SqlCommand cmd = new SqlCommand("ViewEmployeeNoRall", con);
    cmd.CommandType = CommandType.StoredProcedure;
    SqlDataAdapter da = new SqlDataAdapter();
    da.SelectCommand = cmd;
    da.Fill(dt);
    foreach (DataRow dr in dt.Rows)
    FileStream fs = null;
    fs = new FileStream("\\\\192.168.1.105\\Personal Pictures\\" + dr[0] + ".jpg", FileMode.Open);
    BinaryReader br = new BinaryReader(fs);
    byte[] imgbyte = new byte[fs.Length + 1];
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dr["Image"] = imgbyte;
    fs.Dispose();
    ReportDocument objRpt = new Reports.CrystalReportData2();
    objRpt.SetDataSource(dt);
    crystalReportViewer1.ReportSource = objRpt;
    crystalReportViewer1.Refresh();
    and exception error as below

    First: I created a New Column ("Image") in a datatable of the dataset and change the DataType to System.Byte()
    Second : Drag And drop this image Filed Where I want.
    private void LoadReport()
    frmCheckWeigher rpt = new frmCheckWeigher();
    CryRe_DailyBatch report = new CryRe_DailyBatch();
    DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter ta = new CheckWeigherReportViewer.DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter();
    DataSet1.DataTable_DailyBatch1DataTable table = ta.GetData(clsLogs.strStartDate_rpt, clsLogs.strBatchno_Rpt, clsLogs.cmdeviceid); // Data from Database
    DataTable dt = GetImageRow(table, "Footer.Jpg");
    report.SetDataSource(dt);
    crv1.ReportSource = report;
    crv1.Refresh();
    By this Function I merge My Image data into dataTable
    private DataTable GetImageRow(DataTable dt, string ImageName)
    try
    FileStream fs;
    BinaryReader br;
    if (File.Exists(AppDomain.CurrentDomain.BaseDirectory + ImageName))
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    else
    // if photo does not exist show the nophoto.jpg file
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    // initialise the binary reader from file streamobject
    br = new BinaryReader(fs);
    // define the byte array of filelength
    byte[] imgbyte = new byte[fs.Length + 1];
    // read the bytes from the binary reader
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dt.Rows[0]["Image"] = imgbyte;
    br.Close();
    // close the binary reader
    fs.Close();
    // close the file stream
    catch (Exception ex)
    // error handling
    MessageBox.Show("Missing " + ImageName + "or nophoto.jpg in application folder");
    return dt;
    // Return Datatable After Image Row Insertion
    Mark as answer or vote as helpful if you find it useful | Ammar Zaied [MCP]

  • Interaction Record cannot be displayed, instead it gives an exception error

    Hi Folks,
    In the Web IC, when I click on "Interaction Record" in the Navigation bar, the page is not displayed, instead it gives an exception error:
    Component ICCMP_BT_INR cannot be displayed
    An exception has occurred Exception Class  CX_BOL_EXCEPTION - Access Previously Deleted Entity 
    Method:  CL_CRM_BOL_CORE=>GET_TRANSACTION 
    Source Text Row:  10
    Can someone tell me where to correct this situation.
    Thanks,
    John

    Hi,
    please check this setting:
    SPRO->IMG->Customer Relationship Management->Transactions->Basic Settings->Define Transaction Type
    Define 0010 as default for IR.
    Denis

  • HT204406 I downloaded a song that is not playing.  When i click to report a problem it gives me an error that says "To many HTTP redirects".  What does this mean and how do I fix it?  Thank you!

    I downloaded a song that is not playing.  When i click to report a problem it gives me an error that says "To many HTTP redirects".  What does this mean and how do I fix it?  Thank you!

    The following support articles should help:
    * https://support.mozilla.com/kb/Could+not+initialize+the+browser+security+component
    * https://support.mozilla.com/kb/AUS+Update+XML+File+Malformed+200

  • XSLT  - Exception error when using XSLT 2.0 code in Transform on LiveCycle ES2

    I'm new to using this forum, so apologies in advance in I have posted this to the wrong place.
    I'm using Adobe LiveCycle ES2.5 (Jboss) and have written several complex XSLT scripts.  All have worked, with the exception of the latest one in which I have to sum a repeating subnode that maynot exist and if it does, may contain a number or be empty.  When I have used SUM by itself, it works perfectly if I all the nodes have values, but returns zero if any are missing or are empty.  After some searching I found a solution (which I have made bold) in the fragment below.
    <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" ...>
    <xsl:variable name="varUnitValueTotal" select="sum( (if(SOURCEUNITVALUE='') then 0 else SOURCEUNITVALUE) )"/>
    </xsl:stylesheet>
    I developed and tested this xslt in XMLSpy 2011 and it works a treat.  However, when I invoke the XSLT using the Services\XSLT Transformation 1.0\Transform, I get the following exception error:
    javax.xml.transform.TransformerConfigurationException: javax.xml.transform.TransformerException: javax.xml.transform.TransformerException: Could not find function: if
        at org.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.jav a:936)
        at org.apache.xalan.processor.TransformerFactoryImpl.newTransformer(TransformerFactoryImpl.j ava:774)
        at com.adobe.livecycle.xslt.XsltTransformer.transform(XsltTransformer.java:151)
    Now as far as the documentation is concerned ES2 and better should be using XSLT 2.0.  However to test a theory I changed the stylesheet version from 2.0 to 1.0 and re-ran the xslt in XMLSpy and it fell over at exactly the same place as the exception error.  Which makes me conclude that LC ES2+ is still using XSLT 1.0.
    Now I am stuck.  The only work around that I can see is to attempt to do the calculation in the form (which sort of defeats the point of usng XSLT).  That said I am reluctant to go down that path, since the maintenance overhead is going to be shocking if I have to apply to dozens of forms.
    Is there a way to tell the Transform service to use XSLT 2.0 and if so, how and what are the settings?  Or do I need to find and use a different transform engine, again if so which one should I use and what settings should I make at either JBoss and/or AdminUI level.
    Really hoping that someone can help.

    The XSLT service is configurable.
    http://help.adobe.com/en_US/LiveCycle/9.5/WorkbenchHelp/WS92d06802c76abadb-1cc35bda128261a 20dd-6750.html
    1) Stop LiveCycle.
    2) Add the .jars of your XSLT processor of choice to the LiveCycle server lib folder.
    3) Restart LiveCycle.
    4) Go to Workbench and stop the XSLT service. Right-click on XSLTService:1.0 and Edit Service Configuration.
    5) Enter the factory name for the given XSLT processor. I think for Xalan 2.7.1 it is org.apache.xalan.processor.TransformerFactoryImpl (but I could be wrong).
    6) Restart the service.
    Steve

  • Exception error when args[ ] count exceeds 7

    Hello world!
    I keep getting this error when I try to pull more than seven args from a command line:
    Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 7
    My main looks like this:
    public class LocalPrintTA_SI {
    static String triadver,cust,invc,year,make,modl,engn,mile,cfig,make1,modl1,engn1;
    static boolean pg1, pg2, is_canada, use57;
    static JobAttributes.SidesType sides ;
    static PrinterGraphics pgr;
    public static void main (String [] args) {
    cust =args[0];
    invc =args[1];
    year =args[2];
    make =args[3];
    modl =args[4];
    engn2=args[5];
    mile =args[6];
    cfig =args[7];
    The program compiles, but gives the error. When I comment out the cfig=arg[7]; line, the program compiles and runs. I can take any working .java program, insert the args lines, and the program will compile, but will not run. If I remove the last args line, it will compile and run.
    My guess is that somewhere there is a configuration limit on the size of the main args array. I would like to somehow bump that up to, say, ten or eleven. Can anyone help?
    Lewis

    Hello teapot,
    i have tried the same program of you and it is not giving error to me.
    There is no problem in your code. I believe problem in your way of running programe. Note that your each argument should be separated by a space like
    java <file name> a b c d e f g h i and so on......
    here args[0]=a, arg[1]=b, arg[2]=c ......and arg[9]=i.
    if you have still any doubt then it will be helpful for me if you give your run time command.(like java <file name> and further arguments)
    thanks
    vimlesh

  • Getting an "uncaught exception" error when trying to Scan a document via D-Link DPR-1260 print sever (worked in prior versions of Firefox)

    I'm using the interface (Firmware V1.24) on a D-Link DPR-1260 Print Server, connected to an Epson Printer/Scanner. When I hit the "Scan" button, I get an "uncaught exception" error. This firmware has been working for years (at least back to Firefox 3.x), but no longer works with Firefox V6.0

    Nothing really, but... The firmware runs in a web browser. It's been working fine for years and no longer works since I got the latest version of Firefox. It does, however, still work in IE (V9) so I do have a way to use my existing hardware.
    I tried D-Link and Google search for any information about this, but came up empty. I was hoping that there might be similar problems with other software with Firefox 6.0.2 and someone might have a work-around or there might be a patch coming soon. At the very least, someone associated with Firefox might be interested that they've apparently broken something that used to work.

  • Win32 exception error when opening file from RH6 in RH7

    I received the following error when opening a help file
    (.xpj) that was developed in RoboHelp 6 in RoboHelp 7:
    An unhandled win32 exception error occurred in RoboHTML.exe
    [4692].
    This occurred after receiving the notice to upgrade the
    project since it was created in an older version. After selecting
    Upgrade, I received a runtime error message prompt. After clicking
    OK, I received the message above.
    Does anyone know how to resolve this issue so that I can open
    the project without any problems in RH 7?

    Thanks a lot for replying.
    waldemar.hersacher wrote:
    I have Acrobat Reader 5.1 at home and 6 at work and both work fine with the LV 7.1.1 bookshelf and help file.
    Yep, I just uninstalled Adobe Reader 7.0 and installed version 6.0.1. The links now work perfectly, so evidently this is a problem with Adobe Reader 7.0. I'd still like to solve the problem, though, as I really like version 7.0. (Something has finally been done about the program's lengthy start-up time!)
    You can reach the PDF-Files also by using Help>>Search the LabVIEW Bookshelf. Does this link work for you?
    It works perfectly.
    javascript:AcrobatLink('../manuals/lvuser.pdf');
    This is a call to a java script function located in pdf.js.
    Other reasons:
    The Active-X control of Reader 7 has a bug.
    Your Internet security settings will not allow this operation. The Active-X will be loaded but will have no access to the file and yo get a wrong error message.
    Fair enough. If that is indeed the case, which Internet security setting should I try changing? I haven't done anything unusual to any of those settings. And where is pdf.js located? I tried searching for it but could not find it.
    Your advice is greatly apreciated.

  • LV 6.0.2: an App-built dll gives a runtime error when called by C

    I want to use Labview 6.0.2 VIs as DLL's in a Borland C++ Project.
    Starting with the simple I have made a VI that returns a constant int32 then built a dll with the Application Builder and put the dll and include file in a BC++ project directory. Compile and link seems to run well. But when excuting the call to the LV fuction gives Fatal Error: labview.lib was not called from a Labview process.
    It seems this question was posted before, but answer didn't help me, Sorry.
    7.1 -- 2013
    CLA

    Hi Gabriela -
    This question is answered in the KB article entitled : "LabVIEW.LIB Error When Calling a DLL Built with LabVIEW"
    The link for this document is -> http://ae.natinst.com/operations/ae/public.nsf/fca7838c4500dc10862567a100753500/a4c3aef93240280a86256931006fb66c?OpenDocument
    Or you can go directly to www.ni.com/support and search for this document and others to help.
    The reason for this is that the old labview.lib does not know how to correctly locate the LabVIEW Run-Time Engine when called.
    From the document I posted ->
    Your dll is most likely making a call If you want to call a Windows DLL or CIN built with a version of cintools before LabVIEW 6.0, you must relink the DLL with the labview.lib from 6.0. If you call an old DLL or CIN in your LabVIE
    W DLL, you receive the aforementioned error and the application terminates, because the old labview.lib does not know how to correctly locate the LabVIEW Run-Time Engine when called in this situation.
    Good luck-
    ben schulte
    national instruments

  • I set up the the sync add on and had no errors.When I sync now I get"Sync encountered an error while syncing:Firefox sync server maintenance is underway..."I have gotten this mesaage for the last 10 hours.Should I wait or is there an issue with my setup?

    I just loaded Firefox onto my laptop. I set up the the sync add on and had no errors. When I hit sync now I get "Sync encountered an error while syncing: Firefox sync server maintenance is underway, syncing will resume automatically." I have gotten this message for the last 10 hours. Should I wait or is there an issue with my setup? I checked the Mozilla sync server status and it listed no issues.

    There was a server out last week. see below. now everything works great. thanks for the follow up.
    To:
    Subject: [Bug 744289] sync107.db.scl3 down
    Do not reply to this email. You can add comments to this bug at
    https://bugzilla.mozilla.org/show_bug.cgi?id=744289
    Gregory Szorc [:gps] <[email protected]> changed:
              What    |Removed                     |Added
                Status|UNCONFIRMED                 |RESOLVED
            Resolution|                            |FIXED
               Summary|error in sync               |sync107.db.scl3 down
         Last Resolved|                            |2012-04-10 19:39:11
    --- Comment #2 from Gregory Szorc [:gps] <[email protected]> 2012-04-10
    19:39:11 PDT --- Well, this is embarrassing. It looks like one of our
    servers was down and for whatever reason we didn't notice.
    It should be working now. If you still see errors, please reopen this bug.
    Configure bugmail: https://bugzilla.mozilla.org/userprefs.cgi?tab=email
    ------- You are receiving this mail because: ------- You reported the bug.

  • Iphoto gives me an error when trying to import videos

    when trying to import a video into iphoto '11 - it gives me an error "cannot import selected photo as there was a problem downloading an image"

    What's the source of the video? What format is it?

  • Tab Control Property Node gives a build error when used in a VI for LabVIEW PDA

    Hello,
        Iam new to LabVIEW development & need help regarding this:
        We are trying to port a LabVIEW application from desktop to a Windows Mobile PDA. Please note that the LabVIEW application works fine on the desktop. In one of the VIs, a Tab control property node is used which gives a build error with LabVIEW PDA project. A sample VI which shows the problem & the error list snapshot is attached with this post. Can anyone please suggest an alternate approach to achieve the same functionality with LabVIEW PDA? Waiting for an early response from anyone...
    Thanks & Regards,
    Subhashini
    Attachments:
    VI_Error.zip ‏31 KB

    Hello Ton,
        Am glad that i got a response, thanks. The following links indicate that Tab control is supported on PDA target:
    http://digital.ni.com/public.nsf/allkb/CBA335641E27B858862571490015EA88?OpenDocument
    http://forums.ni.com/ni/board/message?board.id=170&message.id=221507&requireLogin=False
        I feel that the Tab control property node that has been used in the VI (which is attached earlier) may not be supported on the PDA target. Can u (or any LabVIEW expert) suggest an alternate approach to achieve the same goal with LabVIEW PDA (changing colour of Tab control pages programatically)??
        I had missed out some details earlier: We are using LabVIEW 8.5 PDA module on a Windows Mobile PDA.
    Thanks & Regards,
    Subhashini

  • Getting an exception error when adding a server to a cluster

    I am using WL 6.0 and have configured a "Machine", two "Servers" and a
              "Cluster", and I want to create two servers on a single machine in order to
              test some clustering issues.
              I am using the default "myserver" as one of the servers. I have selected
              the "machine" that I have configured in the "Machine" section for each of
              the servers.
              In the ""Cluster Address" of the configured cluster I have typed the comma
              seperated list of the IP's of the configured servers and ":7001".
              Now when I go to add one server (the default myserver) to the cluster I get
              the below error.
              Can anyone tell me what might be causing the error.
              <Error> <HTTP> <[WebAppServletContext(4344699,cons
              ole)] exception raised on '/console/panels/mbean/Cluster.jsp'
              java.lang.NullPointerException
              at
              weblogic.servlet.internal.HttpServer.setServerList(HttpServer.java:25
              1)
              at weblogic.servlet.internal.HttpServer.getHash(HttpServer.java:270)
              at
              weblogic.servlet.internal.ServletResponseImpl.writeHeaders(ServletRes
              ponseImpl.java:659)
              at
              weblogic.servlet.internal.ServletOutputStreamImpl.flush(ServletOutput
              StreamImpl.java:124)
              at
              weblogic.servlet.internal.ServletOutputStreamImpl.flushWithCheck(Serv
              letOutputStreamImpl.java:451)
              at
              weblogic.servlet.internal.ServletOutputStreamImpl.print(ServletOutput
              StreamImpl.java:243)
              at weblogic.servlet.jsp.JspWriterImpl.print(JspWriterImpl.java:139)
              at weblogic.management.console.tags.BaseTag.print(BaseTag.java:118)
              at
              weblogic.management.console.tags.TabbedDialogTag.printImageTag(Tabbed
              DialogTag.java:668)
              at
              weblogic.management.console.tags.TabbedDialogTag.printTab(TabbedDialo
              gTag.java:575)
              at
              weblogic.management.console.tags.TabbedDialogTag.printStart(TabbedDia
              logTag.java:253)
              at
              weblogic.management.console.tags.TabbedDialogTag.doStartTag(TabbedDia
              logTag.java:209)
              at
              weblogic.management.console.pages._panels._mbean._cluster._jspService
              (_cluster.java:670)
              at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
              at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              pl.java:208)
              at
              weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
              rvletContext.java:1127)
              at
              weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
              pl.java:1529)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >
              

    If you send me the config.xml file I can check it out. I don't have any problems
              with a comma delimited list.
              Cheers,
              -- Prasad
              John Boyd wrote:
              > Thanks for the response, but I meant to say that I have done just the IP's
              > and also tried it with ":7001", which is how it is shown in the
              > documentation when using a comma seperated list of IP addresses. Either
              > way, I am having the problem.
              >
              > "Prasad Peddada" <[email protected]> wrote in message
              > news:[email protected]...
              > > John,
              > >
              > > You don't have to give :7001 for cluster address. Its just ip
              > addresses.
              > >
              > > -- Prasad
              > >
              > > John Boyd wrote:
              > >
              > > > I am using WL 6.0 and have configured a "Machine", two "Servers" and a
              > > > "Cluster", and I want to create two servers on a single machine in order
              > to
              > > > test some clustering issues.
              > > >
              > > > I am using the default "myserver" as one of the servers. I have
              > selected
              > > > the "machine" that I have configured in the "Machine" section for each
              > of
              > > > the servers.
              > > >
              > > > In the ""Cluster Address" of the configured cluster I have typed the
              > comma
              > > > seperated list of the IP's of the configured servers and ":7001".
              > > >
              > > > Now when I go to add one server (the default myserver) to the cluster I
              > get
              > > > the below error.
              > > >
              > > > Can anyone tell me what might be causing the error.
              > > >
              > > > <Error> <HTTP> <[WebAppServletContext(4344699,cons
              > > > ole)] exception raised on '/console/panels/mbean/Cluster.jsp'
              > > > java.lang.NullPointerException
              > > > at
              > > > weblogic.servlet.internal.HttpServer.setServerList(HttpServer.java:25
              > > > 1)
              > > > at
              > weblogic.servlet.internal.HttpServer.getHash(HttpServer.java:270)
              > > > at
              > > > weblogic.servlet.internal.ServletResponseImpl.writeHeaders(ServletRes
              > > > ponseImpl.java:659)
              > > > at
              > > > weblogic.servlet.internal.ServletOutputStreamImpl.flush(ServletOutput
              > > > StreamImpl.java:124)
              > > > at
              > > > weblogic.servlet.internal.ServletOutputStreamImpl.flushWithCheck(Serv
              > > > letOutputStreamImpl.java:451)
              > > > at
              > > > weblogic.servlet.internal.ServletOutputStreamImpl.print(ServletOutput
              > > > StreamImpl.java:243)
              > > > at
              > weblogic.servlet.jsp.JspWriterImpl.print(JspWriterImpl.java:139)
              > > > at
              > weblogic.management.console.tags.BaseTag.print(BaseTag.java:118)
              > > > at
              > > > weblogic.management.console.tags.TabbedDialogTag.printImageTag(Tabbed
              > > > DialogTag.java:668)
              > > > at
              > > > weblogic.management.console.tags.TabbedDialogTag.printTab(TabbedDialo
              > > > gTag.java:575)
              > > > at
              > > > weblogic.management.console.tags.TabbedDialogTag.printStart(TabbedDia
              > > > logTag.java:253)
              > > > at
              > > > weblogic.management.console.tags.TabbedDialogTag.doStartTag(TabbedDia
              > > > logTag.java:209)
              > > > at
              > > > weblogic.management.console.pages._panels._mbean._cluster._jspService
              > > > (_cluster.java:670)
              > > > at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
              > > > at
              > > > weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              > > > pl.java:208)
              > > > at
              > > > weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
              > > > rvletContext.java:1127)
              > > > at
              > > > weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
              > > > pl.java:1529)
              > > > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              > > > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              > > > >
              > >
              Cheers
              - Prasad
              

  • Unhandled exception error when i open the reports in crystal reports 12.0

    Hi All
    When i open Reports in SAP Business one it is showing unhandled exception occured unknown user name and password
    because of this i could not check my reports can any one help me on this?
    Regards
    Boopathi.T

    Hi,
    Have you used CR add-on for B1?  You may search within the forum to find the similar issue.
    Thanks,
    Gordon

Maybe you are looking for