Outlook Keyboard Key - Change ?

Page 2 of 7 FirstFirst 1234 ... LastLast

  1. Posts : 4,466
    Windows 10 Education 64 bit
       #11

    As shown in the previous post The Logitech Setpoint software will let you reassign that key and any of the other Hot Keys
      My Computer


  2. Posts : 2,663
    Windows 8.1 Pro x64
       #12

    JerometheGiraff said:
    I'm not using Outlook, tie it to Hotmail.com. Can you let me enter in a Hotmail account login, it's automatic ?
    With my knowledge, I could only get it to take you to the website, I don't know how to make it enter credentials. But this is irrelevant now - seavixen has found a solution :) Let us know how it goes!

    Tom
      My Computer


  3. Posts : 925
    Windows 10 Pro
    Thread Starter
       #13

    I don't have that option like the Solar Keyboard for my Logitech
      My Computer


  4. Posts : 4,466
    Windows 10 Education 64 bit
       #14

    JerometheGiraff said:
    I don't have that option like the Solar Keyboard for my Logitech
    Did you install the Setpoint software? On my Access Keyboard 600, those keys will work without Setpoint but the other Blue keys tied to the FMode function won't. Installing Setpoint will let you use all the custom keys and remap the Search, Mail, Home, etc keys.
      My Computer


  5. Posts : 7,730
    Windows 7 Ultimate SP1 64-Bit
       #15

    JerometheGiraff said:
    I don't have that option like the Solar Keyboard for my Logitech
    Did you go to Logitech's support site and check what downloads are available for your keyboard?

    To get the extras you need to download the Setpoint software and install it.
      My Computer


  6. Posts : 2,663
    Windows 8.1 Pro x64
       #16

    I decided to give your launcher a go, as a learning exercise :) I was initially going to do a batch file for you, but I've knocked something together in C#:

    The code, should you want to inspect it:

    Code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    
    namespace ConsoleApplication2
    {
        class Program
        {
            static void Main(string[] args)
            {
                Console.Title = "tom982 URL Launcher ©";
                Console.ForegroundColor = ConsoleColor.White;
                Console.Clear();
                
                bool exit = false;
    
                Console.WriteLine("---------------------");
                Console.WriteLine("| Choose an option: |");
                Console.WriteLine("|                   |");
                Console.WriteLine("|      1: Hotmail   |");
                Console.WriteLine("|      2: GMail     |");
                Console.WriteLine("|                   |");
                Console.WriteLine("|     tom982 ©      |");
                Console.WriteLine("---------------------");
                Console.WriteLine(" ");
    
                Console.ForegroundColor = ConsoleColor.Gray;
    
                while (!exit)
                {
                    Console.WriteLine("Please enter your selected Option:");
                    string options = Console.In.ReadLine();
                    switch (options)
                    {
                        case "1":
                            Console.WriteLine("You've select Option 1.");
                            System.Diagnostics.Process.Start("http://www.hotmail.com");
                            exit = true;
                            break;
    
                        case "2":
                            Console.WriteLine("You've select Option 2.");
                            System.Diagnostics.Process.Start("http://www.gmail.com");
                            exit = true;
                            break;
    
                        default:
                            Console.WriteLine("Error! Please select a valid option.");
                            Console.WriteLine(" ");
                            exit = false;
                            break;
                    }
                }
            }
        }
    }
    This is what it looks like:

    Outlook Keyboard Key - Change ?-launcher.png

    As far as I'm aware, this is bug free. If you enter a number that isn't 1 or 2, it'll ask for another. I've attached a copy of it, named OUTLOOK.exe, so that my solution (well, workaround) is here should the above suggestions not work.

    Here are the locations of the real OUTLOOK.exe:

    Office 2003

    C:\Program Files\Microsoft Office\Office11\OUTLOOK.exe

    Office 2007

    C:\Program Files\Microsoft Office\Office12\OUTLOOK.EXE

    Office 2010

    C:\Program Files\Microsoft Office\Office14\OUTLOOK.exe

       Note
    In x64 (64 bit) computers, the program files folder will be Program Files (x86). E.g. "C:\Program Files (x86)\Microsoft Office\Office14\OUTLOOK.exe"


    You will need to download the attached OUTLOOK.exe file, and copy and paste it into one of the above locations. I don't know which location this keyboard button is launching, so you may have to try all 3.

    If you find any bugs or problems in this program, please let me know!

    Tom
      My Computer


  7. Posts : 925
    Windows 10 Pro
    Thread Starter
       #17

    Tom982 - I copied the file to /Office14/ in Windows7 x64 within the ProgramFiles(x86) folder, triggered the keyboard button, nothing happens ?
      My Computer


  8. Posts : 2,663
    Windows 8.1 Pro x64
       #18

    JerometheGiraff said:
    Tom982 - I copied the file to /Office14/ in Windows7 x64 within the ProgramFiles(x86) folder, triggered the keyboard button, nothing happens ?
    That's strange. I'll have another look through my code, but I've tested it a lot on my computer and it's worked without a problem. Does it run if you run it by double clicking on it? I.e. is it a fault with the program or with the location?

    Try copying it into all of these locations:

    C:\Program Files (x86)\Microsoft Office\Office11\OUTLOOK.exe
    C:\Program Files (x86)\Microsoft Office\Office12\OUTLOOK.exe
    C:\Program Files (x86)\Microsoft Office\Office14\OUTLOOK.exe

    In the mean time, I'll test it out on my sister's x64 laptop - mine is only x86.

    Tom
      My Computer


  9. Posts : 925
    Windows 10 Pro
    Thread Starter
       #19

    tom982 said:
    JerometheGiraff said:
    Tom982 - I copied the file to /Office14/ in Windows7 x64 within the ProgramFiles(x86) folder, triggered the keyboard button, nothing happens ?
    That's strange. I'll have another look through my code, but I've tested it a lot on my computer and it's worked without a problem. Does it run if you run it by double clicking on it? I.e. is it a fault with the program or with the location?

    Try copying it into all of these locations:

    C:\Program Files (x86)\Microsoft Office\Office11\OUTLOOK.exe
    C:\Program Files (x86)\Microsoft Office\Office12\OUTLOOK.exe
    C:\Program Files (x86)\Microsoft Office\Office14\OUTLOOK.exe

    In the mean time, I'll test it out on my sister's x64 laptop - mine is only x86.

    Tom
    I copied the file to /Office 11, /Office12, /Office14 locations and the keyboard short-cut does not trigger the file. I can run the file on it's own.
      My Computer


  10. Posts : 640
    Windows 7 Ultimate x64
       #20

    seavixen32 said:
    JerometheGiraff said:
    I don't have that option like the Solar Keyboard for my Logitech
    Did you go to Logitech's support site and check what downloads are available for your keyboard?

    To get the extras you need to download the Setpoint software and install it.
    Have you looked to see if Setpoint software is available for your keyboard yet like the above quote suggested?
    I also have a Logitech keyboard and Setpoint allows me to customize all my extra buttons and even allows me to open a website with them.

    Do you know what keyboard model it is?
      My Computer


 
Page 2 of 7 FirstFirst 1234 ... LastLast

  Related Discussions
Our Sites
Site Links
About Us
Windows 7 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 7" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 00:10.
Find Us