How to install your created programme (Ex. Caculator Machine)  to windows

Hi Everyone!
I have design and implement a full functioning calculator machine. However, I have been asked to make it downloadable for window operating system or what can I do so that people can download and install it to their PC running on windows operating system.
Please somebody help me, if you know.
Thankx in advance!
Joyce

The program is already written...Wow, that was fast! :)
In that case, search for how to create executable jar files. You can distribute your whole program in a single .jar, which can be double clicked to run it. If you want, you can look into some of the tools that convert .jars to .exes or creating a windows .bat file to launch the program.

Similar Messages

  • How to Install OBIEE and BIP on a machine with Windows XP ?

    Hi,
    I am very new to OBIEE and want to learn it by myself.
    Can I install OBIEE and BI Publisher on my home PC with Windows XP ? Can I install client and server on the same PC?
    If no, what are the other options ?
    Please help!!
    Thanks!
    Yogini

    Thanks for the link, but I am referring the same to install OBIEE.
    The pre-requisites section says :
    Client operating systems:
    - Microsoft Windows 2000 Professional with Service Pack 3 or later
    - Microsoft Windows 2003 Professional with Service Pack 1 or later (32-bit only)
    - Microsoft Windows XP Professional with Service Pack 1 or later
    Server operating systems:
    - For Oracle BI Server: Microsoft Windows 2000 Service Pack 4/2003 Server
    Thats why I wonder if I can install client and server on the same machine with Windows XP ?
    Please do let me know.
    Regards,
    Yogini

  • How to install forms 6i on the same machine oracle8i installed

    I have oracle8.1.6 release 2 installed on microsocft windows 98. How do I installed forms 6i on the same machine. when I installed forms6i, it has overwritten the resgistry settings and I cannot run database any more. Please give me some ideas how to install all these on the same machine on windows 98 , operating system DOS.

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Simon Jennings ([email protected]):
    You need to use seperate Oracle homes.<HR></BLOCKQUOTE>
    You have to install Forms6i on a different Oracle_Home not Default_Home, which I believe is where you installed Oracle8i.

  • How to install "Turbo C" programme on mac...

    How to install "Turbo C" programme on mac... Need an urgent reply..

    I suppose I'll ask the question that no one else has yet...why do you want to install Turbo C on your Mac?  More specifically, what is the ultimate task you are trying to achieve?
    Turbo C hasn't been in development since the 1990s; it's successor, Turbo C++, is similarly out of development; it was a 16-bit Windows program, so it never ran on any Apple OS...let alone OS X.
    Embarcadaro, the company which bought the "Turbo" line from Borland, has a modern succesor to those compilers, C++Builder (although it isn't free).  But Turbo C is a museum piece only notable for its historical value...unless you're writing programs for 20 year old computers.

  • How to Install Hyper-V on a Virtual Machine in Hyper-V on windows 2erver 2012 R2 ?

    Hi ,
    anybody know  How to Install Hyper-V on a Virtual Machine in Hyper-V on windows 2erver 2012 R2 ?
    I want to create lab but i couldn't  I follow this article but the new VM is off
    http://blogs.technet.com/b/gbanin/archive/2013/06/26/how-to-install-hyper-v-on-a-virtual-machine-in-hyper-v.aspx
    one of hyper-v component is not running
    thanks

    Previously it has been blocked to install Windows Server in the VM and then add the Hyper-V Role.
    However, it has always been possible to install Hyper-V Server inside a VM. (the free Hyper-V Server SKU)
    The Hyper-V Server VM is fully manageable, but it cannot start any VMs.
    Brian Ehlert
    http://ITProctology.blogspot.com
    Learn. Apply. Repeat.
    Disclaimer: Attempting change is of your own free will.

  • How to install and configure smtp on iis 7 on windows 7

    how to install and configure smtp on iis 7 on windows 7?
    Thanks!

    Here is an article that you may find useful http://eriglen.blogspot.com/2013/01/step-by-step-configuring-automatic-storage-management-on-standalone-server-with-oracle-enterprise-linux-and-oracle-11g-R2-using-external-storage-managed-by-openfiler.html

  • Create Hyper-V Virtual Machines with Windows PowerShell searching on hostname

    Dear,
    I’m a starter with PowerShell scripting an I’m looking for a script to create Hyper-V Virtual Machines with Windows PowerShell. The idea behind the script is that when I run the script its first searching for the hostname. I’m migrating 24 locations and each
    location have a different hostname like xxx-SRV001. The script needs to use the first 3 signs from the hostname in this case “xxx” and create 2 VM's with below info:
    Virtual Machine 1 2048MB
    Virtual Machine 2 4096MB
    Location D:\VM\
    I can create VM's with Powershell into Hyper-V so only a script to first searching for the first 3 characters of the hostname is enough.
    Example:
    It's the intention that when the script runs it's looking for the hostname. As example we have hostname 000-SRV001
    If the script see the first 3 characters of the hostname, in this case 000 he need to create 2 VMs with name xxx-SRV002 and xxx-SRV004
    I think it must be something with 
    $hostname = "Get-WmiObject -computername $Machine Win32_Computersystem"
    But then when i'm asking for $hostname he must give me back the hostname and if the hostname is 1 of the 24 locations then he need to create 2 vm's in Hyper-V with above info.
    Can you help me or do you have a script for this? 

    Juste use :
    $vram = 1GB*$vRam
    You not need the "
    Do you have any error with the creation of the VM?
    # Variables
    $VMName = Import-Csv "C:\HyperV\input.csv"
    $VHD = 40GB
    $VMLOC = "C:\HyperV"
    $vSwitch = "External"
    $ISO = "C:\ISO\WinServer2012R2.iso"
    $LocationCode = $env:COMPUTERNAME.Split("-")[0]
    # Create VM Folder
    MD $VMLOC -ErrorAction SilentlyContinue
    Foreach ($VM in $VMNames)
    $Name = $VM.name
    [int64]$vRam = $vm.vram
    $vram = 1GB*$vRam
    $VMName = $LocationCode+$Name
    # Create Virtual Machine
    New-VM -Name $VMName -Path $VMLOC -MemoryStartupBytes $vRam -NewVHDPath "$VMLOC\$VMName\Virtual Harddisks\$VMName.vhdx" -NewVHDSizeBytes $VHD -SwitchName $vSwitch
    # Configure Virtual Machines
    Set-VMDvdDrive -VMName $VMName -Path $ISO
    Start-VM $VMName
    # Configure Virtual Machines
    Set-VMDvdDrive -VMName $VMName -Path $ISO
    Start-VM $VMName
    Error message 
    New-VM : '003' failed to modify device 'Memory'. (Virtual machine ID 8F5F32D7-F1A0-4A68-8B01-CA6661869A1E)
    Invalid startup memory amount assigned for '003'. The minimum amount of memory you can assign to this virtual machine is '32' MB. (Virtual machine ID 8F5F32D7-F1A0-4A68-8B01-CA6661869A1E)
    A parameter that is not valid was passed to the operation.
    At line:20 char:5
    + New-VM -Name $VMName -Path $VMLOC -MemoryStartupBytes $vRam -NewVHDPath "$VM ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (Microsoft.HyperV.PowerShell.VMTask:VMTask) [New-VM], VirtualizationOperationFailedException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.NewVMCommand
    Set-VMDvdDrive : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:23 char:5
    + Set-VMDvdDrive -VMName $VMName -Path $ISO
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Set-VMDvdDrive], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.SetVMDvdDriveCommand
    Start-VM : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:24 char:5
    + Start-VM $VMName
    + ~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Start-VM], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.StartVMCommand
    Set-VMDvdDrive : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:27 char:5
    + Set-VMDvdDrive -VMName $VMName -Path $ISO
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Set-VMDvdDrive], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.SetVMDvdDriveCommand
    Start-VM : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:28 char:5
    + Start-VM $VMName
    + ~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Start-VM], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.StartVMCommand
    New-VM : '003' failed to modify device 'Memory'. (Virtual machine ID C0FC835E-36D4-462E-BD21-69A75A808E2F)
    Invalid startup memory amount assigned for '003'. The minimum amount of memory you can assign to this virtual machine is '32' MB. (Virtual machine ID C0FC835E-36D4-462E-BD21-69A75A808E2F)
    A parameter that is not valid was passed to the operation.
    At line:20 char:5
    + New-VM -Name $VMName -Path $VMLOC -MemoryStartupBytes $vRam -NewVHDPath "$VM ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (Microsoft.HyperV.PowerShell.VMTask:VMTask) [New-VM], VirtualizationOperationFailedException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.NewVMCommand
    Set-VMDvdDrive : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:23 char:5
    + Set-VMDvdDrive -VMName $VMName -Path $ISO
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Set-VMDvdDrive], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.SetVMDvdDriveCommand
    Start-VM : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:24 char:5
    + Start-VM $VMName
    + ~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Start-VM], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.StartVMCommand
    Set-VMDvdDrive : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:27 char:5
    + Set-VMDvdDrive -VMName $VMName -Path $ISO
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Set-VMDvdDrive], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.SetVMDvdDriveCommand
    Start-VM : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:28 char:5
    + Start-VM $VMName
    + ~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Start-VM], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.StartVMCommand

  • How to install the Remote Desktop Services role on a Windows 2012 R2 Server

    Hello,
    I am a bit confused on how to install the RDP role on a 2012 R2 server. I have a two server domain and would like to make the second member server an RDP server to host applications (Word, Excel, a medical software, etc.) where users from their windows
    7 desktop will use the Remote Desktop Connection to connect to the server, create a session and do their work. When installing the role, I am prompted with two options:
    1- Role-based or feature based installation
    2- Remote Desktop services installation
    I see the RDP install option in both cases.
    1- Which one do I use?
    2- What role services do I install? (Connection broker, Gateway, Licensing, Session Host, Virtualization host and Web access). I think I need the first four only.
    3- When installing software after RDP, I use the Change user /install and Change user /execute commands. What happens to the software that is already installed? Can remote
    users use those?
    Any help will be very much appreciated.
    Thank You,
    Victor.

    TP,
    Thank you for your response. I added the RD Licensing thru the Role-based option.
    Also opened the local group policy thru gpedit.msc and added the server name and the licensing mode type to Computer Configuration -> Administrative Templates -> Windows Components -> Remote Desktop Services -> Remote Desktop Session
    Host -> Licensing
    Use the specified RD license servers = NameOfMyServer
    Set the Remote Desktop licensing mode = TypeOfMyLicense (Per User in my case)
    Thank you again,
    Victor

  • How to install all the drivers for the MacBook with Windows 7 or 8 without the disk from OSX Lion? Where can I find the drivers?

    Guys, a have one big problem..My customer brought me a macbook with windows 7 installed to do a format and reinstallation, but she is no longer the OSX Lion, and do not know how to install the sound drivers, "touchpad", among other drivers, how to solve this? Where can I find the drivers? The MacBook is now with Windows 8 installed.

    Sorry my bad english..
    See is meant. The MacBook has already come for me with Windows 7 installed, checked that it does not have another partition with OSX Lion installed, do not know how the person who did the maintenance before I managed to remove the partition with the Lion, so I can not create a disk or access boot camp because there is no partition Lion and don't own the DVDs of OSX Lion, you understand me?
    There is a boot camp Windows executable? Where do I find, since I poked around and found nothing on ...
    The sound driver is installed, but not working ... and the rest are missing there also, the trackpad also does not work correctly, the right button does not work ... My experience with mac is low, it may be that you do not know how it works correctly the trackpad

  • How to install Flash Player plugin for FF3 from a Windows user account?

    Hello,
    How to install the Flash Player plugin for FireFox3 from a MS Windows (XP/Vista) standard user account (non admin account)?
    Launchuing "install_flash_player.exe" I get the message: You need admin privilege to install this software.
    Thanks.

    anandsrivastava.2612 wrote:
    i want plugin for adobe flash playe in my wesite
    I don't understand what you want - your visitors to download the plugin from your website?  Please explain!

  • How to install HR  Global patch For R12.1.1 windows server 2003?????

    Dear Friends
    can any one help me to install patch HR Global patch For R12.1.1 windows server 2003,
    i have R12.1.1 Vision but the payroll not working so i need help,i am not DBA,please
    any one can help me to tell me step by step ,or if any one have good document to share it for me.
    Thanks
    Omar

    can any one help me to install patch HR Global patch For R12.1.1 windows server 2003,
    i have R12.1.1 Vision but the payroll not working so i need help,i am not DBA,please
    any one can help me to tell me step by step ,or if any one have good document to share it for me.Please see these MOS docs.
    Note: 145837.1 - Latest HRMS (HR Global) Legislative Data Patch Available
    Note: 307195.1 - Example - Running DataInstall and Applying hrglobal.drv
    Note: 734910.1 - Can You Run Hrms Datainstall and Apply Hrglobal.Drv Once for Several Legislative Patches
    Note: 300097.1 - Oracle HRMS HRGLOBAL Basics
    Note: 140511.1 - How to Install HRMS Legislative Data Using Data Installer and hrglobal.drv
    Note: 188698.1 - HRMS: On What Server Do I Run The Datainstall Utility And Hrglobal.Drv
    Apply the hrglobal.drv patch using adpatch -- https://forums.oracle.com/forums/search.jspa?threadID=&q=how+to+use+apply+patch&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • How to install Oracle 9i (9.2.0.2) in Windows Server 2003 x64 - Intel Xeon

    I have tried to install Oracle 9i (9.2.0.2) in Windows Server 2003 x64 Enterprise Edition with Intel Xeon (EM64T) processors.
    When I run setup.exe I get an error: "The image file C:\Documents and settings\administrator.SERVERNAME\my documents\92021 win64_disk1\setup.exe is valid, but is for a machine type other than the current machine".
    I have to install Oracle 9i in that server but I can't run the installation. Is there a way to solve this problem, is there a patch that can solve this? Anyone know something about this problem?
    Thanks a lot!!!
    I'm desperated!!

    Hi,
    reply to my own question:
    In the docs provided with the downloads for Oracle Database Server 9i x64, I found that this version requires either
    - Windows Server 2003 Datacenter Edition for 64-Bit Itanium 2 Systems
    or
    - Windows Server 2003 Enterprise Edition for 64-Bit Itanium 2 Systems
    So I guess, the only X64 platform being supported under Windows Server 2003 (both Datacenter / Enterprise Editions) is Itanium CPUs ...
    ... though this is not (!!!) clearly stated in the download link (other/newer versions are listed more precisely - I guess it's a matter of an old link: no Intel Xeon / AMD Opterons were available (???) when Oracle 9i database server was published).
    So I'll give it a try with 10g database server ;-)))
    Regards,
    Thomas Heß

  • How to install your applications on your i pod touch

    I have the applications downloaded to my computer and my i pod is the version 3.1 and the apps are compatible with the i pod but when i am in my i tunes it dose not let me add new apps or move the ones i had. So i deleted all the apps manually from my i pod and now i don't have anything on there and i cant load in anything else.

    I'm having the same problem. I purchased 3 game applications from iTune Store but unfortunately they only appear on my iTunes and can not be synchronised to my iPod Touch. I have been trying so many times to sync those applications into my iPod but it keeps failing. I authorised and desauthorised my computer but I keep failing to get the applications installed into my iPod Touch. I'm so totally unhappy costumers of apple. Can anyone please help me solving this problem. I would be very happy to get the help directly from some expert people in Apple Costumers service. Thank You

  • How to install your T-Hub 2

    Watch this two-part video on the set-up process for the T-Hub 2, a combination home phone and tablet that will help keep the family connected, organised and entertained.
    Part 1
    Part 2

    I don't understand it
    I do not understand because of the quality of the sound, and I am already exhausted. Would it be better for me, to go to a Telstra shop? Mine is at Eastlands/Rosny Park. How long are they open on a Saturday?

  • How to install 'SOABPEL' schema on Release 10g R2 on Windows environment

    Hi,
    I have just completed installation of Oracle 10g R2 (10.2.0.3) database on windows vista environment. the database has been successfully installed and i am able to connect it from the sql plus. BUT my purpose to install database is to do Advanced installation of SOA. For that i need to have few schemas like 'SOABPEL' already created in the database. Following is the problem i am facing while installing the schema in the database -
    The schema files resides in soa_windows_x86_101310_disk1\install\soa_schemas\irca folder. As per the installation pdf, i need to run the irca.sh shell script to install the 'SOABPEL', 'SOAESB' and 'SOAOWSM' schemas. but i am not sure how do i run this shell script from the windows environment? I don't think i can use unix prompt for this? Please guide.
    Thanks

    Anuj, when i try to run the batch file, i am getting following error. i guess this is oracle_home problem. i checked it in the environment variables, and it was blank. so i have set it up now and pointing to ojdbc14.jar file. but i am still getting the same error. do i need restart my pc? or do you have some other way to track it down?
    The error is-
    ERROR: Cannot find library - \jdbc\lib\ojdbc14.jar
    Please verify that the ORACLE_HOME is set correctly.
    Appreciate your help.
    Thanks.
    Edited by: user12059957 on Feb 2, 2011 11:59 AM

Maybe you are looking for