Problem Hosting an ActiveX which starts VB6 Forms in WPF

We need to “host” an older application written in VB6 into a WPF Shell. We need to make sure that this app is part of the new WPF shell.
The older app consists of:
1) ActiveX component that shows a grid with data and some buttons;
2) By selecting a record and double clicking a record a Modeless VB6 form is opened. This form is implemented in an in process vb6 app;
From these modeless form, other modeless forms and modal forms can be started by the user.
Showing these modeless forms that are implemented in the “in process” windowless ActiveX components gives us problems. We have tried out two options to get around the problems. But so far no success.
We have explored two options: 
1) Host ActiveX component directly in WPF, which gives us problems with modeless forms and ‘tabbing’ though the controls of the form;
2) Start vb6 exe, host the ActiveX component there and then host the output of that VB6 exe in WPF: we now face some challenges with the communication between form and WPF shell;   
In both cases we face some challenges with regards to the keyboard navigation. We want an have expert opinion on this matter. Does anyone have some tips on this topic? 

Thanks. 
Let me try to describe the problem in some more detail. I have build a solution, that is a very simple representation of the actual problem we are facing. But without our own system layer and controls
(etc).
The example solution consists of:
VB6 ActiveX dll, representing one of our maintance apps: containing a class and a form. The class creates instances of the form and shows the form;
VB6 control (ocx), representing our custom control, which instantiates the class;
VB6 exe, representing our 'old Shell', which hosts the VB 6 control;
WPF exe, representing our 'new Shell', which hosts the VB 6 control.
In the 'new shell' we have hosted an vb6 control (ocx), by using the WindowsFormsHost object. This is done in a way described in the "Walk through" (http://msdn.microsoft.com/en-us/library/ms742735.aspx
The VB6 control consist of two buttons: 'show modeless form' and 'show modal form'. The buttons create an instance of the class and instructs the class to either start the form modal or modeless,
by calling public methods of the class.
When starting the VB 6 app, the user can start new modeless forms and modal forms without any problems. This is how our current (VB6) Shell works.
Now we want to move our solution to a newer platform, but gradual, no big bang conversion: the real system is large and complex. In the first phase we don’t want the touch the legacy apps.
We created a WPF exe that hosts the VB6 control. The user can start the modal form without any problems. However clicking the 'show modeless button' raises an error:
Run-time error: '406' Non-Modal Forms cannot be displayed in this host application from an ActiveX DLL, ActiveX control or property page
We figured out that we 
have a fundamental problem here.
(some related docs we have consulted
http://www.kbalertz.com/247791/Modeless-Forms-ActiveX-Display-Clients.aspx ,
http://support.microsoft.com/default.aspx?scid=kb;EN-US;171978 ,
http://www.desaware.com/support/faq/spyworks/swfaqthreading.aspx )
Instead of doing the frm.Show vbModeless, we now call the ShowWindow() api. This shows the user the modeless form, with some side effects like a 'tab key' that doesn't work as expected (and probably
some other effects we didn't find out yet).
From the user perspective, only showing modal forms is not an option (as is suggested in 
http://support.microsoft.com/default.aspx?scid=kb;EN-US;171978)
We are now looking 
into hosting the VB 6 control in a VB6 exe and then host the VB6 exe in WPF. 
We then face some challenges in the communication (and navigation) between the two applications.
I have looked also into this document 
http://blogs.msdn.com/b/changov/archive/2009/10/26/hosting-wpf-ui-cross-thread-and-cross-process.aspx (and related docs) as well, but
the same issues persist here as described.
I hope this narrows down the problem a bit more. Do you have any other leads or paths we can follow?
I can send you the simple example I have created that reproduces our problem.
Sincerely,
Bart

Similar Messages

  • IExplorer 6 crashes when it starts a Form

    Hi,
    My problem is:
    I try to start a form (URL: http://hpnt2/dev60cgi/ifcgi60.exe?form=...) and MS IExplorer is closed without any message or any DR. Watson action.
    My os: Win2000 SP3
    IE: 6.0 SP1
    It wokrs on other machine (NT and Win2000 too), with other IE (5.5 and 6.0 too).
    In fact I haven't any idea where should I find the problem.
    If you have ever heard about a problem like this please inform me!!!
    With many thans
    Matyas Horvath

    Welcome to the Apple Discussions. Backup the library and try the two fixes below in order as needed:
    Fix #1
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your User/Library/Preferences folder.
    2 - delete iPhoto's cache files that are located in the User/Library/Application Support/Caches/com.apple.iPhoto folder.
    3 - reboot, launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding the the Option key. You'll also have to reset the iPhoto's various preferences.
    Fix #2
    Launch iPhoto with the Command+Option keys depressed and follow the instructions to rebuild the library. Select options #1, #2 and #6.
    Click to view full size
    OT

  • TS3789 I have similar problem, my apple tv which has always worked properly with my Samsung tv will no longer play any audio after the latest 5.1 upgrade. Very frustrating as it was working perfectly before. I am starting to not trust apple upgrades until

    I have similar problem, my apple tv which has always worked properly with my Samsung tv will no longer play any audio after the latest 5.1 upgrade. Very frustrating as it was working perfectly before. I am starting to not trust apple upgrades until proven for example ios6 on iPhone with that stupid map app instead of google maps.
    I just want to buy and hear my iTunes music and videos on my apple tv, could before cant now. Thank you apple. Time to pack up the apple tv and start torrenting without the ios-bs.
    Disheartened apple fan.

    Welcome to the  discussion forums.
    Try going to synching in the sources menu on your tv and selecting 'change itunes library', when it gives you the passcode check itunes to see if the tv is showing up as a new device, if so try entering the pass code. It may be that your tv is seeing itunes as a different library because of a recent upgrade.

  • Problems 'hosting out' of java

    Hi,
    JDeveloper version 9.0.3.1035
    Windows NT
    I am having problems 'hosting out' of java. The dos command shell is opened but little else happens.
    I am trying to run a batch file called test.bat that has contents: -
    notepad.exe
    My code is : -
    public static void host(String[] cmd, boolean wait)
    throws IOException, InterruptedException
    //Run jobs asynchronously
    Runtime rt = Runtime.getRuntime();
    for (int i=0;i<cmd.length;i++)
    logger.debug("Command being run is : " + cmd);
    Process process = rt.exec(cmd);
    if (wait)
    logger.debug("Waiting for process to finish.");
    process.waitFor();
    logger.debug("Process exit value : " + Integer.toString(process.exitValue()));
    The debug output is :-
    Command being run is : "C:\test.bat"
    Waiting for process to finish.
    Process exit value : -1073741510
    Thanks,
    Paul.

    Hi Guys
    After attempts was able to install with license page being displayed in English. H/ever since then I have had a bit of a problem trying to run Secunia Software Inspector which requires the use of Java, The problems which I am experiencing are as follows:
    When the program starts I receive the following
    quote
    Java(TM) Plug-in Fail Error
    Several Java Machines Running in the same process caused an error
    Your Systm does not appear to have sun java installed. Sun Java is required for the Secunia Software Inspector to work. You should consider downloading the latest version of Sun Java from http://www.java.com/ before continuing.
    unquote
    Eventually the program closes resulting the following message appearing on desktop
    quote
    ieplore.exe application error, the instruction at 0x2e746e65 referenced at 0x2e746e65. The memory could not be read.
    unquote
    The bottom line is that I have Mozilla Firefox browser installed and when I run the program using this browser there is absolutely no problem. Runs like a dream. Because of this factor I am wondering why there is so much problem running it using IE
    Any help appreciated.
    xonk 123

  • Windows Vista Home Premium (64-bit) is slow. Which start-up services should run?

    I recently had to use system restore and make a few changes to get my system running again.  Ooops. I now have a very slow computer whereas it was working fine before.  I haven't recently installed any new software or hardware and suspect that some essential start-up services may have been disabled, stopped or set to manual while some other unused services may have been set to start, automatic or automatic (delayed).
    Can someone please direct me to another thread (if available) or list which start-up services should be in which state?
    Thank you!
    System details:
     ~ HP IQ818A 
     ~ Windows Vista Home Premium
      ~ Service Pack 1 
     ~ 4GB RAM 
     ~ 64-bit 
     ~ avast! Anti-virus is active 

    Sydney,
    I don't have an IQ818 at the moment, all I have is an IQ506T - from last fall.  I had just done a recovery of it.
    Note:  1) I did choose to NOT perform automatic updates, 2) I haven't yet configured Norton, and 3) I haven't turned off TouchSmart from running in the background.
    This isn't exactly your system, but it would be somewhat close.  Your safest bet would be to recover and start over, but here goes with the services listings.  Please note its comma delimited - you can look at it better with something like Excel, Works or Open Office.
    Good luck on this.
    -dm (an HP employee, but the comments/etc, are mine, not HP's)
    Name,Status  ,Startup Type,,
    Andrea ADI Filters Service,Started,Automatic,,
    Application Experience,Started,Automatic,,
    Application Information,Started,Manual,,
    Application Layer Gateway Service,,Manual,,
    Automatic LiveUpdate Scheduler,,Disabled,,
    Background Intelligent Transfer Service,Started,Automatic (Delayed Start),,
    Base Filtering Engine,Started,Automatic,,
    Bluetooth Support Service,Started,Automatic,,
    CalendarSynchService,Started,Automatic,,
    Certificate Propagation,,Manual,,
    CNG Key Isolation,Started,Manual,,
    COM Host,,Manual,,
    COM+ Event System,Started,Automatic,,
    COM+ System Application,,Manual,,
    Computer Browser,,Automatic,,
    Cryptographic Services,Started,Automatic,,
    DCOM Server Process Launcher,Started,Automatic,,
    Desktop Window Manager Session Manager,Started,Automatic,,
    DFS Replication,,Manual,,
    DHCP Client,Started,Automatic,,
    Diagnostic Policy Service,Started,Automatic,,
    Diagnostic Service Host,,Manual,,
    Diagnostic System Host,Started,Manual,,
    Distributed Link Tracking Client,Started,Automatic,,
    Distributed Transaction Coordinator,,Manual,,
    DNS Client,Started,Automatic,,
    Extensible Authentication Protocol,Started,Manual,,
    Function Discovery Provider Host,Started,Manual,,
    Function Discovery Resource Publication,Started,Automatic,,
    GameConsoleService,,Manual,,
    Group Policy Client,Started,Automatic,,
    Health Key and Certificate Management,,Manual,,
    HP Health Check Service,Started,Automatic (Delayed Start),,
    HP Touch Screen Enhance,Started,Automatic,,
    Human Interface Device Access,Started,Automatic,,
    IKE and AuthIP IPsec Keying Modules,Started,Automatic,,
    Interactive Services Detection,,Manual,,
    Internet Connection Sharing (ICS),,Disabled,,
    IP Helper,Started,Automatic,,
    IPsec Policy Agent,Started,Automatic,,
    KtmRm for Distributed Transaction Coordinator,Started,Automatic (Delayed Start),,
    Link-Layer Topology Discovery Mapper,,Manual,,
    LiveUpdate,,Manual,,
    LiveUpdate Notice,Started,Automatic,,
    Microsoft .NET Framework NGEN v2.0.50727_X64,,Manual,,
    Microsoft .NET Framework NGEN v2.0.50727_X86,,Manual,,
    Microsoft iSCSI Initiator Service,,Manual,,
    Microsoft Office Diagnostics Service,,Manual
    Microsoft Software Shadow Copy Provider,,Manual
    Multimedia Class Scheduler,Started,Automatic
    Net.Tcp Port Sharing Service,,Disabled
    Netlogon,,Manual
    Network Access Protection Agent,,Manual
    Network Connections,Started,Manual
    Network List Service,Started,Automatic
    Network Location Awareness,Started,Automatic
    Network Store Interface Service,Started,Automatic
    NVIDIA Display Driver Service,Started,Automatic
    Office Source Engine,,Manual
    Parental Controls,,Manual
    Peer Name Resolution Protocol,,Manual
    Peer Networking Grouping,,Manual
    Peer Networking Identity Manager,,Manual
    Performance Counter DLL Host,,Manual,,
    Performance Logs & Alerts,,Manual,,
    Plug and Play,Started,Automatic,,
    PnP-X IP Bus Enumerator,,Manual,,
    PNRP Machine Name Publication Service,,Manual,,
    Portable Device Enumerator Service,Started,Automatic,,
    Print Spooler,Started,Automatic,,
    Problem Reports and Solutions Control Panel Support,,Manual,,
    Program Compatibility Assistant Service,Started,Automatic,,
    Protected Storage,,Manual,,
    Quality Windows Audio Video Experience,,Manual,,
    ReadyBoost,Started,Automatic,,
    Remote Access Auto Connection Manager,,Manual,,
    Remote Access Connection Manager,Started,Manual,,
    Remote Procedure Call (RPC),Started,Automatic,,
    Remote Procedure Call (RPC) Locator,,Manual,,
    Remote Registry,,Manual
    Routing and Remote Access,,Disabled
    Secondary Logon,Started,Automatic
    Secure Socket Tunneling Protocol Service,Started,Manual
    Security Accounts Manager,Started,Automatic
    Security Center,Started,Automatic (Delayed Start)
    Server,Started,Automatic
    Shell Hardware Detection,Started,Automatic
    SL UI Notification Service,,Manual
    Smart Card,,Manual
    Smart Card Removal Policy,,Manual
    SNMP Trap,,Manual
    Software Licensing,Started,Automatic
    SSDP Discovery,Started,Manual
    Superfetch,Started,Automatic
    Symantec Core LC,,Manual
    Symantec Event Manager,Started,Automatic
    Symantec Lic NetConnect service,Started,Automatic
    Symantec Settings Manager,Started,Automatic
    System Event Notification Service,Started,Automatic
    Tablet PC Input Service,Started,Automatic
    Task Scheduler,Started,Automatic
    TCP/IP NetBIOS Helper,Started,Automatic
    Telephony,Started,Manual
    Terminal Services,Started,Automatic
    Terminal Services Configuration,,Manual
    Themes,Started,Automatic
    Thread Ordering Server,,Manual
    TPM Base Services,,Automatic (Delayed Start)
    UPnP Device Host,Started,Automatic
    User Profile Service,Started,Automatic
    Virtual Disk,,Manual
    Volume Shadow Copy,,Manual,,
    WebClient,Started,Automatic,,
    Windows Audio,Started,Automatic,,
    Windows Audio Endpoint Builder,Started,Automatic,,
    Windows Backup,,Manual,,
    Windows CardSpace,,Manual,,
    Windows Color System,,Manual,,
    Windows Connect Now - Config Registrar,,Manual,,
    Windows Defender,Started,Automatic,,
    Windows Driver Foundation - User-mode Driver Framework,Started,Automatic,,
    Windows Error Reporting Service,Started,Automatic,,
    Windows Event Collector,,Manual,,
    Windows Event Log,Started,Automatic,,
    Windows Firewall,Started,Automatic,,
    Windows Image Acquisition (WIA),Started,Automatic,,
    Windows Installer,,Manual,,
    Windows Management Instrumentation,Started,Automatic,,
    Windows Media Center Extender Service,,Disabled,,
    Windows Media Center Receiver Service,,Manual,,
    Windows Media Center Scheduler Service,,Manual,,
    Windows Media Center Service Launcher,,Automatic (Delayed Start),,
    Windows Media Player Network Sharing Service,,Manual,,
    Windows Modules Installer,,Manual,,
    Windows Presentation Foundation Font Cache 3.0.0.0,Started,Manual,,
    Windows Remote Management (WS-Management),,Manual,,
    Windows Search,Started,Automatic,,
    Windows Time,Started,Automatic,,
    Windows Update,Started,Automatic (Delayed Start),,
    WinHTTP Web Proxy Auto-Discovery Service,Started,Manual,,
    Wired AutoConfig,,Manual,,
    WLAN AutoConfig,Started,Automatic,,
    WMI Performance Adapter,,Manual,,
    Workstation,Started,Automatic
    -DM (HP Retiree)
    NOTE: If this helps you or solved your problem - please say thanks by clicking the white kudos star on the left.
    If you think this would also help others, please mark 'Accept as Solution' to help them find it easier.

  • AOL host was unable to start a new session

    I really want to thank u barry for taking ur busy time to help me, i did like u told me download it aol 10.3.6, and delete it the previous version. and still is giving me a AOL host was unable to start a new session. maybe i missed something.
    I have a speedstream ss2624 router, my safari is working perfectlly fine its just my aol. do i have to get even an older version of aol?
    please guys i need a serious help, i figure must of u are very busy, but i would really appreciated.
    thanks dudes

    What kind of computer are you connecting with? Imac, powerbook, other?
    I am having a similar problem (same error) on a powerbook, but the problem is in my office (local network - sdsl router), and not at home (cable modem, wireless/4 port router) installed. With my office, I am having all sorts of other problems connecting to the network. I can only connect wirelessly, so I suspect that the AOL problem is linked to a larger network connectivity issue which I believe is ethernet incompatibility with the office's router. Best thing to do is take the client's machine to another location and see if it connects ok. If so, your client might be having some networking issues in his local space.

  • Problem while closing IE which displays the PDF

    Hi,
    I have an application in which a PDF form is displayed through the portal on an IE instance.
    The IE works fine until I open the pdf. Once I open the pdf im not able to close the IE. I have ti forcefully close it using the task manager.
    If I try navigating to another view from that PDF view ( Same IE instance) , the IE closes automatically throwing the 'Microsoft error' message.
    How do I avoid this??? What might be the problem?
    I use IE version 6.0
    Thanks in Advance,
    Reena

    Hi Reena,
    I am not sure, please try these solutions.
    1. Try to display the Adobe Interactive Form by adding the URL (of the Adobe Document Server) to the Trusted Sites of your MS Internet Explorer.
    2. If you are experiencing problems opening pdf documents in IE,
    then you need to  disable compression for pdf documents
    To disable the compression. please follow the steps :
    1. start the Visual Administrator in <J2EE Home>/admin directory  from the go script
    2. In the Left pane :
       Click on the "Cluster" tab.
       Browse <System name> -> Server -> Services -> HTTP Provider
    3. In the right pane
         - Make sure the "AlwaysCompressed" property does not contain any
         of the values
        *.pdf
        application/pdf
        - Make sure the  "NeverCompressed" property contains both values
        *.pdf
        application/pdf
    4. Click the save button on the top of the right pane.  The new setting will have effect on all servers in the cluster.
    configuration if you have made changes to the "AlwaysCompressed" or "NeverCompressed" properties.
    In such case you will need to perform the described above configuration manually.
    II. If you have been running custom code that relies on the pdf compression
    then you will need to maintain the  "AlwaysCompressed" or "NeverCompressed" properties back to their  previous values ("AlwaysCompressed" including *.pdf and application/pdf and "NeverCompressed" excluding both entries) after upgrade  but you may face problems with opening of pdf files in IE  as a side effect.
    //Raj

  • View Acrobat 9.0 PDF object in VB6 Form

    I'm programming in Visual Basic 6 and I was able to load the Acrobat 5 pdf object into the VB form.
    Now I try to find VB6 components to open Acrobat 9.0 PDF object in VB6 Form and could not find it.
    What should I do?
    Could somebody help me?
    I’ll really appreciate it,
    Ben

    I forgot to tell that I have Windows XP SP3.
    I added the Adobe Acrobat Browser Control type Library 1.0 (AcroPDF.dll) from Components.
    But when I try to Load the PDF into the VB6 Form I received Message from Adobe:
    “There is a problem with Adobe Acrobat/Reader. Please Exit Adobe Acrobat/Reader and try again.”
    When I click OK the PDF object is not showing up in the VB6 Form and trying again not help.
    If I just click the object manually outside of VB it is open without notice.
    Thanks,
    Ben.

  • Hello. I have adobe forms and received the alert that it will be ending in July. Then I received an email about Adobe Acrobat XI Pro which can create forms. I signed up for the free trial and when I began to make a new form it brings me back to Adobe Form

    Hello. I have adobe forms and received the alert that it will be ending in July. Then I received an email about Adobe Acrobat XI Pro which can create forms. I signed up for the free trial and when I began to make a new form it brings me back to Adobe Forms. My question is, when Adobe Forms ends on July 28th will Adobe Acrobat XI Pro be able to create forms or will it now? and if not, then why is adobe advertising for it still?

    What you're calling "Adobe Forms" is really Adobe FormsCentral. The FormsCentral service is indeed going away soon, but you can always create PDF forms (AcroForms) with Acrobat. Acrobat also comes with a desktop version of the FormsCentral desiger, which can be used to create simple PDF forms that can be used apart from the FormsCentral service. So you'll no longer be able to create and host web forms with the FormsCentral service or use PDF forms with the FormsCentral service. You will be able to create standalone PDF forms with Acrobat and simple PDF forms with the FormsCentral desktop app.

  • Siebel Analytics:Java host is not getting started

    Hi All,
    I had a problem on java host service, when i start this service,it shows a message called
    "the oracle java host service on local computer started and then stopped.some services stop automatically if they are not in use by other services or programs.".so someone help me to solve this problem"
    thanks
    Edited by: 964118 on Nov 8, 2012 9:54 AM

    Are there any other installations that you might have done recently? Please make sure the environment parameter/variable is set to the right path with no spaces.
    Refer: BI Java service issue in 11

  • It looks like your problem is at the beggining in the form tag, specificall

    Hello,
    I'm having an issue with a cgi form that I created (added on to a website I created using iWeb). Basically, here's the problem: I'm not sure if I have to FTP it over to mac in order for it to work, but if someone could let me know if that's the issue, I'd appreciate it. Basically, when any client hits the submit button on my site to fill out a quote request, it DOES NOT go into my inbox. Why?
    Here's the html code:
    http://yourdomain.com/cgi-bin/FormNewMail.cgi
    Below is a comment I received from someone who thought they knew where the problem was.
    "It looks like your problem is at the beginning in the form tag, specifically
    this part:
    action="http://yourdomain.com/cgi-bin/FormNewMail.cgi"
    When I type in that address, the correct page isn't loading, which probably
    means you haven't uploaded the actual "FormNewMail" script to your cgi-bin
    folder (at Webintellects).
    Anyone care to tackle this one?
    Thx,
    J

    What exactly does iWeb support as far as html forms then?
    Search this forum for "form".
    http://discussions.apple.com/thread.jspa?messageID=7650084&#7650084

  • UNIX: problem running an DEV & QA environment using form/report servlets

    UNIX: problem running an DEV & QA environment using form/report servlets
    I am trying to setup on one server an DEV and QA environment using the Forms Servlet, Forms Listener Servlet and Report Servlet.
    I think I have the Forms Servlet and Forms Listener Servlet running properly. The problem is setting up the DEV and QA environment for running reports.
    For example, when in DEV environment I would like to run a report from a directory specified in the REPORTS60_PATH. This doesn't seem possible.
    It might be easier if I describe my configuration first:
    DEV: run all forms and reports from the directory /data/release/dev
    QA: run all forms and reports from the directory /data/release/qa
    ---DEV & QA Settings Forms Listener Servlet:
    zone.properties:
    # DEV
    servlet.fl60dev.code=oracle.forms.servlet.ListenerServlet
    servlet.fl60dev.initArgs=EnvFile=/u01/app/oracle/product/ias/6iserver/forms60/server/dev.env
    # QA
    servlet.fl60qa.code=oracle.forms.servlet.ListenerServlet
    servlet.fl60qa.initArgs=EnvFile=/u01/app/oracle/product/ias/6iserver/forms60/server/qa.env
    ---DEV & QA Settings Forms Servlet:
    servlet.f60servlet.code=oracle.forms.servlet.FormsServlet
    --- Settings for Reports Servlet:
    servlet.RWServlet.code=oracle.reports.rwcgi.RWServlet
    Custom Env files since we are using Developer 6i Patch 7
    dev.env and qa.env
    Here I specify FORMS60_PATH and REPORTS60_PATH,
    eg: DEV -> FORMS60_PATH=/data/release/dev
    REPORTS60_PATH=/data/release/dev
    likewise for QA ../qa
    In the formsweb.cfg file i have something like:
    [dev]
    serverURL=/servlet/fl60dev
    form=test.fmx
    [qa]
    serverURL=/servlet/fl60dev
    form=test2.fmx
    I have tested the following and they work without problems:
    1. forms listener test page, eg: http://webserver:7777/servlet/fl60dev
    2. running forms from the 2 environments
    eg: http://webserver:7777/servlet/f60servlet?config=dev
    this runs the form in the FORMS60_PATH (/data/release/dev)
    Now my problems start with Reports.
    When I run a report from forms (using run_report_object) it will not run any reports
    as specified in the REPORTS60_PATH
    Even using this url:
    http://webserver:7777/servlet/RWServlet?server=rep60&report=test.rdf&destype=cache&desformat=html&
    userid=scott/tiger@test9i
    It NEVER seems to pickup and use the REPORTS60_PATH. I have tried nearly everything.
    I have gone throught the instructions in "Integrating Oracle9iAS Reports in Oracle9iAS Forms -
    White Paper"
    (http://otn.oracle.com/products/forms/pdf/277282.pdf)
    and Forms6i Patch 7: Oracle Forms Listner Servlet for Deployment of FOrms on the Internet
    (http://otn.oracle.com/products/forms/pdf/p7listenerservlet.pdf)
    plus any other documents in metalink relating to forms, or report servlets. I am
    totally confused, please help.
    I have tried setting the REPORTS60_PATH in the following files without success:
    custom.env (as specified by initArgs=EnvFile in zone.properties)
    jserv.properties
    in the zone.properties I have tried to set a custom env file for the report servlet:
    servlet.RWServlet.code=oracle.reports.rwcgi.RWServlet
    servlet.RWServlet.initArgs=EnvFile=/u01/app/oracle/product/ias/6iserver/forms60/server/dev_rep.env
    NO LUCK.
    The only place that I can set the REPORTS60_PATH
    is in "[6iserver home]/reports60_server" file when I start the reports server (did I even
    get this right - I do have to have a reports server running don't I?)
    Does this meaan I have to run multiple report servers for each of my environments?
    Based on all the documentation I thought that REPORTS60_PATH as specified in the files relating
    to the forms servlet would be the place to specify the path.
    As you will understand I am getting really fustrated with this and it seems to
    me that the reports servlet configuration in 6i is really half baked and since 9i
    is coming out it will never be fixed.

    I am even not able to run forms servlets from two different forms60_path, Is there any configuration do you make other than what you have mentioned in this post.
    I already open a TAR in this regard, I am still waiting reply from ORACLE.
    Thanks,
    Shaik Ather Ahmed

  • Parameter Prompt appearing behind a VB6 Form (Hidden)

    Hi,
    I have been using a VB6 application to access reports which have been created in Crystal 11.5, they work. I have tried to use a parememter promt for a new report but when the report is generated it appears behind the VB6 Form I would like to know if there is any way that i can force Focus to the parameter window in order to keep it at the front.
    This was a report originally designed in crystal 8 and it worked fine i do not understand why i cant get the parameter window to stay in front of the VB6 Form
    Any help would be greatly appreciated

    Please re-post if this is still an issue to the Legacy Application Development SDKs Forum or purchase a case and have a dedicated support engineer work with you directly

  • ActiveX error starting Financial Reporting

    Hello! Can anyone help me how to solve this problem: when I try to start Financial Reporting Studio I get the message "Run-time error 429. ActiveX can't create object" and Financial Reporting Studio doesn't start. Many thanks in advance! :)

    Manmohan, hi!
    Actually after installing Financial Reporting I left out the step of launching Hyperion Configuration Utility. So after launching it the problem resolved. Thanks a lot!

  • I'm having a real problem with my cursor which seems to have developed a mind of its own, zigzagging allover, highlighting things without my command, and basically making my MacBook unuseable (it's taken me half an hour just to compose this!).

    I'm having a real problem with my cursor which seems to have developed a mind of its own, zigzagging allover, highlighting things without my command, and basically making my MacBook unusable (it's taken me half an hour just to compose this!).

    There are several possible causes for this issue. Please take each of the following steps that you haven't already tried until it's resolved. Some may not apply in your case.
    1. Follow the instructions in this support article, and also this one, if applicable. A damaged or defective AC adapter could be the cause, even if it's the right kind.
    2. Press down all four corners of the trackpad at once and release. If there's any effect, it's likely to be temporary, and in that case the unit must be serviced or replaced.
    3. Open the Bluetooth preference pane in System Preferences and delete all pointing devices other than the trackpad, if applicable. Disconnect any USB pointing devices. By a "pointing device," I mean a peripheral that moves the cursor, such as a trackpad, mouse, trackball, or graphics tablet. A plain keyboard is not a pointing device.
    4. Start up in safe mode and test, preferably without launching any third-party applications. If you don't have the problem in safe mode, but it comes back when you restart as usual, stop here and post your results. Do the same if you can't start in safe mode. If there was no difference in safe mode, go on to the next step.
    5. Reset the System Management Controller.
    6. If you're using a Bluetooth trackpad or mouse, investigate potential sources of interference, including USB 3 devices.
    7. A swollen battery in a portable computer can impinge on the trackpad from below and cause erratic behavior. If you have trouble clicking the trackpad, this is likely the reason. The battery must be replaced without delay.
    8. There's a report that a (possibly defective) Thunderbolt Ethernet adapter can cause the built-in trackpad of a MacBook to behave erratically. If you're using such an adapter, disconnect it and test.
    9. There's also a report of erratic cursor movements caused by an external display that was connected but not turned on.
    10. If none of the above applies, or if you have another reason to think that your computer is being remotely controlled, remove it from the network by turning off Wi-Fi (or your Wi-Fi access point), disconnecting from a Bluetooth network link, and unplugging the Ethernet cable or USB modem, whichever is applicable. If the cursor movements stop at once, you should suspect an intrusion.
    11. Make a "Genius" appointment at an Apple Store to have the machine and/or external trackpad tested.

Maybe you are looking for

  • How to avoid duplication of mails on Mac book and I phone

    Am using Apple mail on Mac Book Lion version & I phone 4 with IOS. Am using corporate mail server ie     [email protected] Despite having done the mail settngs with the option -     Delete mail immediately on removing the mail from Inbox, the same ma

  • Dynamic character count info as text box resizes

    Not knowing Javascript, does anyone think this is scriptable? When clicked inside a text box the info panel tells you how many characters are in view in that text box and how many are overset... it doesn't however display that info if you are resizin

  • Downloading new firmware version still did not solve connection issue!

    I was told my support on live chat to try downloading the newest version of the firmware for my wireless router WRT54G. I had 3.something from 2004. I now have 4.21.1 and I STILL cannot see my router in my View Available Wireless Networks list. I see

  • Facebook exporter for iPhoto 11 problem!

    I previously had installed the Facebook exporter for iPhoto and it worked fine. It always showed up as a tab in File Export. Now with Iphoto 11 the tab for facebook has disappeared. I went to the download page for it again to reinstall it and when I

  • Web Service with overloaded methos

    Hello, I am using JDev 10.1.3.3. I've a class that has many overloaded methods and I want to publish that class as a web service. However, JDeveloper doesn't allow me to publish overloaded methods. Is there any way around it?? Please advice. Thanks,