Jump to content

Tabbing within GUI Input Control


mtmartis
 Share

Recommended Posts

Is it possible to use the tab key within input controls? I would like to tab from Date input to my Time input, but once in time, the next time I hit tab key it would take me to minutes within the time control opposed to the next control (OK button)

Any help or hints would be greatly appreciated!

#Include <GuiDateTimePicker.au3>
#include <GUIConstants.au3>
TimeInput()
Func TimeInput()
$tForm = GUICreate("Select Date/Time", 175, 175,-1,-1)
$tDate = GUICtrlCreateDate(@YEAR & "/" & @MON & "/" & @MDAY, 10, 10, 125, 20)
;select a specific default format
$DTM_SETFORMAT_ = 0x1032    ; $DTM_SETFORMATW
$style = "yyyy/MM/dd"
GUICtrlSendMsg($tdate, $DTM_SETFORMAT_, 0, $style)
$tTime = GuiCtrlCreateDate("",  10, 50, 100, 20, $DTS_TIMEFORMAT )
$tOK = GUICtrlCreateButton("OK", 10, 120, 75, 25)
GUISetState(@SW_SHOW)
While 1
$tmsg =GUIGetMsg()
If $tmsg = $GUI_EVENT_CLOSE Then
MsgBox(0,'',"Application aborted")
Exit
EndIf
Switch $tmsg
  Case $GUI_EVENT_CLOSE
   MsgBox(0,'',"Application aborted")
   Exit
  Case $tOK
   $tDate = GUICtrlRead($tDate)
   ExitLoop
EndSwitch
WEnd
EndFunc
Link to comment
Share on other sites

  • Moderators

mtmartis,

Windows uses the left/right cursor keys to move between the date/time elements in the 2 inputs, while the Tab key moves between controls. AutoIt follows these conventions. You could perhaps intercept the Tab keypress and redirect it but it would be a lot of work - why not just accept the Windows defautl behaviour. :)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

I have implemented a simple solution to this in the following post:

Edit

Actually it isn't very useful for your purpose, but it does allow you to send TAB inside an edit control. It could be modified to do what you ask, but isn't needed in this instance.

Edited by czardas
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...