Cant type @ symbol.

kanga

New Member
Messages
17
For the last 6 months my workstation stops producing the ' at' and other symbols. It takes about a half hour to hunt down the solution and apply it every time. This is incredibly annoying and wont stay fixed. I have windows 8.1 which is an English os but live in Holland. Any tips on how to finally knock this crap on the head would be really appreciated. Why does the system keep reverting? Jeeze.

Cheerio
By the way, you guys have been really helpful in the past, your work is appreciated.
 
Last edited by a moderator:

My Computer

System One

  • OS
    windows 8.1
    Computer type
    PC/Desktop
    CPU
    intel quad q8200 2.33Ghz
    Memory
    4 gig
    Graphics Card(s)
    nvidia gts250
    Browser
    explorer
    Antivirus
    avast
It takes about a half hour to hunt down the solution and apply it every time.

Can you site some examples what these solutions were?
 

My Computer

System One

  • OS
    Windows 8.0 x64
    Computer type
    Laptop
    System Manufacturer/Model
    Toshiba Satelite C55D-A Laptop
    CPU
    AMD EI 1200
    Memory
    4 gb DDR3
    Graphics Card(s)
    Raedon 340 MB dedicated Ram
    Monitor(s) Displays
    Built in
    Screen Resolution
    1366 x 768
    Hard Drives
    640 GB (spinner) Sata II
    Keyboard
    Built in
    Mouse
    Touch pad
Hi MilesAhead.
The most common one is changing regional settings: [Fix] Can That seems to work for a short time.

Cheers
 

My Computer

System One

  • OS
    windows 8.1
    Computer type
    PC/Desktop
    CPU
    intel quad q8200 2.33Ghz
    Memory
    4 gig
    Graphics Card(s)
    nvidia gts250
    Browser
    explorer
    Antivirus
    avast
Are you only have problems with the At symbol and double quote? If so you could try a simple AutoHotkey script to substitute one for the other.

Code:
Sendmode Input
return

@::`"
"::@

If you want to try it you can get AutoHotkey here:
AutoHotkey

It is free and has a forum to help with getting your scripts to work.
I haven't tested the one I posted but it should be fairly close.

Edit: The way it works is the program sits in the tray and watches your keystrokes if you have a key and the hotkey symbol which is the double colon.

The idea here is if you type '@' it puts out a double quote and vice versa. Since double quote is used in strings instead of just escaping it with the back tick as I have done you may need to put
@::SendRaw "

But people on the forum will help. AutoHotkey is nice to have because you can do a lot of cool things with a few lines of script. You can also wrap the interpreter into the exe(compile) so that it will run on systems that do not have AutoHotkey installed.
 

My Computer

System One

  • OS
    Windows 8.0 x64
    Computer type
    Laptop
    System Manufacturer/Model
    Toshiba Satelite C55D-A Laptop
    CPU
    AMD EI 1200
    Memory
    4 gb DDR3
    Graphics Card(s)
    Raedon 340 MB dedicated Ram
    Monitor(s) Displays
    Built in
    Screen Resolution
    1366 x 768
    Hard Drives
    640 GB (spinner) Sata II
    Keyboard
    Built in
    Mouse
    Touch pad
Wow that's sexy!!!

Works fine, thanks for the advice. Like you say it looks like this tool is useful for a lot of tasks.
For anyone else looking it takes a little while for the AutoHotkey entry to appear in the shell.

Cheers and thanks again.
 

My Computer

System One

  • OS
    windows 8.1
    Computer type
    PC/Desktop
    CPU
    intel quad q8200 2.33Ghz
    Memory
    4 gig
    Graphics Card(s)
    nvidia gts250
    Browser
    explorer
    Antivirus
    avast
Glad it worked for you. :)

Edit: If the Tray Icon does not show right away you may be able to correct it by opening the system tray Properties and checking the box "always show all icons and notifications."

That is what I have. I make my taskbar triple height so I can fit plenty of tray icons and just let them all show.
 

My Computer

System One

  • OS
    Windows 8.0 x64
    Computer type
    Laptop
    System Manufacturer/Model
    Toshiba Satelite C55D-A Laptop
    CPU
    AMD EI 1200
    Memory
    4 gb DDR3
    Graphics Card(s)
    Raedon 340 MB dedicated Ram
    Monitor(s) Displays
    Built in
    Screen Resolution
    1366 x 768
    Hard Drives
    640 GB (spinner) Sata II
    Keyboard
    Built in
    Mouse
    Touch pad
Back
Top