Cannot get Report View

HI,
Trying a get a view of a report from BO. I get the documentinformation ok and the Document view (i think its the default report or tab) and well the list of the reports (tabs) with their name, id and path but I cant seem to get a view and well there is no IReport interface in the API.
I am using BO XI2.0 and .NET Webservice API.

HI,
ut the script into body section. It worked placing the code just before </BODY> and </HTML> instructions..(End instructions of the code), like this:
<SCRIPT>
window.onload=Init
function Init()
var Elements=document.getElementsByTagName('TD');
for(var i=0;i<Elements.length;i++)
if (Elements<i>.innerText=='Not assigned')
Elements<i>.innerHTML =' '
Elements=null
</SCRIPT>
</BODY>
</HTML>
Regards
SS

Similar Messages

  • Cannot get report to run using Report Server

    I have installed, compiled and now have running the reports server (6i patch5a) on Linux 7.0. I can view the queue, but when I run rwcli60 to try out a report, it always complains about an invalid printer, even though one is defined (but not connected to the machine currently), and if I try destype=pdf, it just hangs for a long while, then writes errors about the Oracle Toolkit.
    Is there anything you might have (papers etc) that helps troubleshoot using the report server? (we are not using 9ias currently).
    Any help would be greatly appreciated!!
    Monte Malenke

    color <> 'WHITE' was causing the error

  • InterMedia clipboard: cannot get object view

    Hi all.
    I'm trying to use clipboard against 8.1.6r2 on Linux.
    I've got a table with a primary key column and a BLOB column, and I created the necessary batch of procedures, modified to work with the BLOB column--I'm not using the ORDSYS types. This column will be storing PDFs and Word documents.
    I can see the table view, but I can't double-click on the object icon and get an object view. Am I barking up the wrong tree, trying to load Word/PDFs via the clipboard? If not, where I can start looking to fix this problem?
    Thanks for info.
    -John

    Hi,
    The interMedia Clipboard is able to recognize multimedia data in object columns only. Furthermore, by default, it recognizes only interMedia objects, like ORDImage, ORDAudio, etc. However, it is possible to use the interMedia Clipboard to handle any object type, providing one 'teaches' it how to handle types it knows nothing about. If you have a table with a simple BLOB column, then you can create a new type to represent the multimedia data in the BLOB column, then create a view on the base table and map the BLOB column into the user-defined type. I've illustrated how to do this in the following example; however, please be aware that this is an undocumented and unsupported feature.
    Hope this helps,
    Simon
    Here's an example of a simple table that holds documents in a BLOB column. If the table is used only to store documents of a single type, then you could skip the MIME type column. If you wanted, you could include a last-modified column and use it to return an appropriate HTTP status if a browser cache contains an up-to-date version.
    SQL> create table mydocs ( docid varchar2(32), doc blob, mimetype varchar2(100) );The object type MYDOCSTYPE created below will be used by the Clipboard to recognize the presence of a multimedia data column it can handle.
    create or replace type mydoctype as object ( doc blob, mimetype varchar2(100) );
    /The MYDOCSVIEW is a view of the base table that uses MYDOCSTYPE to view the document.
    create view mydocsview as
    select d.docid, mydoctype( d.doc, d.mimetype ) mydoc
    from mydocs d;The following 3 PL/SQL procedures are normally generated by the Clipboard Wizard; however, we have to do them by hand because the Clipboard recognizes only the interMedia types.
    The MYDOC_INSERT procedure is used by the Clipboard to insert a new row into the MYDOCS table.
    create or replace procedure mydocs_insert
    ( in_docid in varchar2, out_rowid out varchar2 ) as
    begin
    insert into mydocsview ( docid, mydoc ) values
    ( in_docid, mydoctype ( null, null ) )
    returning rowid into out_rowid;
    end;
    /The MYDOCS_GET and MYDOCS_PUT are the mediaget and mediaput procedures used by the Web Agent to access the document data.
    create or replace procedure mydocs_get
    ( ord_procedure_path in varchar2, ord_content_type out varchar2,
    ord_content_length out number, ord_content_blob out blob ) as
    begin
    select d.mydoc.mimetype, dbms_lob.getlength( d.mydoc.doc ), d.mydoc.doc
    into ord_content_type, ord_content_length, ord_content_blob
    from mydocsview d where d.docid = ord_procedure_path;
    end;
    create or replace procedure mydocs_put
    ( ord_procedure_path in varchar2,
    ord_content_type in varchar2,
    ord_content_blob out blob ) as
    begin
    update mydocsview d set d.mydoc.doc = empty_blob(),
    d.mydoc.mimetype = ord_content_type
    where docid = ord_procedure_path;
    select d.mydoc.doc into ord_content_blob from mydocsview d
    where docid = ord_procedure_path for update;
    end;
    /All the above happens in the user's schema. Now we have to update the Clipboard's metadata in the ORDSYS schema. As before, the Clipboard normally does this, but we have to do it because we're not dealing with an interMedia type.
    First tell the Clipboard about the new MYDOCTYPE object type: its in schema SCOTT, its names is MYDOCTYPE, it can hold ANY media data (contrast with IMAGE, AUDIO or VIDEO that are built-in media types the Clipboard knows how to handle), its stored as a BLOB and the BLOB is stored in the .DOC attribute (don't forget the .) of the MYDOCTYPE object type. Note that case is important here for all schema object names.
    connect ordsys/ordsys
    delete from mw$catalog_by_typ where type_name = 'MYDOCTYPE';
    insert into mw$catalog_by_typ values (
    'SCOTT', 'MYDOCTYPE', 'ANY', 'BLOB', '.DOC' );
    insert into mw$catalog_by_tab values (
    'SCOTT', 'MYDOCSVIEW', 'DOCID', 'MYDOCS_INSERT', NULL );
    insert into mw$catalog_by_col values (
    'SCOTT', 'MYDOCSVIEW', 'MY   DOC', 'MYDOCS_GET', 'MYDOCS_PUT', NULL );
    commit;Once that's done, you should be able to run the Clipboard, insert new rows into the table, upload new documents, and so forth. Remember to select the view, not the base table when you open the schema in the Clipboard.
    null

  • Cannot get report to run, dataTemplate query issues

    Report was running fine until I turned one of my data modules from a SQL Query to a Data Template. I've narrowed it down to the query causing the error(Index: 0, Size: 0????), any ideas what specifically is causing the error? Perhaps the union or decode?
    <dataTemplate name="imapctMatrix" dataSourceRef="asetdev" defaultPackage="pkg_ea_engine">
    <parameters>
    <parameter name="EAD_ID" dataType="number" defaultValue="0"/>
    </parameters>
    <dataQuery>
    <sqlstatement name="Q1"><![CDATA[
    SELECT EPJ_ID, env_name ||' - '||LAYER_NAME layer_name,
    DECODE(MAX(decode(color,'WHITE', 0,'RED',99,'YELLOW',98,'GREEN',97)),0,'NONE',99,'HIGH',98,'MODERATE',97,'LOW') COLOR,
    ENV_NAME,
    ALT_NAME,
    DECODE(ALT_NAME,'PROPOSED ACTION',0,'NO ACTION',99,ALT_NUM)
    FROM temp_ea_impact_rep
    WHERE (EPJ_ID = (select EPJ_ID from EAD_DESCRIPTIVE_INFO WHERE EAD_ID = :EAD_ID))
    GROUP BY EPJ_ID,ALT_NAME, ENV_NAME, LAYER_NAME,ALT_NUM
    union
    SELECT distinct EPJ_ID, env_name ||' - '||LAYER_NAME layer_name, 'NONE' COLOR, ENV_NAME, 'NO ACTION',99
    FROM temp_ea_impact_rep
    WHERE (EPJ_ID = (select EPJ_ID from EAD_DESCRIPTIVE_INFO WHERE EAD_ID = :EAD_ID))
    and color <> 'WHITE'
    GROUP BY EPJ_ID, LAYER_NAME, COLOR, ENV_NAME, 'NO ACTION'
    order by 2
    ]]></sqlstatement>
    </dataQuery>
    <dataTrigger name="beforeReport" source="pkg_ea_engine.createeaimpact(:EAD_ID)"/>
    </dataTemplate>

    color <> 'WHITE' was causing the error

  • I CANNOT GET LANSCAPE VIEW

    I can't get landscape on my iphone 4 can anyone help?

    Can you help me with this?  When I double tap the home button it reveals what programs are active. Then  when I swipe right to left, it closes that function. Then I single tap the home button and siri comes up.
    So how;s that again?

  • When I try to access my surveillance site, I cannot get the viewer to play nor show as it does when I enter my address in IE

    I can log in and that's all it does.

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that temporarily turns off hardware acceleration, resets some settings, and disables add-ons (extensions and themes).
    '''If Firefox is open,''' you can restart in Firefox Safe Mode from the Help menu:
    * Click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    '''If Firefox is not running,''' you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".
    ;[[Image:SafeMode-Fx35]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, theme, or hardware acceleration. Please follow the steps in the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.

  • Cannot get reports printed on a laser printer

    I installed a new laser printer on the PC with Lookup loaded on it. Lookout does not recognized the printer attached to the LPT port. Windows XP is the OS and it prints a test page with no problem as does the other programs on the PC. The only printer it communicates with is a dot-matrix printer. There is a printer key (dongle) attached to the PC. Is the dongle/key specific to the type of printer that is attached? Is the dongle/key necessary for the Lookout program?

    For older versions (Georgetown era),  AND in only certain countries Lookout did require dongles.  I am guessing NI did away with them in recent years.  (Wouldn't the next logical step be to open the source up, eh?    )
    -Khalid

  • How to get report of a sequence steps running in STA

    Hello Everyone!
    I am new here and don't know how to post a new question so please reply me.
    I am calling a sequence in STA and cannot get report of its steps. If i run indivisual steps from the sequence than there is report but when i run whole sequence there is no report of steps in it.
    I am using HTML report options and calling functions from a .Net API.

    any help guys..

  • Crystal Report Viewer Closes the application after showing "The text cannot be found in the report" when searching for a text in a multipage report

    Post Author: Farooque
    CA Forum: Other
    Hi,
    I am using Crystal report viewer (Crviewer.dll) version 11.0.0.1282 to show crystal reports in my VB6 application. When we search for any text in a multipage report after the last find system shows a message "Crystal Report Viewer" "Text cannot be found in the report" and trows an unhandled error and closes the application. How can I fix this?
    Please help
    Thanks in advance.
    Farooque. ([email protected])

    Enter the following:
    viewer blank net crystal
    into the search box in the top right corner. You should get a number of hits (Kbases and articles) that should point you to a solution.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Report Viewer Version 11 - Cannot load assembly?

    Hi,
    We are using version 11 of Report Viewer to display .rdlc Reports within the application.
    On Web Server 1 the Reports render fine.
    On Web Server 2 an error is displayed stating "Failed to load assembly".
    The difference between the servers is that Web Server 1 has Visual Studio 2012 installed so the dll's are in the GAC aswell as the bin folder of the application.
    Web Server 2 does NOT have Visual Studio 2012 installed and the dll's are ONLY in the bin folder.
    Web Server 2 is a Production server so I cannot install Visual Studio and as a result the gacutil is not available either as a result.
    How can I get these three dll's into the GAC on Web Server 2 given that gacutil is not on the server?
    The application checks the GAC first for the dll's eventhough they are in the bin folder?
    Thanks,
    SK.
    CG

    Hi NuTech,
    Thank you for posting in MSDN forum.
    Since this forum is to discuss: Visual Studio WPF/SL Designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System, and Visual
    Studio Editor. Based on your issue, I think that the issue is more Report control issue, so I suggest you can post this issue directly to
    Visual Studio Report Controls forum, it will be better support.
    Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Installed, but cannot get Firefox to run. When I try, it crashes. Report contents give adapterdevice id - 0x0a3c and adaptervendorid - 0x10de

    Installed, but cannot get Firefox to run. When I try, it crashes. Report contents give adapterdevice id - 0x0a3c and adaptervendorid - 0x10de
    Have tried to uninstall and reinstall.

    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    Please report back to see if this helped you!

  • Deploy Monitoring reports Fail Cannot get the ReportServerWebService URL

    Hi, I am deploying the monitoring reports in a single host different to FE or Backend
    When I launch the wizard the installation fail with the message:
    > Deploying Monitoring Reports... This might take a few minutes.
    The Monitoring Database is using SQL instance "mendbsql3\ARCHLYNC2013".
    The data source is using SQL instance "(local)\ARCHLYNC2013".
    System.Runtime.InteropServices.COMException (0x800700A4)   at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr
    errorInfo)   at System.Management.ManagementObjectCollection.ManagementObjectEnumerator.MoveNext()   at Microsoft.PowerShell.Commands.GetWmiObjectCommand.BeginProcessing()System.Runtime.InteropServices.COMException (0x800700A4)  
    at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo)   at System.Management.ManagementObjectCollection.ManagementObjectEnumerator.MoveNext()   at Microsoft.PowerShell.Commands.GetWmiObjectCommand.BeginProcessing()System.Runtime.InteropServices.COMException
    (0x800700A4)   at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo)   at System.Management.ManagementObjectCollection.ManagementObjectEnumerator.MoveNext()   at Microsoft.PowerShell.Commands.GetWmiObjectCommand.BeginProcessing()System.Runtime.InteropServices.COMException
    (0x800700A4)   at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo)   at System.Management.ManagementObjectCollection.ManagementObjectEnumerator.MoveNext()   at Microsoft.PowerShell.Commands.GetWmiObjectCommand.BeginProcessing()System.Runtime.InteropServices.COMException
    (0x800700A4)   at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo)   at System.Management.ManagementObjectCollection.ManagementObjectEnumerator.MoveNext()   at Microsoft.PowerShell.Commands.GetWmiObjectCommand.BeginProcessing()Cannot
    get the ReportServerWebService URL. Verify that Reporting Services is deployed and configured properly on the target SQL instance:"mendbsql3\ARCHLYNC2013", and that WMI is included on the exception list of firewall setting on the server that is running
    Reporting Services.
    I check the configuration of the reporting services configuration, all see OK. I probe the URL in the server that I want to configure like a monitoring reporter
    and I can explorer and administrate the Reporting Services. The firewall into the servers is off.
    Somebody else have this problem.
    THX.

    Hi Lapatinogo
    This is how I install Monitoring in my lab series.
    http://lyncme.co.uk/microsoft-lync-server-2013/the-complete-home-lync-lab-part-3-installing-lync-2013-monitoring-and-lync-edge-server/
    Navigate –> Lync Server –> Your Site –>
    Lync Server 2013 –> Standard Edition Front End Servers –>
    Your Server
    Right Click –> Edit Properties –> Scroll Down to Monitoring
    Tick Monitoring –> Press New –> Enter your
    SQL Server FQDN –> Specify your instance –> Untick
    This SQL instance is in mirroring relation (As stated in Part 1 you should already have a SQL Server with an instance available) –> Press
    OK
    Press OK –> Press Action –> Press
    Topology –> Press Publish
    Press Next
    Press Next –> This should complete successfully –> Press
    Finish
    Launch Lync Deployment Wizard
    Press Yes –> Click Deploy Monitoring Reports
    Press Next
    Press Specify a User Account and Password that has rights to the instance –> Press Next
    Press Specify User Group (I will be using the default group) –> Press
    Next
    Press Finish
    Launch the Lync Server Control Panel
    Login with an account that is apart of the CSAdministrator
    Click View Monitoring reports –> Click your SQL Server FQDN
    You should now see the below window   Successful deployment of Lync Monitoring

  • I cannot get the Quicktime plugin to update from v7.7.3 to the CURRENT 7.6.6 . My plugins view tells me I'm at risk and need to update but try as I might, it won't take. I consider myself and above average Mac User. Please advise. Thank you

    for some inexplicable reason, I cannot get the Quicktime plugin to update from v7.7.3 to the CURRENT 7.6.6 . My plugins view tells me I'm at risk and need to update but try as I might, through all the known update avenues, it won't take. I consider myself and above average Mac User. Please advise. Thank you

    Someone recently noted a problem staying logged on the Huffington Post since it became connected with AOL. The workaround for that is to change your connection setting here:
    orange Firefox button (or Tools menu) > Options > Advanced > Network
    Click the "Settings" button and choose either "No Proxy" or "Use System Settings" option, and OK the change.
    Not sure whether Washington Post could be affected by that same setting.
    In reviewing your extensions, I'm puzzled that you have both DoNotTrackMe and SavvyConnect. The first one seems to aggressively block certain communications with websites (potentially affecting functionality) while the second one seems to report on your browsing habits (they better pay well is all I can say). Have you tried disabling both of those to see whether that has any effect?
    orange Firefox button (or Tools menu) > Add-ons > Extensions category

  • Cannot Run Discoverer Viewer Report

    Hi All,
    please help on below issue.
    I cannot run Discoverer Viewer report. I have the below error.
    A connection error has occurred.
    - OracleBI Discoverer was unable to complete the connection initialization.
    - Insufficient privilege for attempted operation -Desktop and plus.
    Environment:
    E-biz: 12.0.6
    DB:11.2.0.2
    Discoverer: 10.1.2.55.26
    I see the below error in application.log
    12/07/26 13:59:43 discoverer: [ERROR] [Discoverer Viewer BG Worker 5] oracle.discoverer.applications.framework.ApplicationController._logException error.connection.failed
    oracle.discoverer.applications.viewer.controllers.ControllerException: error.connection.failed
    at oracle.discoverer.applications.viewer.controllers.APIController.handleApiConnectAppsSecure(Unknown Source)
    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 oracle.discoverer.applications.framework.RequestProcessor.execute(Unknown Source)
    at oracle.discoverer.applications.framework.WorkerThread.run(Unknown Source)
    at java.lang.Thread.run(Thread.java:662)
    Caused by: oracle.discoverer.applications.viewer.model.ConnectionException: error.setup.connection
    at oracle.discoverer.applications.viewer.model.RelationalConnection.connect(Unknown Source)
    at oracle.discoverer.applications.viewer.model.DirectConnection.connectAppsSecure(Unknown Source)
    ... 8 more
    Caused by: oracle.discoiv.beans.EulException: Insufficient privilege for attempted operation - Desktop and Plus
    at oracle.discoiv.beans.proxy.server.DiscovererServer$ConnectionErrorChecker.check(DiscovererServer.java:956)
    at oracle.discoiv.beans.proxy.server.DiscovererServer.assessErrors(DiscovererServer.java:775)
    at oracle.discoiv.beans.proxy.server.DiscovererServer.findConnectionErrors(DiscovererServer.java:833)
    at oracle.discoiv.beans.proxy.server.DiscovererServer.findErrors(DiscovererServer.java:731)
    at oracle.discoiv.beans.proxy.server.DiscovererServer.loadDocument(DiscovererServer.java:652)
    at oracle.discoiv.beans.proxy.server.DiscovererServer.getDocument(DiscovererServer.java:204)
    at oracle.discoiv.beans.proxy.XMLProxy.getElement(XMLProxy.java:189)
    at oracle.discoiv.beans.proxy.XMLProxy.connect(XMLProxy.java:338)
    at oracle.discoiv.beans.proxy.ConnectionStoreProxy.connect(ConnectionStoreProxy.java:584)
    at oracle.discoiv.beans.ConnectionStore.connect(ConnectionStore.java:402)
    ... 10 more
    please advice on this issue ASAP.
    Thanks in advance.
    Regards
    Komuraiah

    Please see these docs.
    Creating Public Connection Errors With 'Cannot get a list of connections. IO exception: Connection reset' [ID 362264.1]
    Connecting To An Applications Mode EUL With Discoverer 10g Plus/Viewer Fails With 'PLS-00302: component 'IS_PWD_EXPIRED' (10.1.2) [ID 566737.1]
    Contact With Backend Server Lost, OracleBI Discoverer Viewer Was Unable To Find The Necessary Data For Displaying The Results Of This Event. [ID 412905.1]
    Connect To Discoverer Plus Or Viewer (Installed on AIX Server) Results In: No Process To Read Data Written To A Pipe [ID 561148.1]
    "Connection Failed" Error Encountered When Logging into Discoverer Viewer [ID 434846.1]
    Is the JDBC Patch 4398431 required on standalone Discoverer middletiers? [ID 1330378.1]
    Thanks,
    Hussein

  • Cannot Send Email from Crystal Reports Viewer; MAPI:Overflow

    I am trying to send a report via email with crystal reports, but i get the following error message:
    "The following unexpected error occured while trying to send the report to MAPI: Overflow."
    I am using Outlook 2010, Win 7 x64 bit.
    Does anyone have any ideas or thoughts?

    Yes, it is a 3rd party app that opens Crystal Reports Viewer.  Attached are the screen shots I get when try to send the report as an email.
    -Dan

Maybe you are looking for

  • HT1338 trying to update iTunes but get a corrupt message

    trying to update iTunes but get a corrupt message

  • Adobe LC: Email Script.

    Hi, Someone could pls help me on below requirement: When the user clicks on the email button the PDF file should attach to the oulook email and following property/option should enable/check in the outlook. Options->Security Settings->Encrypt message

  • Error with respect to JDBC scenario

    Hi Everyone, I have created a scenario based on the weblog "Connecting to MS Access using receiver JDBC Adapter (Without DSN)". I have created a MS-ACCESS database on my local system(Inld50047017a)and want to populate data in it. The scenario is simp

  • Powerpoint slideshow problem

    I did not know what other discussion group to put this on. I made a Powerpoint slideshow presentation with 16 jpeg slides. This went fine. Now, I want to insert a song (.wav) file to play as long as the slideshow is running. When I try to do this usi

  • Java.lang.StackOverflowError + set Visible

    Reference : bug Id 4116835 Problem :JInternalFrame.setVisible(true) causes StackOverflowError (infinite loop) Solution provided : call super.show() instead of setVisible Java 5.0 has depricated show method. What is the replacement ?