Questions tagged [tabstop]
124 questions
1
vote
0 answers
Is it possible to set TabStop position in Google Docs in GAS?
I'm copying financial values from a Google Spreadsheet to a Google Doc and applying formatting all with Google Apps Script. Since financial numerical formatting doesn't stick when values are entered in Google Doc I've had to find ways around that to…

eck
- 11
- 1
1
vote
1 answer
reading tabstops as 4 whitespaces using textscan
Is it possible to tell MATLAB's textscan to import tabs as four whitespaces? Currently it's replacing a tab with just one whitespace:
raw = textscan(fid,'%s','Delimiter','\n','Whitespace','');
Thank you in advance :)

Johannes
- 135
- 5
1
vote
1 answer
C# TabStop in Validating not working
if i have these lines in my TextBox_Validating the tabstop on the TextBox will fired twice:
((TextBox)sender).AutoCompleteCustomSource.AddRange(new string[]
{
((TextBox)sender).Text,
});
But if remove the lines above the Tabstop works fine and…

Dung3onK33p3r
- 11
- 2
1
vote
1 answer
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 then editing the tabs on…

gha
- 3,459
- 3
- 18
- 13
1
vote
1 answer
Why TAB inside VIM moves one space after exactly three-long characters words?
After one-character length word or more than three-length characters word there TAB moves exactly 4 spaces.
My .vimrc configuration file is it as it follows.
syntax on
" number of spaces moved along by pressing >>, << or ==
set shiftwidth=4
"…

floreapaun
- 124
- 10
1
vote
1 answer
Why are some of my TabIndex values not being respected?
I've got a form with several controls on them (TextBox, CheckBox, ComboBox, NumericUpDown, DateTimePicker, and Button).
I have assigned them all TabIndex values, from left-to-right, top-to-bottom (1..25).
The controls are organized into Panels. The…

B. Clay Shannon-B. Crow Raven
- 8,547
- 144
- 472
- 862
1
vote
1 answer
WPF TabStop TextBoxes not working on Win10
I am struggling with testing of my wpf application, in which I have a window with TextBoxes, that contain a custom style from Application.Resources
The style implements a placeholder, and because it interfered with tabbing(it focused the placeholder…

someone1
- 73
- 12
1
vote
1 answer
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). So I'd like to set TabStop=false to those…

Vilx-
- 104,512
- 87
- 279
- 422
1
vote
1 answer
UWP - Template10 pageheader ellipsis tabstop on version 1.1.12
On the latest UWP Template10 version 1.1.12, the 3 ellipsis dot on the pageHeader are now tab stop.
This was definitely not there on the previous version.
How can tab stop be disabled on this please?

Franck E
- 629
- 8
- 26
1
vote
1 answer
reset or disable/enable curent used TabIndex -runtime- to start with 1 again
I have a TextBox (firstItem) and a Button (anotherItem) on my WpfWindow, indexed with e.g. 1 and 23 (for the sake of simplicity).
So when I click the Button (that has TabIndex="23"), I want, that it resets the curent TabIndex so that the TextBox is…

Michael1248
- 150
- 1
- 12
1
vote
0 answers
Setting tabstop (keyboard accessibility) for grid controls in Xaml
I have a Xaml page that has a bunch of different grids within grids. The page has 3 main "buttons" for a user to click. I want to allow a user using just a keyboard to tab through and select these 3 buttons, however because they are grid's, they…

user6115111
- 41
- 6
1
vote
1 answer
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 inherits from System.Windows.Controls.Control can take…

Montgomery 'monty' Jones
- 1,061
- 2
- 14
- 27
1
vote
1 answer
Display vbTab in Datagridview
I have a datagridview with a textboxcolumn. If I want to display a text that contains a vbTab then this Tab is simply removed and no tabulation is displayed.
If I write for example "text" & vbTab & "text" programmatically into a datagridview's cell…

sharkyenergy
- 3,842
- 10
- 46
- 97
1
vote
1 answer
How to make a non-displayed input or its label `keyboard tab stoppable`?
To have a customized input file, I've made it hidden by:
input[type="file"]{display:none;}
and have put a background for its label:
label.uploadfilelabel {background-image:url(../image.jpg);}
This approach works fine, But it has introduced…

Ormoz
- 2,975
- 10
- 35
- 50
1
vote
1 answer
Creating Tabstops in VBA in Excel for a Word file
I need to insert two different text parts automatically into a newly generated file through an Excel Macro. This is an example of my code that I have.
First I clear allthe existing tabs to have a clean document, then I want to put "This text should…

martiong
- 11
- 1
- 4