Develop forms in 32 Bit and run this fmx on 64 Bit ?

can I develop with 32 Bit Forms 11.2 on 32 Bit Windows and
run this fmx' on a 64 Bit Windows Server Installation
with 64 Bit WLS and 64 Bit forms 11.1.1.4 ?
regards

Be aware that Oracle has always provided the Forms compiler with all Application Server installations. The purpose was to provide the utilities needed in order to generate machine compatible executibles. The Forms fmx, mmx, and plx files are not portable. It has always been required that they be created on the machine where they are expected to be run.
So, regardles of whether you are using Application Server 9, 10, 11, or any other, your installation includes the tools needed to create the proper files for your machine. Of course this assumes you have installed the proper Application Server release which was inteneded to support running Forms/Reports.
If you have access to MyOracleSupport, refer to Note 299938.1

Similar Messages

  • Is it possible to convert Java to EXE and run this EXE file without any JRE

    hello friends
    I have GCC/GCJ for windows but dont know how to work with it... it creates file with .o extension but i m not able to create .exe from that... i installed mingw for that also .. unsuccessful ...
    tell me the solution for it... i want to generate machine dependent exe from java file...on the web i ve seen that GCC/GCJ is used on linux platform..not cleared properly..
    Again i m writing my question
    Is it possible to convert Java to EXE and run this EXE file without any JRE if yes then how... tell me the procedure to do that...

    Vipul wrote:
    Its software now hardware .... some times u need these things ...anyway do u ve solution for my questionSo what? By creating a native executable you are restricting the program to the OS for which that native executable was made, just like removing the engine from a car restricts driving to downhill only. So like the I said, the principle remains the same, "Why would you want to?"
    I am asking you, truthfully, why do you feel the need to negate the largest advantage of using Java by creating a native executable from it?
    What is your rationale?
    I can pretty much guarantee there is a much better way of achieving your wish without "removing the engine".

  • I've build an executable which include Vision Development VI;s. Can I run this exe on another machine wich does not have Vision software without installing some license.

    I seem to get an Vision License not active error  on the the machine I'm trying to run it on.
    So again. I have two machines. Both have LabView (8.5) One has the Vision Development Software with License/activated.
    The second does not. But I would like to build an exe on the first and run it on the second.
    Is this possible with requiring a second license?
    Thanks

    you need a vision runtime license, they run about 300 USD each  (I am pretty sure the vision kits don't come with any runtime licenses... which seems silly, but eh, it happens)

  • How to pop up another VI front panel and run this in the main VI?

    Hi all,
    I want to create a VI, which contain several buttons: like "RUN ANALYSIS 1" and "RUN ANALYSIS 2".
    When I click one of them, another front panel of VI jump out and run automatically. When I click on "Finish" button on this VI (the one jump out), this front panel close.
    How to complete it?
    Thanks,

    Hi Osso,
    The ability to click on other VIs is also controlled by the Window Appearance. If you follow Dennis' instructions above, but this time change the Window Behavior to modal.  You can find more information about the different selections in the LabVIEW Help: Customize Window Appearance Dialog Box.
    Regards,
    Elizabeth K. 
    National Instruments | Applications Engineer | www.ni.com/support 

  • Can you please complie and run this program...

    please run this program and tell me why the maths are not working
    Thanks in advance:
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class calculator2 extends Applet implements ActionListener {
    int total;
    Label label1, label2,label3,label4, label5, label6;
    TextField text1, text2,text3, text4, text5, text6;
    Button clicker1;
    public void init() {
         setLayout(new BorderLayout());
         Panel pan=new Panel();
         label1 = new Label ("Input Rent");
         label2 = new Label ("Input Bills");
         label3 = new Label ("Input mobile bills");
         label4 = new Label ("Input food bills");
         text1 = new TextField (5);
         text2 = new TextField (5);
         text3 = new TextField (5);
         text4 = new TextField (5);
         label5 = new Label ("input income");
         text5 = new TextField (5);
         label6 = new Label ("how much to save each month");
         text6 = new TextField (5);
         clicker1 = new Button("Calculate");
         pan.add(label1);
         pan.add(text1);
         pan.add(label2);
         pan.add(text2);
         pan.add(label3);
         pan.add(text3);
         pan.add(label4);
         pan.add(text4);
         pan.add(label5);
         pan.add(text5);
         pan.add(label6);
         pan.add(text6);
         pan.add(clicker1);
         add(pan);
         setVisible(true);
         clicker1.addActionListener(this);
         } // end init
         public void actionPerformed (ActionEvent e) {
         total=Integer.parseInt(text5.getText()) -Integer.parseInt(text1.getText()) Integer.parseInt(text2.getText()) Integer.parseInt(text3.getText()) +
         Integer.parseInt(text4.getText()) +Integer.parseInt(text5.getText());
         text6.setText(""+total);
         // end actionPerformed
    }// end classs
    thanxs Anthony

    Try this:
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class budget extends Applet implements ActionListener {
    int total;
    Label label1, label2,label3,label4, label5, label6;
    TextField text1, text2,text3, text4, text5, text6;
    Button clicker1;
    int income,rent,bills,mobile,food,save;
    public void init() {
    setLayout(new BorderLayout());
    Panel pan=new Panel();
    label1 = new Label ("Input Rent");
    label2 = new Label ("Input Bills");
    label3 = new Label ("Input mobile bills");
    label4 = new Label ("Input food bills");
    text1 = new TextField (5);
    text2 = new TextField (5);
    text3 = new TextField (5);
    text4 = new TextField (5);
    label5 = new Label ("input income");
    text5 = new TextField (5);
    label6 = new Label ("how much to save each month");
    text6 = new TextField (5);
    clicker1 = new Button("Calculate");
    pan.add(label1);
    pan.add(text1);
    pan.add(label2);
    pan.add(text2);
    pan.add(label3);
    pan.add(text3);
    pan.add(label4);
    pan.add(text4);
    pan.add(label5);
    pan.add(text5);
    pan.add(label6);
    pan.add(text6);
    pan.add(clicker1);
    add(pan);
    setVisible(true);
    clicker1.addActionListener(this);
    } // end init
    public void actionPerformed (ActionEvent e) {
    income = Integer.parseInt(text5.getText());
    rent = Integer.parseInt(text1.getText());
    bills = Integer.parseInt(text2.getText());
    mobile = Integer.parseInt(text3.getText());
    food = Integer.parseInt(text4.getText());
    save = Integer.parseInt(text6.getText());
    total = (income) - (rent + bills + mobile + food + save);
    text6.setText(""+total);
    // end actionPerformed
    }kent

  • CFMX8 64 bit and SUSE SLES 10.2 64 bit glibc 2.4.31 any successfull install/production usage?

    Greetings
    CFMX expected version 8.01 64 bit.
    OS: SUSE SLES 10.2 64 bit with glibc 2.4.31-*
    Expected deployment: war under Application Server Container
    , JDK 1.6.x
    Previous Deployment CFMX 7.02 32 bit, war deployment, RHEL 3,
    JDK 1.4.x
    We are planning to migrate/upgrade to the CFMX8 64 bit
    version but I have been reading that it requires glibc-2.5.25
    RedHat 5 is not an option, we have SLES 10.2 64 bit OS which
    has a supported version of glibc-2.4.31-*
    I have read the following links on the web:
    http://rachaelandtom.info/content/coldfusion-801-updater-64bit-linux-gotcha
    http://www.talkingtree.com/blog/index.cfm/2008/5/5/ColdFusion-801-64bit-and-Supported-Linu x-Distros
    http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:56889
    Adding OpenSUSE RPMS's for glibc-2.5.25+ is not an option due
    to other dependencies on the server configuration and what
    potential problems that might cause.
    Any options there besides separate 32 bit install under SLES
    10.2 32 bit?
    Any idea what features of the CFMX8 will cause "floating
    point exception" as noted on above links.
    Why particular glibc-2.5.25+ dependency on 64 bit OS for
    CFMX8 where a latest major distribution of SUSE, SLES 10 is at
    glibc 2.4.31.
    By the way I did install as war (CFMX8 Dev. Edition) on SLES
    10.2 and got to the CFMX admin interface, so this is not the part I
    am asking about.
    Thanks for any feedback on this issue.

    Actually you don't need an EFI64 ROM to support 8 GBs of RAM. That is determined by the bus size and the memory controller. The ROM only determines the maximum amount of RAM that the OS can address. None of the Macs currently in production can support even the maximum supported by the 32-bit kernel. None have a wide enough memory bus. Of course newer models may support larger amounts of RAM when they are released, but for now there's not much need for using the 64-bit kernel except if you are developing 64-bit software and need to test its compatibility with the 64-bit ROM.

  • 64 Bit Installer says it's made for 32 bit and tells me to install 64 bit

    I used PC Mover to clone my previous XP laptop so the version of iTunes wasn't really made for the 64-bit OS of my new laptop and hasn't worked since. I try every couple of months to fix the problem before giving up out of pure exhaustion! I download the new 10.1 for 64 bit operating systems and during install it tells me that this installer is for 32 bit systems and I need to install the 64 bit installer!!! Nothing works!!! Does anyone have a clue how to make iTunes work again or where I can get a 64 bit installer that my computer will recognize as a 64 bit installer???

    I download the new 10.1 for 64 bit operating systems and during install it tells me that this installer is for 32 bit systems and I need to install the 64 bit installer!!!
    Yeah, it's actually the 32-bit version that PC Mover has wedged into the new 64-bit PC that is returning that 32-bit message. (When you try to install the later version, the installer tries to remove the previous version which suddenly realises it is on a 64-bit system, and everything turns to custard.)
    In the best of all possible worlds, I'd prefer to remove the 32-bit iTunes by undoing the migrstion (using the PC Mover undo function). Unfortunately, my understanding is that you can only completely undo the entire migration.
    If you aren't keen on that, there's an alternate strategy described in the following post:
    http://discussions.apple.com/thread.jspa?messageID=12712585&#12712585
    You may not need to search for a copy of Windows Installer CleanUp. In his/her reply to that post cmcmd reports:
    Fantastic! I contacted PC Mover and they sent me a link to the Microsoft Clean Up utility. I deleted all of the Apple files, installed teh 64 bit iTunes and all appears to be working.
    So you could perhaps try your luck with PC Mover too. Fingers crossed the support person you get through to will also have the link to the CleanUp download.

  • MySQL 5.0.77 (64 bit) and unixODBC 2.2.11 (32-bit) on Linux 64-bit

    Hello All,
    Is MySQL 5.0.77 (64 bit) compatible with unixODBC 2.2 (32-bit) on Linux 64-bit server ?
    I am facing problem of inconsistent connection to MySQL through the unixODBC driver manager.
    I am also using mysql-connector-odbc 3.51.27 which is also 32-bit....
    Any help is appreciated...
    Bhushan

    <div class="DownloadDate">"Release date : 3 Jul 09<div class="DownloadShortDesc">This?download is a?driver providing Microsoft? Windows?7, Windows Vista? and Windows XP support for Creative Sound Blaster? Audigy? series of audio devices. For more details, read the rest of this web release note."?
    Right where do I start...... I got the latest drivers installed, "What You Hear" was working for about oh four recordings then stopped and back to choppy recorded sound, I went through alll options and nada. So I downloaded Audacity to see if this was a problem with Wavelab and re-tried. Well same thing choppy sound and even rebooting did not help. So I will be taking EVERYTHING!!!!!! CREATIVE off my machine, if these idiots cannot be bothered to release drivers that work then I'm going elsewhere. My music creating will have to be put on hold, my 22m will still have to sit in it's box.
    Creative you are all a bunch of ?$"?%$%" idiots period. You have ALWAYS (till now in my case anyway) had good drivers. Even though Windows 7 has been in RC for ages you (absolutely missed that boat, hell you didn't even get up to try to catch it) cannot be bothered to write drivers that work and your idiotic half cooked attempts at customer service to give your bread and butter (that's right your customers who keep you in business) solid drivers are an absolute joke. YOU CAN KISS MY SHINY METAL HINEY!!!!! (thanks Bender lol). I am going to my onboard drivers. Thanks Creative (the name "creative" is kind of contradiction in itself, you should look up the meaning of the word lol). Oh and I will be advising EVERYONe who thinks of upgrading to Windows7 to avoid Creative hardware.
    :angry::angry::angry::angry::angry::angry::angry:: angry::angry::angry::angry::angry::angry::angry::a ngry::angry:
    Question for forum users: what is the best way to get rid of every bit of drivers?

  • Computers came with Windows 7 64-bit and we need Windows 7 32-bit

    Our company purchased 5 IdeaCentre K300 computers from a big blue retail store. The computers came with W7 64-bit Home Premium preinstalled. We also purchased 5 Windows Anytime Upgrade PIN's  allowing us to upgrade to W7 Professional so we can add these computers to our domain. We have several products that launch from domain share and won't work with the 64-bit OS and running in XP mode just flat out doesn't work (for those apps). The person who purchased the computers was told the computers contain both 64-bit and 32-bit W7 Home Premium and we can switch to the 32-bit version by using the OneKey Recovery utility then run the Windows Anytime Upgrade. I booted one of the computer several time and pressed the F2 key when the Lenovo logo appeared and only have one option, the 64-bit version.
    How do I obtain the 32-bit version of Windows 7 Home Premium for these computer?
    Thanks in advance,
    Solved!
    Go to Solution.

    it's not possible to switch windows 32 <> 64 bit by performing clean windows installation ( with one key recover )
    you need to install clean windows installation. download legal windows iso from the link below, then make a clean installation for your computer, for activation, use online activation or call microsoft.
    http://forum.notebookreview.com/windows-os-software/428068-legal-windows-7-download-links-just-like-...
    ps: make sure you download 32 windows. and burn recovery discs before clean windows installation, just in case.
    you can download drivers from the link below:
    http://consumersupport.lenovo.com/uk/en/DriversDownloads/drivers_list.aspx?CategoryID=856301
    edit:
    windows anytime upgrade pin's allowing us to upgrade to w7 professional 
    you may select windows 7 32 bit while upgrading windows. so you won't need to download/install windows 7 from legal iso. 

  • Hyperion Essbase on 64-bit and Other application are on 32-bit

    Hi
    I am going to Install Hyperion Essbase on AIX (Version: 6.1) on 64-bit and Other Hyperion application like EAS,EIS, calc manager, Foundation services, Financial report and planning on windows 2008 SP2 with 32-Bit.
    I future any connectivity issue will occur with two different bit type or there will no issue.
    Please guide me here, above combination is fine or not.
    Thanks
    Dharm

    Hi
    read support matrix :- http://www.oracle.com/technetwork/middleware/bi-foundation/hyperion-supported-platforms-085957.html
    regards
    alex

  • How to develop Web Dynpro for Java and run it locally

    I want to learn Web Dynpro for Java but still struggling with the running it locally in my PC. What software do I need to install in my own PC in order to do that? I have NWDS in place and I can write the code and compile it already. Thanks!

    Hi Anthony,
    You need to have SAP Web Application server  (SAP WAS) to run all the webdynpro applications. WAS can be installed either on your local system or on a server which can act as a central server.
    You can download WAS from SDN, which is a trial version. Check this link.
    http://www.sdn.sap.com/irj/scn/nw-downloads
    For checking the minimul system requirments for installing WAS please check the PAM (Product Availability Matrix).
    I hope this solves you issue. Please revert back in case you need any further information on this.
    Thanks and Regards
    Pravesh

  • We have had a request to purchase Livecycle ES4. I am trying to find out how much this will cost and get a list of requirements needed to install and run this product,

    Looking to find out what the infrastructure requirements are for this product and how it needs to be administered by our IT shop. Thanks

    Complain to the Attorney General about what? There is nothing in your story worth any such complaint. They will tell you the same.
    First you have payment difficulty so credit and the Edge program are not available to you. You have to be credit worthy to get any upgrade, unless you can pay full price for all those new devices.
    Can you?
    You are trying to get new contract plans, but since you are having paying on time and in full issues you will not get extended credit from any carrier.
    What I would do is go and port out to Boost or Virgin Mobile where you pay a reduced cost for each device and get unlimited everything for $40 to $50 a month, it is pre pay so if you don't pay you get cut off.
    Verizon although with the best coverage is also the highest priced.
    Good Luck

  • Simply accounting  want to get new macbook pro and run this software anyone use it with success?, simply accounting  want to get new macbook pro and run this software anyone use it with success?

    If anyone is useing this product I would love to hear from you. I want to change over to macbook pro for our small company but we are useing simply accounting on our current windows based pc

    I don't believe this program runs on a Mac. if it does it would be running using a Windows emulation program like Parallels or VMWare or running in Windows directly through a Boot camp partition. In any case it's running in Windows so you have all the experience you need.

  • Need to run macbook pro in 32 bit mode to run and external modem how do i change from 64 bit to 32 bit

    I have a macbook pro which i presume runs in a 64 bit mode. living in a country without broadband i need to use a 32 bit modem, can i change the system to run this modem at 32 bit as it wont load at 64?

    Reboot holding 3 and 2, see if your modem works.
    Rebooting again sets it back to 64 bit.
    If 32 bit works then your fine, for now, but eventually your going to have to go 64 bit.

  • How to Deploy Forms on web and Run report in Web browser

    Hi all,
    I am wondering how to run forms from the web and run report on web .. can u pl. brief me out and tell any source if i can reach and study...

    You have to install Oracle Forms server and Oracle reports server. Download the documentation about these products from Forms
    OTN site.

Maybe you are looking for