tabs

Notepad++ tabs to spaces

Does anyone know how to convert tabs to spaces in Notepad++? I found a webpage that suggests it's possible (http://www.texteditors.info/notepad-replacements-compared.php) but I couldn't find any information about how to do it. I like to be able to do that because some web forms don't respect code with tabs in it. ...

Visual Studio 2008, How can I set it to remove tabs when I backspace rather than spacs?

In Visual Studio 2008, it seems that when I tab on a line it inserts either 4 spaces or a tab, however - when I backspace it removes a tab as if it were 4 spaces, one space at a time.. I checked the text-editor settings in Tools.. tried both use spaces and use tabs, neither seem to work. Any ideas? Thanks in advance. Pete ...

How do I set tab size in the WPF RichTextBox

The WPF RichTextBox can be set to accept tabs in its input. It renders the result as a 4 character indent. I'd like to change that size. How can I change the default? ...

vi / vim - how to set the tab label/title length to a fixed size in chars

As I open new tabs in vi/vim(7.2), if the opened files are in different paths the tab title displays the complete path and hogs the screen real estate so the other tabs are not visible. This means I can't use my mouse to click to the tab I want but have to resort to : & keyboard commands to move between tabs. Is there any way I can res...

Open a new tab in firefox and keep ff in the background

Is the a way to programmatically open a URL in a new tab in firefox without firefox gaining focus? What I found out so far: firefox -new-window <URL> lets ff stay in the background, but opens a new window instead of a tab. firefox -new-tab <URL> opens <URL> in a new tab but gives focus to ff. EDIT: What I'm trying to accomplish is mak...

How to programmatically add a Tab to TabControl with a ListView control docked inside it?

I'm using Visual Basic 9 (VS2008) I want to create new Tabs as and when the user clicks an Add Tab button. The Tab must have a ListView control docked inside it. How to programmatically add a Tab to TabControl with a ListView control docked inside it? ...

Jquery Tabs- Load Contents only when clicked

Hi, I am relatively new to jquery and web development. I am using jquery tabs to create tabs. But i want the contents to be loaded only when i select a particular tab. Can someone please help me with this? ...

JSF session scope beans with Tabbed browsing

Dear all, We have the following problem... Application's environment: JSF, Richfaces, a4J Consider having the following scenario: The user logs into the system The user navigates to a new page which consists of an a4j form containing a4j components, the user fills into the form but doesn't submit. The user opens a new Tab and opens...

vba: getting value of a cell across all tabs

Greetings, I'm trying to write a vbscript function that collects the value of a cell ("E1") across all tabs of an excel document into an array (Reviewers). I wrote the following code, but the data is not being stored into the array, can someone please tell me what I'm doing wrong? this is the code: http://img24.imageshack.us/my.p...

Echo spaces in bash script

How do I echo one or more tab characters using a bash script? When I run this code res=' 'x # res = "\t\tx" echo '['$res']' # expect [\t\tx] I get this res=[ x] # that is [<space>x] ...

Trim / remove a tab ( "\t" ) from a string

Can anyone suggest a way of stripping tab characters ( "\t"s ) from a string? CString or std::string. So that "1E10      " for example becomes "1E10". Thanks in anticipation. ...

Create a multi-tabs Excel file

Hi, My PHP script have to create a multi-tabs Excel file with a report in each tab, but those reports already exists as HTML pages, so I don't want to duplicate code and work. I know I can rename a HTML file to .xls, and Excel/OpenOffice Calc will open it as a spreadsheet, but I don't know how to have severals tabs. I do not even know...

Show tabs with a different character (Emacs)

I'd be happy to have very soft character ">>" instead of white-space, like this: Any idea how to achieve that in Emacs? thanks ...

changing location.hash with jquery ui tabs

I've been trying to find a way to change the window.location.hash to the currently selected tab in [Jquery UI Tabs][1]. I've tried: $("#tabs > ul").tabs(); $("#tabs > ul").bind("tabsshow", function(event, ui) { window.location.hash = ui.tab; }) This results in changing the hash to #undefined when the tab is changed. I've also tried...

Undo Close Tab in Vim

I close a tab in vim and immediately realize I need to re-open it again for something. Is there a way to undo close tab in Vim 7.2? ...

Selecting a jQuery Tab using a parameter in the URL

I am currently investigating replacing the tabs provided by a Struts 1 tag library with the tabs provided by jQuery UI. I have successfully managed to get the tabs integrated with the existing application but I am struggling on how to set the selected tab using a parameter on the incoming URL, that is myurl.com/action.do?selectedTab=Seco...

Switch to selected tab by name in Jquery-UI Tabs

If I have three tabs: <div id="tabs"> <ul> <li><a href="#sample-tab-1"><span>One</span></a></li> <li><a href="#sample-tab-2"><span>Two</span></a></li> <li><a href="#sample-tab-3"><span>Three</span></a></li> </ul> </div> I would like to swap to #sample-tab-2 by it's name. I know I can switch to a tab if...

jquery tabs postback problem

Hi all i am using jquery library in my project.I have terrible problem with jquery tabs.Solutions is that when i was in third tab,i post back my form,tabs reloaded and goes to first tab. i am searching to solve problem long time. <script type="text/javascript"> $(document).ready(function() { $("#example > ul").tabs({ remote...

Tab decoration in Silverlight

I have some tabs I working with in Silverlight because of issues I'm having with JQuery UI in Internet Explorer. I want to style the tabs in sliverlight to look like the ones from JQuery UI but can only seem to get the to take some washed out colors. Dose anyone know of any links that describe how to do this? Is there a way to set an im...

ActionScript - how to address instance by name?

Hi, i am new to Action Script and i have the following problem: i have global variable tabName and a button, that changes its value, just like this: on(release){ _root.tabName = this._name; } and now i want to use String variable tabName to address curtain instance on stage to edit its property (actually, i want to control, which ...