I am working on a windows based program thru Chrome on my Mac. It asked me to cont/alt/delete - how do I get the Mac to respond?

I am working on a windows based program thru chrome on my mac - how do I control/alt/delete on the mac?

Control key - Alt (also known as the Option key) and Delete key. However remember Chrome is not an Apple product so if that doesn't work you also might want to seek help on a Google forum that supports Chrome.

Similar Messages

  • I installed firefox 10 - it was offered on startup. I absolutely does not work with a cloud based program I use (corecon) and I want to GO BACK TO FIREFOX 9. how do i do this?

    firefox 10 ABSOLUTELY does not work with a cloud based program, Corecon. I want to UNINSTALL firefox 10 and GO BACK TO FIREFOX 9 . How do I do this? This is a subscription service, you may not be able to try it. v9 works fine.

    http://support.mozilla.com/en-US/kb/Installing+a+previous+version+of+Firefox
    http://www.mozilla.com/en-US/firefox/

  • I downloaded google translate and another app that allows you to speak into the microphone and it translates what you said into another language. The microphone on both programs says "speak now" and after I speak it doent do anything. How do I get the mic

    I downloaded google translate and another app that allows you to speak in the microphone and it translates what you said into another language. Both apps say "speak now" into the microphone but when I speak it doesnt do anything. How do I get the microphone to work on these applications?

    What mic/iPod are you using?
    Does the mic work for other apps?

  • How do I get the methods to respond to my main program?

    I have created 3 classes,where class Kunde is my base class and class PudsPrAreal and PudsPrTid are derived classes from class Kunde.
    All my classes went through my compiler without error, but my main program is not able to read the methods from my classes.How do I fix that??
    my base class:
    navn = nyNavn;
    adresse = nyAdresse;
    rabat = nyRabat;
    public void readInput()
    System.out.println("Indtast kundens navn:");
    navn = SavitchIn.readLine();
    System.out.println("Indtast kundens adresse:");
    adresse = SavitchIn.readLine();
    System.out.println("Modtager " + navn + " en form for rabat?");
    System.out.println("(j/n):");
    char answer = SavitchIn.readNonwhiteChar();
    if (answer == 'j'||answer == 'J')
    System.out.println("Indtast den procentsats som " + navn + " modtager:");
    rabat = SavitchIn.readLineDouble();
    public void writeOutput()
    System.out.println("Navn: " + navn);
    System.out.println("Adresse: " + adresse);
    if (rabat > 0)
    System.out.println("Rabat: " + rabat);
    public Kunde()
    navn = "no record";
    adresse = "no record";
    rabat = 0;
    public String getNavn()
    return navn;
    public String getAdresse()
    return adresse;
    public double getRabat()
    return rabat;
    derived class # 1:
    public class PudsPrAreal extends Kunde
    private double areal; //i kvadratmeter
    private String kunde;
    private String pudsningsdato;
    private double kvadratmeterPris;
    private double pris;
    public PudsPrAreal()
    super();
    kunde = "no record";
    pudsningsdato = "no record";
    kvadratmeterPris = 0;
    pris = 0;
    areal = 0;
    public PudsPrAreal(String initialKunde, String initialPudsningsdato, double initialAreal,
    String initialNavn, String initialAdresse, double initialRabat)
    super(initialNavn, initialAdresse, initialRabat);
    set(initialKunde, initialPudsningsdato, initialAreal);
    public void set(String nyKunde, String nyPudsningsdato, double nyAreal)
    kunde = nyKunde;
    pudsningsdato = nyPudsningsdato;
    areal = nyAreal;
    public void readInputPrAreal()
    System.out.println("Indtast datoen hvor vinduespudsningen er blevet foretaget:");
    pudsningsdato = SavitchIn.readLine();
    System.out.println("Hvor mange kvadratmeter skal der afregnes for:");
    areal = SavitchIn.readLineDouble();
    public double pris(double areal)
    double pris;
    double kvadratmeterPris;
    if (areal > 100)
    kvadratmeterPris = 7.0;
    else if (areal >= 500)
    kvadratmeterPris = 6.5;
    else
    kvadratmeterPris = 6.0;
    double prisEks = areal * kvadratmeterPris; //pris eksclusiv rabat
    pris = prisEks * ((100 - getRabat())/100); //pris inclusiv rabat
    return pris;
    public void writeOutputPrAreal()
    System.out.println("Dato for vinduespudsning: " + pudsningsdato);
    System.out.println("Navn: " + getNavn());
    System.out.println("Adresse: " + getAdresse());
    System.out.println("Prisberegningsgrundlag: pr kvadratmeter");
    System.out.println("Antal kvadratmeter: " + areal);
    System.out.println("Pris pr kvadratmeter: " + kvadratmeterPris + " kr.");
    if (getRabat() > 0)
    System.out.println("Rabat: " + getRabat());
    System.out.println("Pris for vinduespudsningen: " + pris + "kr.");
    else
    System.out.println("Pris for vinduespudsningen: " + pris + "kr.");
    public String getkunde()
    return kunde;
    public String getPudsningsdato()
    return pudsningsdato;
    public double getAreal()
    return areal;
    derived class # 2:
    public class PudsPrTime extends Kunde
    private int minuter; //tid for vinduespudsningen angives i minuter
    private double tid; //tid for vinduespudsningen i timer
    private String kunde;
    private String pudsningsdato;
    private double pris;
    public PudsPrTime(String initialKunde, String initialPudsningsdato, int initialMinuter,
    String initialNavn, String initialAdresse, double initialRabat)
    super(initialNavn, initialAdresse, initialRabat);
    set(initialKunde, initialPudsningsdato, initialMinuter);
    public void set(String nyKunde, String nyPudsningsdato, int nyMinuter)
    kunde = nyKunde;
    pudsningsdato = nyPudsningsdato;
    minuter = nyMinuter;
    public void readInputPrTime()
    System.out.println("Indtast datoen hvor vinduespudsningen er blevet foretaget:");
    pudsningsdato = SavitchIn.readLine();
    System.out.println("Hvor mange minuter skal der afregnes for:");
    minuter = SavitchIn.readLineInt();
    public double pris(int minuter)
    int kvarter;
    int minuterTilOvers;
    double pris;
    kvarter = minuter / 15;
    minuterTilOvers = minuter % 15;
    if (minuterTilOvers > 0)
    kvarter++;
    tid = kvarter * 0.25;
    double prisEks = tid * 375; //pris eksclusiv rabat
    pris = prisEks * ((100 - getRabat())/100);
    return pris;
    public void writeOutputPrTime()
    System.out.println("Dato for vinduespudsning: " + pudsningsdato);
    System.out.println("Navn: " + getNavn());
    System.out.println("Adresse: " + getAdresse());
    System.out.println("Prisberegningsgrundlag: pr time");
    System.out.println("Antal timer: " + tid);
    System.out.println("Pris pr time: 375 kr.");
    System.out.println("Der afregnes pr p�begyndt 15 minuter.");
    if (getRabat() > 0)
    System.out.println("Rabat: " + getRabat());
    System.out.println("Pris for vinduespudsningen: " + pris + "kr.");
    else
    System.out.println("Pris for vinduespudsningen: " + pris + "kr.");
    public String getKunde()
    return kunde;
    public String getPudsningsdato()
    return pudsningsdato;
    public int getMinuter()
    return minuter;
    my main program:
    public class Glasklart
    public static void main(String[] args)
    Glasklart kunde = new Glasklart();
    System.out.println("Indtast datoen for idag:");
    String dato = SavitchIn.readLine();
    kunde.readInput();
    System.out.println("Hvad er prisberegningsgrundlaget?");
    System.out.println("Skriv 'k' for pr kvadratmeter eller 't' for pr time:");
    char svar = SavitchIn.readNonwhiteChar();
    if (svar == 'k'||svar == 'K')
    kunde.readInputPrAreal();
    System.out.println("Afregningsdato: " + dato);
    kunde.writeOutputPrAreal();
    else if (svar == 't'||svar == 'T')
    kunde.readInputPrTime();
    System.out.println("Afregningsdato: " + dato);
    kunde.writeOutputPrTime();
    else
    System.out.println("Forkert svar. Pr�v igen.");
    System.out.println("Skriv 'k' for pr kvadratmeter eller 't' for pr time:");
    svar = SavitchIn.readNonwhiteChar();
    error message for my main program:
    "Glasklart.java": Error #: 300 : method readInput() not found in class Glasklart at line 10, column 9
    "Glasklart.java": Error #: 300 : method readInputPrAreal() not found in class Glasklart at line 16, column 13
    "Glasklart.java": Error #: 300 : method writeOutputPrAreal() not found in class Glasklart at line 18, column 13
    "Glasklart.java": Error #: 300 : method readInputPrTime() not found in class Glasklart at line 22, column 13
    "Glasklart.java": Error #: 300 : method writeOutputPrTime() not found in class Glasklart at line 24, column 13

    The problem is that your main class isn't even trying to read the methods in your other classes. In your main() method in Glasklart.java, you do this:
    Glasklart kunde = new Glasklart();
    System.out.println("Indtast datoen for idag:");
    String dato = SavitchIn.readLine();
    kunde.readInput();But you didn't define readInput() in Glasklart, you defined it in your "base class" which you didn't quote enough of us to know the name for sure, but I presume is called Kunde.java.
    But I also see that you named the variable "kunde". It looks like maybe you're confusing the names of classes with the names of variables that happen to hold objects instantiated from those classes.
    If I define classes:
    public class Dog {
    public class Cat {
    }and later do this:
      Cat dog = new Cat();The methods defined in Dog cannot be invoked from from "dog", because "dog" is really a Cat. Just because you called it "dog", it doesn't necesarily mean it's an instance of Dog.

  • Java 7 to remote in a windows based program

    I am running OS X 10.9.3.  I installed Java 7 yesterday to set up my remote access to a windows based program at my work.  I cannot access all of my work because one program says I need to have Java 1.6.0_31 but I installed Java 7.  I'm not sure if I was given that option to install that Java version on my OS version

    what program used to gain remote access ?

  • How can i run a windows based program on mac book pro

    Can I run a windows based program on mac book pro mountain lion 10.8.4

    You can use bootcamp to install windows natively on the hard drive.  You then choose which OS you wish to use at startup - OS X or Windows.
    You can also install Windows in a virtual machine - Parallels or VMWare Fusion - and run it simultaneously with OS X (a virtual machine is just a PC emulated in software, and you install and run windows in the emulated machine hardware).

  • HT3669 Hi I have a Konica Minolta PagePro 1300W printer. This works with my Windows-based Toshiba laptop but not with my i-Mac. Can someone please advise me how I get the printer to work with my i-Mac? I have installed it but documents don't print. Thanks

    Hi I have a Konica Minolta PagePro 1300W printer. This works with my Windows-based Toshiba laptop but not with my i-Mac. I have the latest (Mountain Lion 10.8.2) OS-X software.
    I have installed the printer using 'System Preferences' on my i-Mac and it appears on the list of available printers but documents that I create just don't print.
    Can someone please advise me how I get the Konica Minolta PagePro 1300W printer to work with my i-Mac?
    Thanks, John Lee

    Looking at the Konica web site for the PagePro 1300W, I saw the following note.
    Please note: This printer is designed to be used in computer operating systems running MS Windows only. Operating systems such as UNIX, Macintosh, or Linux are not supported nor do we have workaround drivers available. Older MS Windows versions, such as Windows 3.1/95/98[pre-SE] and NT 3.51/4.0, are not supported.
    So KM are not going to help you. But the LinuxFoundation does provide a workaround that should allow you to print. Have a look at this web page. You will need to install all three packages as per the instructions from that page.

  • I have Lightroom4 for an iMac.  Will it work with a Windows based laptop?

    I have Lightroom4 for an iMac.  Will it work with a Windows based laptop?

    You need to install the Windows version.  The serial number for the Mac version should work with the Windows version.
    Lightroom - all versions
    Windows
    http://www.adobe.com/support/downloads/product.jsp?product=113&platform=Windows
    Mac
    http://www.adobe.com/support/downloads/product.jsp?product=113&platform=Macintosh

  • Is it possible to use the microphone dictation in windows based program?

    Is it possible to use the microphone dictation in windows based program? I have tried dictating into Pages and copying and pasting, but the Windows based (Allscripts EHR) recognizes only the first attempt to copy and paste. Any future copying results on the first pasted dictation to show up in the Allscripts EHR.

    Hi,
    >>>configuration instead of coding etc
    currenly it is not possible to achive it without any coding
    >>>repeat messages with RSNAST00
    RSNAST00 is not used to repeat messages (idocs) but to send them
    try using standard IDOC in your sd invoice scenario
    if you don't want to do any coding
    Regards,
    michal

  • Is there a way I can run windows based programs?

    Is there a way to run Windows based programs such as Quickbooks Enterprise?

    A simple Google search never came to your mind???
    http://lmgtfy.com/?q=how+to+run+windows+on+mac

  • Windows based program on Ipad2.

    I really want to buy an Ipad2 but need to run a program on something portable for the next 4 months. This program is for windows based PCs. Should i take it that this is NOT possible on the Ipad???

    A Windows based program will not run on the iPad. Only apps available from the App store will run on the iPad.
    There are apps that will allow you to access your computer remotely from the iPad if you wanted to do it that way but you can't run Windows or OSX software for that matter on the iPad. The iPad does not run on a a conventional computer operating system.

  • Trying to make Macs compatible with windows-based programs.

    We have a Mac shop and are trying to set it up to run windows-based programs. I think I'm supposed to use Terminal Services for this but I don't know much about Terminal Server. Could anyone point me in the right direction for setting up our Mac machines to run windows software?

    Windows software cannot run natively on a Mac OS X.
    If you have a Windows server running Terminal Services, then on the Mac side you'll need the Microsoft Remote Desktop Connection client.
    This will allow you to open up a Windows Terminal Services session on your Mac.
    If you are not running a Terminal Server of some sort, and you wish to run Windows apps directly on the Mac... then you'll need Microsoft VirtualPC installed and configured on each Mac.

  • HT5639 At present I have Windows programs installed using parallels 7. I now wish to delete all Windows based programs and revert the hard drive back to its original state ie single partition.  How do I go about it??

    At present I have windows based programs installed using parallels 7 on my Imac. I now wish to delete all the Windows programs etc and revert the Hard Drive to its original setting i.e single partition. How do I go about it??

    It's not clear if you installed Windows in a virtual machine or you installed Windows in Boot Camp but you run it in Parallels.
    If you installed Windows in Boot Camp, open "Boot Camp Assistant" (it's in /Applications/Utilities) and follow the steps to restore your hard disk into one volume. If you installed Windows on a virtual machine, just open Parallels and delete the virtual machine where you have installed Windows

  • AIM and other "windows based" programs

    Hey,
    I am getting a new macbook for christmas and I am very excited about this. My question for you guys is, how many windows based programs can you run on macbook? Such as AIM and a few games based on windows ? Thanks in advance

    Hey,
    how many windows based programs can you run on
    macbook?
    The answer is either none or all. The Mac OS does not run any Windows programs. However, you can install Windows on your MacBook and then you can run all Windows programs. The downside to doing this is that your MacBook then becomes a virus ridden Windows machine!

  • I am having difficulty: we are running a windows server 2003 - mail and outlook support 2007 and upwards, how do I get the brand new apple machines to work with the 2003 version of server

    I am having difficulty: we are running a windows server 2003 - mail and outlook support 2007 and upwards, how do I get the brand new apple machines to work with the 2003 version of server

    I may be way out, but do you know about this product, would it help integrate the Macs for you.
    https://www.thursby.com/sites/default/files/images/ADmitMacv8_SPD.pdf

Maybe you are looking for

  • How to send Email Notifications to OID users?

    Hi All, I have a requirement where I need to send an email notification from the BPEL process. The Email notification has to be sent to a used who invoked the process the userName is provided in the initiation parameters. But I need to fetch the emai

  • ABAP OO - MEREQ (Purchase Req) - Protected Attributes

    Hi Gurus !! I'm trying to Assign data in PR (ME5xN) as I do in PO, but I'm afraid I'm facing a wall. Here is my requirement : when a field on an item is changed (let's say AFNAM), I have to modify field in coding block, here FISTL. I've tried a lot o

  • CS4 install DVD contains no .exe files?

    I have a copy of Adobe Creative Suite 4 Web Premium, student licensing edition. I have previously installed this on Windows XP. I recently reinstalled Windows XP. I went to reinstall Adobe CS4 on the system, but there are no installers on the DVD. No

  • I want to know what generation my iPad is?

    Well it's second handed and I just want to know what generation is since they all look the same! (Generation-1,2 and 3)

  • RFC Adaptive Model Questions

    Hi all, I have some questions about RFC Adaptive Model in Web Dynpro: 1)Can I add a new RFC into a Model without recreating that? 2)There’s a way to WebDynpro don’t lost de mapped attributes like an input field that’s mapped to an import parameter of