Questions tagged [tabstop]

124 questions
0
votes
0 answers

Access VBA Userfrom opens with combobox getting focused with tab stop turned off

When opening my User from the sub form, which is a data sheet/ record source, has a combo box in each row and it is getting focused, even though I have the tab stop property turned off. The main problem is that the combo box is on the righten side…
0
votes
1 answer

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 SPE and netbeans there are many lines where the…
groovehunter
  • 3,050
  • 7
  • 26
  • 38
0
votes
2 answers

how i makes decrement value stop at zero

I am a beginner in xamarin android and I try to develop a simple app in xamarin android that makes decrement value into zero only ... but when I am trying the decrement value is continue to the negative value I cant makes it stop at zero value how…
0
votes
0 answers

How to set tab size in JTextPane

I'm working on creating a text editor written in Java, and I've decided to use a JTextPane instead of JTextArea because it will enable me to create a rich text edit using different color schemes. However JTextPane does not have a setTabSize(int…
Vince
  • 2,596
  • 11
  • 43
  • 76
0
votes
1 answer

How to prevent focusing Controls in UserControl

I have a User-Control with 2 Textbox and 1 Button, Something like below: When I press the button a form show and when the form closed I want to leave focus from User-Control and next control on the Form got focus, I write this code for this…
Ali
  • 3,373
  • 5
  • 42
  • 54
0
votes
1 answer

How to change an existing Tabstop in PowerPoint by VBA?

I have a VBA Code to resize objects in PowerPoint including Font size, margins and everything else. But I haven’t found a solution to update/change an existing TapStop. There is a the Ruler Object with different levels und a default value. I double…
Moe
  • 43
  • 5
0
votes
1 answer

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?
ocodo
  • 29,401
  • 18
  • 105
  • 117
0
votes
1 answer

Columns of text in NSMenu?

Is there a way to make an NSMenu whose content looks something like this: 1 one uno 2 two dos 3 three tres 4 four quatro (Short of specifying a monospace font in the item AttributedText, that is.)
William Jockusch
  • 26,513
  • 49
  • 182
  • 323
0
votes
1 answer

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 button_click events. The code works fine when run after…
goofology
  • 914
  • 2
  • 10
  • 21
0
votes
0 answers

TabStop property is not working for usercontrol inside the panel

I have a usercontrol which is placed inside one panel and some other controls like buttons in another panel. when the usercontrol is active and i move from other controls using tab key, usercontrol gets focus even when the TapStop property for the…
Amal
  • 576
  • 1
  • 6
  • 26
0
votes
0 answers

tabindex on C# winforms skips first textbox on a panel

I have a weird situation. I have a panel with 4 textboxes, 2 are read only. I have tab stop set to true and tab index set on panel and two editable textboxes. When running the application, the first textbox never receives focus. I have deleted the…
Chris
  • 5
  • 1
  • 3
0
votes
1 answer

Tab key is not working for some text boxes in xaml view for mvvm

I have a Create.xaml view in wpf with mvvm , that contains text boxes and combo boxes . When i click on TAB key middle of the text boxes are not focused (or selected), and also not working for SHIFT + TAB .
0
votes
1 answer

C# Checkbox not gaining focus on Tabstop

I am making a config editor form and have hit a bit of an issue, I put a lot of time into userfriendly and efficient design and therefor want the TabIndex to work perfectly to minimize use of mouse. My problem is now when I try to tab through the…
Simon Jensen
  • 488
  • 1
  • 3
  • 19
0
votes
2 answers

vimrc tab behavior when noexpandtab and softtabstop is less than tabstop

Questions In the following example: Why in the first line, a \t is inserted but only 4-col blank is displayed? Shouldn't it be 8 according to tabstop? Why the two hits in the first line and fifth lines have different results? (one is 09 and…
wlnirvana
  • 1,811
  • 20
  • 36
0
votes
0 answers

Tabstop of created on runtime Win32 Controls and Existing controls of different Applications

I'm creating an application that will add/create a win32 control/s on another application. Using CreateWindowand also multithreading, I have successfully created the controls, and also the Tabstop of the created control is running well. The problem…
1 2 3
8 9