How to run D2k 32 bit Application on Windows 7 64 Bit

Dear Friends
How to run D2k 32 bit Application on Windows 7 64 Bit, Presently I am having a Application developed in D2k 32 Bit, and it is running smooth on Windows Visa and Windows Xp. but now OUr company are going for new Laptops having Windows 7 64 Bit.
Is there any way to Solve this Problem, or I have to upgrade D2k , which will be a 6 month job.
sandy

Since Forms 6 was never certified on Vista, I will assume you don't care about using Oracle Support. If that's the case, getting Forms 6 to work on Win 7 would likey require similar steps as you took to getting it to work on Vista.
At minimum, you would need to do the following:
1. Start with Forms/Reports 6.0.8.11 (6i Release 2)
2. Install the latest (last) patch (#17), bring the version to 6.0.8.26
3. It may be necessary to relax or disable Windows UAC
4. To run the executables, you have to right click on them and select Run As Administrator in order for them to work properly.
THE ABOVE IS NOT A SUPPORTED CONFIGURATION
Forms 6.x was desupported years ago. If you have not already begun to do so, you should probably be working on a migration plan in order to get you to a supported version. The latest version is 11.1.1.3, so you are far behind. All versions newer than 6.x are entirely web based. This means that you will no longer be able to use the Forms runtime on the client machines. Client machines will require an Oracle certified browser and JRE in order to run Forms. Certification information for Fusion Middleware 11 (includes Forms 11) can be found here:
http://www.oracle.com/technetwork/middleware/downloads/fmw-11gr1certmatrix.xls
FMw Product information can be found here:
http://www.oracle.com/us/products/middleware/index.html
Forms 11 information can be found here:
http://www.oracle.com/us/products/tools/oracle-forms-161771.html
http://www.oracle.com/technetwork/developer-tools/forms/overview/index.html

Similar Messages

  • How to run only certified applications in windows ce 6.0

    I want to run only certified applications in windows ce 6.0

    Please read your NetBeans documentation for using the GUI editor and the Java Tutorial on building GUI's if you choose to try this manually. If you choose to do this with the GUI editor in NetBeans, please ask your question on the NetBeans site as it is the proper place to ask NetBeans questions and not Java specific development questions.

  • Running a Java Application in Windows

    Hi, Can anyone tell me how to run a Java Application in Windows? I've tried to run it using TextPad 4.5 but it gives me an exception saying it can't find a class defenition. I'm actually using IBM VisualAge for Java to develop the app and it runs fine INSIDE VisualAge and I've exported my compiled class files and so on, to run it stand-alone in Windows. I'm using some custom objects and inner classes, could these be the problem?

    YES! SUCCESS! I exported my class files from VAJ and along with the manifest file that it adds automatically. I opened up the jar with Winrar, extracted the manifest file and added the Main-class: header pointing to my executable and then put it back in the jar with winrar. And PRESTO! I can now run it with javaw! Thanks for your help peeps...

  • RUN MS DOS APPLICATION IN WINDOWS 7 64-BIT?

    HI THERE 
    HOW CAN WE RUN MS DOS APPLICATION IN WINDOWS 7

    Hi,
    You can use XP mode in Windows 7, then launch this DOS application in XP mode.
    Here is a reference link
    Install and use Windows XP Mode in Windows 7
    http://windows.microsoft.com/en-IN/windows7/install-and-use-windows-xp-mode-in-windows-7
    Yolanda Zhu
    TechNet Community Support

  • Can we run 32 bit application over 64 bit windows server 2012 ?

    Can we run 32 bit application over 64 bit windows server 2012 ?

    Hi,
    Thanks for your question.
    Since the two cases that you posted are the same, I will merge them so that you can get a better assistance. Thanks for your understanding
    and support.
    In addition, according to your question, it depends on the applications. Some applications designed for the 32-bit version of Windows
    will work on the 64-bit version of Windows, but some are not. Before you install the application, you’d better check if it is compatible with 64-bit version of Windows Server 2012.
    Best regards,
    Susie

  • How to run a batch file as windows Nt service

    Hi friends
    I want to know how to run a batch file as windows NT service.
    I got some information in the following link
    http://support.microsoft.com/kb/q243486/
    I tried it but i want to know what we need to include in Autoexnt.bat
    And one thing i need Instexnt.exe file. I cannot find tht file.
    Please search tht file and send me tht file or else send the link in which this file is present
    Please give me reply fast.its very urgent.
    Thanks in advance.

    Hi,
    My aim is to run a MS-DOS Batch file, that I created to run a Java Prgram.
    I need to call the Batch File from the Oracle Procedure, Also I may need to change the content of the Batch File (Argument to the Java JAR File ).
    I can keep the JAR FIle either in the Oracle Server or in the Application Server.
    The Java program is to convert XML Format FIle to PDF and MS Word format.
    Oracle Version : 10g 2.0.1.0.
    Thanks in advance
    Rizly

  • How to run a JavaFX application like a native executable?

    Hi,
    How can a user run my JavaFX application on Windows without having to install JavaFX SDK or using any web related method? I want to give the impression that my JavaFX application is native.
    What should be bundled together for a complete JavaFX runtime environment?
    Thanks in advance
    Argon

    - I've installed javafx SDK on my machine
    - I created a new java application
    - I added all jar my java app in this dir. (javafx\javafx-sdk\lib\desktop)
    Java app:
    public static void main(String[] args) {
    Context context = FXLocal.getContext();
    FXClassType instance = context.findClass("mainClassName.Main");
    FXLocal.ObjectValue obj = (ObjectValue)instance.newInstance();
    JavaInterface ji = (JavaInterface)obj.asObject();
    ji.runFX();
    and i get this error
    Exception in thread "main" java.lang.SecurityException: class "javafx.util.Math"'s signer information does not match signer information of other classes in the same package
    at java.lang.ClassLoader.checkCerts(ClassLoader.java:776)
    at java.lang.ClassLoader.preDefineClass(ClassLoader.java:488)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:615)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
    at java.net.URLClassLoader.access$000(URLClassLoader.java:56)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
    at com.sun.javafx.scene.layout.region.BackgroundFill$BackgroundFillsType.convert(Unknown Source)
    at com.sun.stylesheet.StyleHelper.lookup(Unknown Source)
    at com.sun.stylesheet.StyleHelper.transitionToState(Unknown Source)
    at javafx.scene.Node.impl_processCSS(Unknown Source)
    at javafx.scene.Parent.impl_processCSS(Unknown Source)
    at javafx.scene.Parent.impl_processCSS(Unknown Source)
    at javafx.scene.Parent.impl_processCSS(Unknown Source)
    at javafx.scene.Parent.impl_processCSS(Unknown Source)
    at javafx.scene.Parent.impl_processCSS(Unknown Source)
    at javafx.scene.Parent.impl_processCSS(Unknown Source)
    at javafx.scene.Scene.doCSSPass(Unknown Source)
    at javafx.scene.Scene.userInit$(Unknown Source)
    at com.sun.javafx.runtime.FXBase.complete$(Unknown Source)
    at mainClassName.Main$1Local$1.doit$$0(Main.fx:164)
    at mainClassName.Main.runFX(Main.fx:153)
    at javafxjava.Main.main(Main.java:30)
    i had use it :
    jarsigner -keystore keystore-name -storepass keystore-password
    -keypass key-password jar-file alias-name
    but same error occurred.
    Thanks.

  • Keep getting the 'system has run out of application memory' window, what to do?

    I'm running a mid 2010 MacBook with 2.4 Ghz Intel Core 2 Duo processor and OS X 10.9.5. Every time I'm on Safari I get the 'System has run out of application memory' window and it asks you to quit out of programs you're not using.  The problem is sometimes the only things running are Safari and Finder.  It'll then freeze up programs and prevent web pages from loading or showing up.  I'm not quite sure what this means or how to go about fixing it.  Any help would be much appreciated.

    Hi Meghan,
    If you are seeing that alert that you are running out of application memory then I would take a look at using Activity Monitor to see how the memory is being used. If it looks normal usage to you, then you may want to upgrade the memory on your Mac. Take a look at the article below for more information. 
    OS X Mavericks: If your Mac runs slowly
    https://support.apple.com/kb/PH13895
    How to use Activity Monitor
    https://support.apple.com/en-us/HT201464
    Take it easy,
    -Norm G.

  • Time running time of applications in windows??

    How do I time the running time of applications in windows?? 
    in linux its quite easy : time ./a.out
    but how in windows??

    jinn wrote:
    How do I time the running time of applications in windows?? 
    in linux its quite easy : time ./a.out
    but how in windows??
    You can use TimeIt.exe from MS's Windows Server 2003 Resource Kit Tools:
    http://www.microsoft.com/downloads/deta … layLang=en
    The whole kit has to be downloaded (~ 12 MB), but you can extract the rktools.exe file and then extract the rktools.msi file contained therein to get at the individual tools without having to install everything if you desire.
    From the extracted readme file:
    Timeit.exe
    TimeIt is a command-line tool that records the time a specified command takes to run.
    File Required
        * Timeit.exe
    TimeIt Syntax
    timeit [-f FileName] [-a] [-c] [-i] [-d] [-s] [-t] [-k KeyName | -r KeyName] [-m Mask] [Command]
    -f FileName
        Specifies the name of the database file where TimeIt keeps a history of previous timings. The default file name is .\Timeit.dat
    -k KeyName
        Specifies the keyname to use for this timing run.
    -r KeyName
        Specifies the key name to remove from the database. If the key name is followed by a comma and a number, the slowest time (positive number) or the fastest time (negative number) for that key name will be removed.
    -a
        Specifies that TimeIt should display average of all timings for the specified key name.
    -i
        Ignores nonzero return codes from the program run by TimeIt.
    -d
        Shows detail for average.
    -s
        Suppresses systemwide counters.
    -t
        Specifies tabular output.
    -c
        Forces a re-sort of the database.
    -m Mask
        Specifies the processor affinity mask.
    Command
        Specifies the command to time.
    Note
    TimeIt accepts only parameters preceded with a dash (-).
    Though I believe TimeIt is a good choice based on your post, alternatively you could install Cygwin or use the various timer modules / classes / functions available in a variety of different programming languages depending on which one(s) you may use.

  • How to run an "Automator" application at regular time intervals

    I would like to find out how to run an "Automator" application at regular time intervals, say at every 5 minutes.
    Is there any program, AppleScript or any method to do this?
    I would very much appreciate a help.
    Suwan

    save your workflow as an ical plugin, this will automatically insert the workflow into ical,and create a workflow category for it, then just set to repeat every 5 minutes, or save as an APP and use a program called CRONIX (freeware) to run the schedule.

  • How to run custom BSP application in UI frame work.

    Hi,
    Can you please tell me how to run custom BSP application in UI frame work.
    I have copied CRM_UI_FRAME application into ZCRM_UI_FRAME. Now if i am trying to test this particular application but in URL of IE i am able to see that its always calling CRM_UI_FRAME application.
    Can any body help me out in this?
    Rgds,
    Jat.

    Hi!
    You will find that and some other interesting stuff here
    https://websmp206.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700001006302007E
    The documents name is How-to Guide Framework Enhancements
    rollo
    Edited by: rollo on Aug 8, 2008 8:20 AM

  • How to run a FXML application on a server?

    I would like to learn how to run a FXML application as applet directly on a server with no download for the client part.
    My question:
    1) Is it possible?
    2) Is there someone so kind to give me some basic steps I have to follow to accomplish this?
    A working example of the whole process would be very appreciated.
    Thanks very much.

    I'm not sure the question really makes sense.
    FXML is a markup language for laying out the user interface in a JavaFX application. So "FXML application" doesn't really make sense; you have JavaFX applications whose layout may or may not be managed by FXML. What you can do with those applications doesn't depend on whether FXML is used. In any event, JavaFX applications are inherently client-side applications; they have a user interface and expect user interaction. It wouldn't make sense to run these on a server.
    So it's not really clear to me what you mean.

  • How to run greasemonkey in Safari for Windows

    How to run greasemonkey in Safari for Windows, trying to use this for work and I have scripts I use in FF 3.5 that I would need in safari.
    Safari 4.0
    Message was edited by: metalsiren

    bump

  • How to run the oracle application cleint using static ip or domain please e

    How to run the oracle application cleint using static ip or domain please explain me.
    i am not able to run oracle forms in client machine how to run it please explain me
    Please give me detail regarding that
    any body please help me.
    my mail id::::: [email protected]

    You did not mention exactly which Forms version you are using so it will be difficult to offer specific help. However, you did mention Forms 9i. ALL "9i" releases were desupported long ago, so find software or documentation are becoming more difficult.
    Here is the Deployment Guide for Forms 10.1.2
    http://download.oracle.com/docs/cd/B19375_07/doc/frs/forms/B14032_03/toc.htm
    Here are some technical reference for Forms 9.0.x
    http://www.oracle.com/technology/products/forms/techlisting9i.html

  • How to run s60 synbian application in 6300 ?

    how to run an application already runing automatically in nokia 6600 on nokia 6300, when transfered through blutooth or the memory card the particular application does not runs in nokia 6300
    how to run that particular application in nokia 6300..?

    11-Oct-200702:15 AM
    kamalkkl2002 wrote:
    how to run an application already runing automatically in nokia 6600 on nokia 6300, when transfered through blutooth or the memory card the particular application does not runs in nokia 6300
    how to run that particular application in nokia 6300..?
    No way.
    Try to google to see if you found that kind of java applications for 6300.

Maybe you are looking for

  • How to delete a field's name in the form of 2014.1

    In the 2014 version, you can delete the field's email in html and online everything worked. In version 2014.1 so you can do. Necessary to create a form with the name and telephone. Help!

  • Export all open files to jpeg = bug?

    hi there! I'm currently writing a script that exports all the open documents to a JPEG. this works except for one little thingy: instead of exporting all the documents, it exports only the active one, with all the other document names... so for examp

  • Calling a dimension from other dimension

    Hi ALL, I am creating a repository and i have created 2 dimensions. One is Instrument Dimension, second one is Currency dimension. Is it possible to call the level of one dimension from the other dimension. I am doing like this: Instrument Dimension

  • Metadata: Filter By Exposure Bias

    It would be great if one could metadata by exposure bias. This would be very handy for those of us who shoot with AEB auto exposure bracketing. Thanks, Alexander Stross

  • Report Application failing

    I'm running Forms and Reports 11g R2 under Weblogic 10.0.3.6. On the front page of the Middleware Control, all Forms and Reports components are shown as healthy (green). However, if I drill down to the reports application, it is shown as red. I can s