Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. pheynman

    infostore.commit(iinfoobjects) does not work (Java)

    I ended up using something different although I don't know how your logic is (by the way, you can see that that part of my code was commented out because it wasn't working): ISDKSet tablePrefixes =_reportLogon.getReportTablePrefixes(); if (tablePrefixes != null && !tablePrefixes.isEmpty()) {...
  2. pheynman

    Changing report font dynamically (Java)

    Hi, I was wondering if anybody had had to change report fonts dynamically depending on what the user would like to use. Does it depend on the report definition being defined to accept variables like: If {?NewFont} <> "" Then {?NewFont} Else DefaultAttribute or can you just wrire code...
  3. pheynman

    infostore.commit(iinfoobjects) does not work (Java)

    After replacing the existing JARs with the ones that came with CR2008, it worked. So something in there was deprecated.
  4. pheynman

    infostore.commit(iinfoobjects) does not work (Java)

    The problem was not code-related so it does work, unmodified.
  5. pheynman

    infostore.commit(iinfoobjects) does not work (Java)

    Hi, I can't get my code to commit changes to the InfoStore that I'm making to the reports, namely the report logon information. if (reports != null && reports.size() > 0) { //load and modify each report in the folder for (int i = 0; i < reports.size(); i++) {...
  6. pheynman

    What parameters does one pass into the getPluginInterface() method?

    This eventually worked but I have a different problem now: getPluginMgr().getPluginInterface(CeProgID.REPORT, IPluginMgr.Category.DESKTOP); If anyone's wondering, this method is for the IPluginMgr interface. Link -...
  7. pheynman

    What parameters does one pass into the getPluginInterface() method?

    I had looked there and many other sites and also searched through code.google.com and also some books. I suppose it's not heavily used. Anyway, this is what I'll try later today when I have the environment: getPluginMgr().getPluginInterface(CeProgID.REPORT, IPluginMgr.Category.ADMIN); It's...
  8. pheynman

    What parameters does one pass into the getPluginInterface() method?

    Hi, This is a simple question but for some reason I can't find a solution or example of usage of this method and the documentation is not useful. It tells you the type to pass in but I not what the values of your options are. In CSP, and .NET, you can pass parameters like (examples): 1)...

Part and Inventory Search

Back
Top