Tonos and writing to the Greek keyboard before problem

Description of the problem:

By opting for the Greek language the keyboard will not enter Greek characters unless I press the SHIFT key. Then I can normally type Greek characters until I try to enter a vowel TONOS. When I press on; (next to (L) key the keyboard stops again and I have to press SHIFT to type Greek characters. In addition, no characters (vowels) with tones is entered.

The used desktop PC is a HP Compaq DC7700 with Windows XP Professional in Greek language.

If anyone can help?

Hello

Thanks for sharing the information.

We are happy to know that your problem is solved. Please let us know if you have problems with Windows in the future.

Tags: Windows

Similar Questions

  • Cannot convert a virtual machine while it is powere on or suspended. Shut down and power off the virtual machine before the conversion.

    Hi all

    I am currently using preinstalled VMware 7.1 and I try to import a virtual machine, I used to work on my windows XP. Recently, I am using windows VISTA and I am trying to import my VM (.vmx) and I get this error "cannot convert a virtual machine, although it is powere on or suspended. "Shut down and power off the virtual machine before the conversion.

    This virtual machine worked very well under windows XP and VMware 6.5, but now I am not able to import it. Please suggest how I can make this virtual machine running in my VISTA and vmware 7.1.

    I am also attaching the converter file logs and .vmx vmware.

    Thank you...

    Is there a problem with this backup?

    It is possible. How big is she?

    Right-click on the vmdk file in Solution Explorer, then select «Map virtual disk...» "Does it work?

    André

  • Special characters and accents on the smart keyboard?

    How to type special characters and accents on the smart Pro iPad keyboard? For example, I like to write "Róisín Murphy" with accents in the name as shown here. But I can't find a way to do it. Are there not as a software keyboard that I can draw on screen for those?

    Thank you.

    If you have your English keyboard, then you can use the standard Mac shortcuts.  For acute, you more e option, then the basic letter.  e is more e, then e option.

    If you have your keyboard to something else, like Italian, then it might be different.  That your keyboard is set to?

  • Satellite A300 and emulation of the FN keyboard keys

    Hello!

    I have a laptop Toshiba Satellite A300-1tim: (PSAGCE).
    I can't understand how I can emulate the FN key on the external keyboard!
    Is there a way? Is this possible?

    Thank you

    As far as I know that something like this is not possible. Utility Toshiba are designed for internal keyboard only.

    I hope someone here can say perhaps more about this.

  • Satellite L670 - 1 L 4 - gambling with the combination keyboard/mouse problem

    I have a problem in game with my keyboard/mouse combination.

    When I run it, I can't draw.
    I changed the keys, mouse, connected to an external keyboard, checked drivers mouse and keyboard. Any extract, which makes me think that it is a driver/hardware problem. First time I noticed it, I thought it was a bug in the game. Now I have a new problem.

    The games that I have encountered the problem: Borderlands 2 and Rainbow Six Vegas 2
    Satellite L670 - 1 L 4
    Windows 7 operating system
    Mouse: Trust model #16336

    Hello

    As far as I know the mouse and keyboard drivers are the drivers Microsoft and Toshiba doesn't offer drivers for these devices except the driver for the touchpad to improve the touchpad options. I don t think that Toshiba is testing the feature with different games.

    Confused, it's that you have noticed the same problem using the external keyboard and mouse.
    Is there a possibility to test it with some older games?

  • Why tabs, windows and sometimes ignore the shortcut keyboard (CMD + W)? I keep having to go into file > close tab

    Tabs in Firefox seem to ignore my orders sometimes seemingly random. Perhaps even more so when the tab contains a video, although I could be wrong.

    I use a 13-inch, mid 2009 Macbook Pro installed OSX 10.10.2 (the latest build), but this also happens on 17 inches from my father-in-law, Early - 2008 Macbook Pro as well.

    If a plugin like Flash has focus, then the plugin gets all keys and you have to click outside the plugin to remove the development of the plugin and make the keyboard work again.
    I don't think that protected by Flash mode applies to Mac.

    On a Mac, you may also be unable to move to HTML5 media as an alternative player, because with this drive will work the keyboard shortcuts.

  • reading and writing to the file on SD card

    I am currently using this code to read and write to files (credit is not because of me - I found these on the Board somewhere):

       private void writeFile(String data, String filePath)
        {
            try
            {
                FileConnection conn = (FileConnection)Connector.open(filePath,Connector.READ_WRITE);
                if (!conn.exists())
                {
                    Dialog.alert("No File Present Click to Create");
                    conn.create();
                }
    
                OutputStream out = conn.openOutputStream();
                byte[] b = data.trim().getBytes();
                String sb = new String(b);
                System.out.println("Bytes to String: " + sb);
    
                if(sb.length() == 0 )
                    System.out.println("String length is zero");
                else
                    System.out.println("String length is not zero" + sb.length());
    
                if(conn.canWrite())
                {
                    Dialog.alert("Writing");
                    out.write(b,0,sb.length());
                }
                else
                    System.out.println("Cannot write to this file");
    
                System.out.println("File Size is : "+ conn.fileSize());
                out.flush();
                out.close();
            }
            catch(Exception io)
            {
                test.setText("Exceptino Thrown from File" +io);
            }
    
        }
    
        private String readFile(String filePath)
        {
            try
            {
                FileConnection fconn = (FileConnection)Connector.open(filePath, Connector.READ);
                if (fconn.exists())
                {
                    InputStream input = fconn.openInputStream();
    
                    ByteArrayOutputStream baos = new ByteArrayOutputStream();
                    int j = 0;
                    while((j=input.read()) != -1) {
                        baos.write(j);
                    }
                    byte[] data = baos.toByteArray();
                    input.close();
    
                    String output = new String(data);
                    System.out.println("Output" + output);
    
                    fconn.close();
                    return output;
                }
                else
                {
                    System.out.println("File does not exist");
                    fconn.close();
                    return null;
                }
            }
            catch (Exception ioe) {
    
               System.out.println("Error:   " + ioe.toString());
               return null;
            }
    
        }
    

    When I try to write a string to a file and then read it again, I get a NullPointerException. When I check the folder that mimicks card SD card on my pc, there is no file created. is the above code ok?

    P.S. I use a simulator of the OS 5.0 and the SD card directory is configured to be somewhere on my desk.

    It is incredibly baroque and inefficient code for a simple job; be happy that you do not claim credit for it.

    A problem may be that the FileConnection in writeFile is not closed. I would rewrite the mess like this (leaving a part of the diagnostic output):

    private void writeFile(String data, String filePath) {  data = data.trim();  OutputStream out = null;  FileConnection conn = null;  try {     conn = (FileConnection) Connector.open(filePath,Connector.READ_WRITE);    if (!conn.exists()) {      conn.create();    }    OutputStream out = conn.openOutputStream();    // it might be advisable to specify an encoding on the next line.    out.write(data.getBytes());  } catch (Exception io) {    test.setText("Exception Thrown from File " + io);  } finally {    if (out != null) try { out.close(); } catch (IOException ignored) {}    if (fconn != null) try { fconn.close(); } catch (IOException ignored) {}  }}
    
    private String readFile(String filePath) {  String result = null;  InputStream input = null;  FileConnection conn = null;  try {    fconn = (FileConnection) Connector.open(filePath, Connector.READ);    if (fconn.exists()) {      input = fconn.openInputStream();      byte[] bytes = IOUtilities.streamToBytes(input);      // it might be advisable to specify an encoding on the next line.      result = new String(bytes);    } else {      System.out.println("File does not exist");    }  } catch (Exception ioe) {    System.out.println("Error: " + ioe.toString());  } finally {    if (input != null) try { input.close(); } catch (IOException ignored) {}    if (fconn != null) try { fconn.close(); } catch (IOException ignored) {}  }  return result;}
    
  • Backup and synchronization of the Xperia keyboard does not

    Whenever I tried signing in I get could not sign.

    Tried again this morning, so good - so the problem should be resolved

  • Bluetooth and DVD on the Qosmio G-series problem

    The icon of bluetooth devices is not listed in the control panel and I loaded a DVD but it will not eject.

    [Edited by: admin on July 7, 2007 19:16]
    The sons have been merged due to the better clarity.

    Hello

    don't have bluetooth worked before or are you sure that BT is physically installed in your machine?
    On the DVD, you can eject manually by taking a paperclip updated the (bend) until you're all right and you will find a small hole on the cover of the DVD player. Take the paperclip and push it gently into the hole, with this technique, you can manually open the drive. Maybe the reader gets just stuck because of an error operating system or something else...

    Welcome them

  • to download a song or a film, I had to close and reopen the firefox browser to get a start of download, why? and what is the solution to my problem?

    When I select a video or movie in youtube to download after clicking on the download button, it is added to the download list, but the download will not start. After you close the browser and restart the download will automatically start... for every time to start download closing and re-opening distrubing my job so please find me a solution

    Hello uday.kumar, as your question seems to be on the 1-Click YouTube Video Downloader addon, please contact directly the developers of extension by the way to their home page - they can probably give you more detailed advice and are the only ones who can fix bugs or make necessary adjustments in the addon. Thank you...

  • Cannot start Windows 7 message and passed through the repair. SYSKEY problems?

    I received a call that the security program, we have installed last year had been compromised. We bought this company safety program. Then they asked to get on computer, which they did. Then they showed through the event viewer that the computer has been used by others. Started sounding fishy and then they wanted to buy us another program. I told him that I wanted him out of the computer, I would call them back. The guy then pulled up the syskey and typed a password and is out. Worked very well after that but now it works and now I received a message that microsoft cannot be started. The sykey is too ride with my original to enter the computer password?

    Examine your computer to be totally compromised.  You follow the recommended procedures for identity theft.

    Do not use the computer or go online for nothing. Re-install your system or have done to you.

    Notify your banks, credit cards, the police and the post office.

    Never allow people to connect to your computer, unless you are quite comfortable, that they are worthy of trust.  You have been scammed.

  • BlackBerry 9900 battery and shift of the curve smartphones / freeze problems

    I got my curve 9900 on a month and half ago and I have not dropped or damaged in any way, but the battery said to be empty in a few hours at full load (it happened last week) and phone lags and crashes on loading clock sign. Also, when I turn it off at night and try to turn it on in the morning, its battery is dead and I have to charge it. Once again. I have a top warranty so should I take it to the store or is there another solution? Thank you

    Hey, I'm having a similar problem as you. My phone has been late this week and in recent days had only less than a day its worth of battery even if I fully charged it. I got my phone a month ago. I called my service provider and they suggested I backup and restore the device. I did just now and I hope it solved the problem...

  • CS4 and performance with the Radeon HD 4670 problems

    I just updated my graphics to Embedded Intel G41 for a Sapphire HD 4670 512 MB GDDR3 card. While there certainly improves the General performance of the PC it leaves first faced, with video performance WORSE than the Intel. The video of the timeline is aweful - stuttering and jerky. I used to use the HDMI output to a HD of Hitachi TV with a resolution of 1440 x 900. It is a little choppy, but overall not too bad. Now, it's really bad.

    My spec is complete:

    PC with custom:

    Windows 7 Ultimate 64 Bit

    Intel E6300 2.8 ghz Dual - Core CPU

    Corsair 4 GB RAM

    3 x SATA hard drives

    POWER 450W

    Can someone advise me what I please. I bought this card for £58. Well above that is not an option.

    UPDATE:

    I have to say that I want to say is that to happen when I go to playback settings - reading in real-time - external device: and select the Hitachi. If I choose 'None', then it is fine, but only plays back in the monitor of CS4 window. I could use Hitachi okay with graphic edge.

    Post edited by: Funky monk

    9.12 to uninstall, reboot, install 9.11 from here.

  • Need help for reading in parallel on the same interface and writing XNET

    Hello. I need help to configure CAN interface to write and read from the same interface.

    I use NI PXI-8513/2. I use CAN1 as interface.

    My had TO send status messages CAN every 100ms. I have to read in order to return akntoowlege to keep DUT CAN interface happy and not make mistakes.

    So, I want to open Strim Session and readall frames in the loop. At the same time, I need to be able to write in a frame HAD at the time...

    I only need to read one picture at a time too, but since I know the ID, I can pull it from the stream.

    What I'm confusing all is how to put in place the same CAN1 interface to be able to write and read in parallel.

    I think I would get errors that interface is already in use.

    Since I'm new to CAN, I was read and write only when necessary. But, sometimes I was getting errors on my messages. Sometimes I get message, sometimes miss me. But, when I run CAN test criminal as sniffer he sends and written every time. I was told it's because it recognizes all messages.

    I opened to suggestions of how best to implement the interface.

    I guess I can use CAN2 and separator to work around this problem, but I would use an interface if possible.

    Thank you

    Hi Rus,

    The XNET hadrware takes care of most of the low level of detials for you. The reading and writing of the circuits are both connected to the bus at any time. When you write to the hardware it will try to put a frame on the bus at the first opportunity he can. If the frame loses arbitration material re - will attempt to send the frame up is successful. Reception equipment monitor activity on the bus, regardless of what it conveys. The material received will usually throw a framework that was sent by communication equipment, but there is an Echo property pass to circumvent this behavior too.

    Take a look at the example of the expedition: MAY-> NI - XNET-> Sessions-> multiple Sessions Intro-> CAN even exit entry framework Port unique Point.vi. Keep in mind that this example you will need to use a second CAN interface to recognize frames, it transmits. I would recoment against the example CAN output Frame Single Point which would mimic your ECU if you choose a type of cyclic frame running this example.

  • On NEW laptop keyboard does not work after that the screen keyboard has been activated and then deactivated.

    Look at my friend got a new laptop and went through the whole upward. the on-screen keyboard has been activated which invalidates the real keyboard when the on-screen keyboard has been disabled the real keyboard has NO return. If this is a bug... Fix it. This is not a driver issue, it is not a user error. Stop giving people answers, trying to pretend like it's not not the OS when most people already know that it is.

    I'm sorry, but I didn't not new meant only one day.  And when I got my new laptop, one of the first things I did was to create a point of files, even a day later I had a restore to use - point and that was possible here as well.  I'm sorry it wasn't the case.

    If the system restore option is not available, do a startup repair, boot from the disk Installation of Windows Vista genuine (or one that you can borrow from someone) or a recovery disc.  Here is the procedure: http://www.bleepingcomputer.com/tutorials/tutorial148.html.  You may need to change the BIOS to do first the CD drive in the boot sequence to boot from the CD.  To do this, hold the screen that tells you the key F to push to enter the menu start or start of installation.  Push it quickly. Make the changes, save your work and exit.  Put the CD in the drive and reboot.  When you are prompted, press any key to boot from the CD.

    If you do not have a floppy disk, you can make a bootable recovery disk by using http://neosmart.net/blog/2008/windows-vista-recovery-disc-download/ with burning software like: http://www.snapfiles.com/get/active-isoburner.html and, of course, a blank CD.

    If this does not work, you can try to go into the BIOS during the startup (the key appropriate to push appear on the screen to enter the boot menu or boot installation - try them both in turn if both appear. It is possible that the BIOS contains an option to disable the keyboard (which may have been activated by the keyboard on the screen but not changed when disable you the on-screen keyboard) and you may need to re-enable manually.  There is a slight possibility, but it is an option to try.

    Another option to try is to set up a new user account that has never used the keyboard on the screen and see if the regular keyboard works when you connect to this account.  If so, you can simply treat the original as a corrupt account account and use the following procedures to complete the transfer.  To fix this use http://windows.microsoft.com/en-AU/windows-vista/Fix-a-corrupted-user-profile.

    I hope that one of these aid procedures.  I'm sorry if they seem to 'generic', but we do not really know what is the problem - especially since the system is new.  We try and identify the cause and fix the problem at the same time using the procedures available to us.  I suspect there's a registry tweak will correct this problem, but I went through the whole registry, and although I found several referencers keyboard, I could find no which seemed to control or not activate the main laptop keyboard (though it has been in one of the entries that has been encoded in binary that I couldn't read).  It's possible someone who knows more about the registry will respond to this issue with a proposal to amend (or perhaps another solution).

    I hope that one of the solutions I proposed works.  Please post back in all cases we will know whether or not to continue searching for an answer.

    Good luck!

    Lorien - MCSA/MCSE/network + / has + - if this post solves your problem, please click the 'Mark as answer' or 'Useful' button at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

Maybe you are looking for