Tagged Questions
The tabstop tag has no wiki summary.
15
votes
3answers
4k views
Prevent tabstop on A element (anchor link) in HTML
Is it possible to cancel an <a href="..."> from being tabstopped in any browser? I would like to do this without Javascript.
7
votes
2answers
5k views
Disable tabstop between columns in a WPF datagrid
I have a WPF Toolkit datagrid with mulitple columns. I am trying to get a behaviour where you can tab into the grid using tab, then tab out again using a single tab. E.g. I do not want to tab through ...
5
votes
6answers
242 views
How do you do tab stops in HTML/CSS
There is some text whose formatting I would like to render in HTML. Here is an image:
Note the gray lines with the bullet points and the paragraph numbers. The bullets should be centered on the ...
5
votes
2answers
276 views
IsTabStop = False on a SL4 Text box
I set IsTabStop to false on a text box and I know that this makes the control unable to receive focus, but according to the Silverlight Forums, it should still be able to receive mouse events. I have ...
5
votes
2answers
2k views
WPF: How to disable tab navigation without also disabling arrow key navigation?
I have set IsTabStop to false on all controls in my window, so that when I press the Tab key, the focus doesn't move (I need the Tab key for something else). But doing this breaks arrow key navigation ...
4
votes
6answers
260 views
Panel.TabStop = true has no effect
I Trying to switch Panel.TabStop property totrue but it does not affect anything.
How to enable TabStop in a Panel?
4
votes
2answers
171 views
I need help understanding what Exercise 5-12 is asking for in the C Programming Language book
K&R C Programming Language: pg. 105
Extend entab and detab to accept the shorthand
entab -m +n
to mean tab stops every n columns, starting at column m.
entab replaces a number ...
3
votes
1answer
513 views
Disable TabStop on Expander
I set IsTabStop to False, but Tab still navigates to the expander.
Any ideas what am I doing wrong?
<Expander Header="Data" IsTabStop="False">
<Border Background="White" ...
3
votes
2answers
962 views
WinForm - TabStop Not Working
I have a WinForm with 3 group boxes, one with combo boxes, and two with radio buttons. I set all of them and their children controls to "TabStop = false", but when I cycle with TAB, the currently ...
3
votes
2answers
6k views
How to programmatically navigate WPF UI element tab stops?
Can anyone tell me how to programmatically navigate through all UI element tab stops in a WPF application? I want to start with the first tab stop sniff the corresponding element, visit the next tab ...
2
votes
3answers
273 views
Python tabstop-aware len() and padding functions
Python's len() and padding functions like string.ljust() are not tabstop-aware, i.e. they treat '\t' like any other single-width character, and don't round len up to the nearest multiple of tabstop.
...
2
votes
1answer
2k views
AdornerDecorator and tab stop issues
I am using IDataErrorInfo to validate and indicate errors in my text boxes. I am finding I have to tab once for the text box and once for the adornerdecorator.
I have an error template:
...
1
vote
1answer
94 views
WPF Disabling TabStop for ObjectDataProvider
I have a ObjectDataProvider of check boxes:
<UserControl.Resources>
<ObjectDataProvider x:Key="checkboxes" ObjectType="{x:Type Models:Items}" />
<DataTemplate ...
1
vote
2answers
360 views
vim - set auto indent to fill the leading space with space or tabstop
It seems if we enable 'ai', vim will fill the the leading space with tabstop.
I can make it fill with just space with 'et'. I don't like a C file mixed with space and tabstop.
My vimrc:
set ts=4 et
...
1
vote
1answer
544 views
IsTabStop=“False” has no effect on my WPF app
I'm having a really hard time with something that should be trivial. I just want to remove a few buttons from the tab order on a UserControl. I've tried adding IsTabStop="False" and ...
1
vote
1answer
725 views
What can act as a tab stop in silverlight?
I am working on a silverlight application with a significant number of invisible tab stops.
I am currently busy trying to track them all down and eliminate them.
I am aware that any control that ...
1
vote
4answers
181 views
Modify detab to accept list of tab stops
This is my version of detab, from this K&R exercise:
Modify detab to accept a list of tab stops as arguments. Use the default tab setting if there are no arguments.
#include <stdio.h>
...
1
vote
1answer
228 views
Design Principle: Is there ever a reason to turn TabStop off?
In Visual Studio .NET the TabStop property is by default set to True for all command and input fields. Most other designers have some concept of tab control for "power users" who don't like to switch ...
1
vote
1answer
843 views
Locating the first WPF tab stop
Thanks to an answer on a previous question (Previous Question), I now have a body of code that navigates WPF tab stops (shown below). It works fine except for the first tab stop. Calling ...
1
vote
0answers
379 views
WPF: Jump/navigate to next data error using programmatic keyboard focus navigation
I've built a WPF application. All of the UI elements except the Window are created in response to data binding. Thus, I set the DataContext of the Window, and voila -- a very large hierarchy of UI ...
0
votes
3answers
151 views
How to stop debugging and Android application in Eclipse
I'm writing a simple Android application. I changed the "Java EE" perspective to "debug" and after tracing variables, I return to original perspective ( "Java EE" ) and stopped debugging. But when I ...
0
votes
3answers
29 views
Tab styling with HTML and scripting logic
More of a stylistic question really, but how do you mix HTML tabs with scripting logic tabs in your source code? That might not be the best way to state the question, but I think a simple example will ...
0
votes
2answers
35 views
Gvim File Extension specific tablength
Is it possible in Gvim to set tablength according to the name extension of the file which is being edited ?
set tabstop=8 // For *.cpp
set tabstop=3 // For *.svh
set tabstop=8 // For *.pl
0
votes
1answer
72 views
How to control tabbing order without disabling all focus for controls in this scenario
I got a control that looks like this , it has several text boxes
[1 ][2 ][3 ][4 ]
Now in my app those controls are forming a somekind of a matrix like
[1 ][2 ][3 ][4 ]
[1 ][2 ][3 ][4 ]
[1 ][2 ][3 ...
0
votes
1answer
57 views
How to set customized tabstop color for a button in vb.net
I have placed a background image on my windows application form and when tab stops to a particular button it's color is changed and looks awkward...Can anyone tell me that how can I set some ...
0
votes
1answer
47 views
What happens when the tab button is hit in a WPF rich text box?
Ok.
So I get that when the tab key is hit once (with AllowTab = true), that the paragraph's textIndent property is set to 20.
What I don't understand is this. When I hit the tab key twice, the ...
0
votes
1answer
184 views
How to set .vimrc for c programs?
How should I set up my .vimrc so that macvim will set my tab to 4 spaces for c programs?
0
votes
2answers
141 views
What stops the tab?
I have the following xaml:
<ListBox ItemsSource="{Binding Path=ItemProperties.GeneralProperties}" Grid.Row="1"
Margin="0" Style="{StaticResource ListBoxStyle1}">
...
0
votes
0answers
31 views
Setting the size of the tabulations in a TextView
I want to modify the default size of tabulations in a TextView.
Tabulations do work (I tested it) but are too small for what I want to do.
(or even better, elastic tabstops)
0
votes
1answer
153 views
Tab/spaces indention issues in IDE's vs vim
For a python project I am trying an IDE, coming from vim but I have troube how my code is shown resp. indentation. Many lines should be indented because they are inside if-then-else statements.
In ...
0
votes
1answer
175 views
NSTextView - How to preset tabstops?
I am trying to change the preset tabstops in an NSTextView. I found an old post form 2002 which says it is possible to do this from within Interface Builder by showing the ruler of the NSTextView and ...
0
votes
1answer
180 views
How to set tab stop in CoreText
I want to set the tab stop in CoreText. I really need the code. The example is more good. Anyone can help me?
0
votes
1answer
351 views
Using StringFormat.SetTabStops(), is it possible to align tabs?
I'd like to be able to align the tabstops I use in a StringFormat (set with the SetTabStops() method)
Is this possible?
0
votes
1answer
396 views
TabStop/TabIndex behaves erratically within TableLayoutPanel
I've got a rather complex TableLayoutPanel with close to 40 controls on it. Some are read-only, and some don't need user attention unless in very special cases (which can then be accessed with mouse). ...
0
votes
1answer
511 views
Access 2007 Split form VBA: acNewRec on open prevents tabbing through form - acts like the first field is not 'selected'
I hope someone can help me out, or at least help figure out a workaround.
I'm using Access 2007's split form feature, and have the code below run on the Form_Open event, as well as after two ...
0
votes
2answers
202 views
changing tabstop from 4 to 2 after using expandtab (with minimum manual effort)
For some time I have used tabstop=4 in my source files. Now that I write lot of javascript that has deep indentations, a tabstop of 4 seems wasteful, so I want to convert it to 2. The problem is I use ...
0
votes
2answers
575 views
Word VBA Tabstop Problem
I have the following VBA code
Private Sub CreateQuery_Click()
Dim doc As Document
Dim i As Integer
Set doc = ActiveDocument
i = doc.Paragraphs.Count
...
-1
votes
0answers
24 views
TabStop on a ToolStripButton
How do I remove the tab stop on a ToolStripItem (e.g. a ToolStripButton)?
I have a ToolStrip with numerous items in but I only want the focus to be allowed on the ToolStringTextBoxes. But none of the ...