Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Back Arrow on Tab Key Purpose  (Read 2857 times)

0 Members and 1 Guest are viewing this topic.

Jim1944

    Topic Starter


    Newbie

    • Experience: Experienced
    • OS: Windows 7
    Back Arrow on Tab Key Purpose
    « on: October 04, 2014, 05:03:43 PM »
    Tab key:  What is the purpose of the backward arrow on the tab key?  How do you invoke it?  What code does it generate?  My use of the tab key is always to go forward.  Is there a way to tab backwards?

    Also, there is a character in the ASCII code table called a "vertical tab".  What is that used for and how is it invoked from the keyboard? 

    I'm sure these questions have been asked before but I didn't find anything with search.

    camerongray



      Expert
    • Thanked: 306
      • Yes
      • Cameron Gray - The Random Rambings of a Computer Geek
    • Certifications: List
    • Computer: Specs
    • Experience: Expert
    • OS: Mac OS
    Re: Back Arrow on Tab Key Purpose
    « Reply #1 on: October 04, 2014, 07:39:05 PM »
    Tabbing backwards really depends on the program you are using, most things like word processors do not support it since they expect you to just delete the tab character but some text editors (used for programming) allow you to do a backwards tab by holding shift and pressing tab.  This is useful for indenting/unindenting several lines of code at once.

    Jim1944

      Topic Starter


      Newbie

      • Experience: Experienced
      • OS: Windows 7
      Re: Back Arrow on Tab Key Purpose
      « Reply #2 on: November 11, 2014, 02:49:05 PM »
      Thank you!  I suspected that it was not used much because it had no affect in every app where I tried shift-tab.  I do a little REXX programming here and there but there is no developer interface for it so it is not used there.  You muct be pretty good to know about that needle in a haystack.  Thanks, again.

      strollin



        Adviser
      • Thanked: 84
        • Yes
      • Certifications: List
      • Computer: Specs
      • Experience: Guru
      • OS: Windows 10
      Re: Back Arrow on Tab Key Purpose
      « Reply #3 on: November 12, 2014, 05:23:58 AM »
      Tab & Shift-Tab are standard ways of moving through a document or application.  I'm sure there are exclusions but, if an application doesn't support forward/backward tabbing, then it's broken.  It may not be a big deal for us sighted users but for blind users it's a must and very much depended upon.

      I'm a developer for a large software company and all of our software is coded and tested to support tabbing and even to use a logical tab-order (generally left-to-right, top-to-bottom). 

      BC_Programmer


        Mastermind
      • Typing is no substitute for thinking.
      • Thanked: 1140
        • Yes
        • Yes
        • BC-Programming.com
      • Certifications: List
      • Computer: Specs
      • Experience: Beginner
      • OS: Windows 11
      Re: Back Arrow on Tab Key Purpose
      « Reply #4 on: November 12, 2014, 11:28:21 AM »
      to clarify, Strollin is referring to tab order through controls. eg when you press tab, it moves to the next control (textbox, button, etc.) in the tab order, and Shift+Tab moves backwards through that order.
      I was trying to dereference Null Pointers before it was cool.