active questions tagged user-interface - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T22:23:27Z http://stackoverflow.com/feeds/tag/user-interface http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1816444/adding-custom-js-to-a-django-admin-field 2 Adding custom JS to a django admin field tstenner 2009-11-29T19:07:12Z 2009-11-29T20:02:29Z <p>In a django application I have the following model:</p> <pre><code>class Appointment(models.Model): #some other fields #address fields zipcode=models.CharField(max_length=5) address=models.CharField(max_length=120) latitude=models.FloatField() longitude=models.FloatField() </code></pre> <p>When I'm rendering an Appointment, I'm just putting a marker at the position specified by longitude and latitude with the address as text, however I need the latitude and longitude to do that.</p> <p>Currently, latitude and longitude have to be entered manually in the admin backend, but opening Google Maps/OSM, searching for the address and entering latitude and longitude is work that shouldn't have to be done by hand, so I want to retrieve it through the Google Maps API (keyword Geocoding).</p> <p>Ideally, I want a button "Get coordinates" next to the address, which, when pressed, starts a Geocoding request and fills in latitude and longitude when the address is unambiguous and presents a map with the results and fills in the coordinates when the user clicks on the right marker.</p> <p>I know how to do that, but I'm not sure how I should insert the markup and the code into the admin backend.</p> <p>Some things I already considered but don't want to do as they don't seem natural or seem to be too much work for such a simple task:</p> <ul> <li>putting the code in the address field's description in <code>field_options</code> in a class derived from <code>admin.ModelAdmin</code></li> <li>putting everything address related in a separate model and using a custom <code>form</code> (with a separate template</li> <li>create an address picker widget</li> <li>use GeoDjango</li> </ul> http://stackoverflow.com/questions/1782196/selective-autorotation-of-uicontrollers 2 Selective Autorotation of UIControllers Andy 2009-11-23T10:07:28Z 2009-11-29T10:57:08Z <p>Hello, I did some experiments on autorotation. The situation: I have a TabBar 4(tabs), three should be portrait only. The last one is a UINavigationController, which by itself should not autorotate any of the stacked controllers. It is basically a browsing application, as I show file and folders everything should be portrait. Some times, a special UIViewController is pushed, and I would like only this one to autorotate (it is always the last on the stack). In this last view, the tabbar is hidden.</p> <p>How I achieved the goal: I subclassed the UITabBarController, to override the standard shouldAutorotate method behaviour:</p> <pre><code>- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { if([self.selectedViewController isKindOfClass:[UINavigationController class]]) return [[(UINavigationController*)self.selectedViewController visibleViewController] shouldAutorotateToInterfaceOrientation:interfaceOrientation]; else return [self.selectedViewController shouldAutorotateToInterfaceOrientation:interfaceOrientation]; </code></pre> <p>This way, the answer of shouldAutorotate is forwarded to the controlled tabs, and in particular for the UINavigationController, it is again delegated to the visible UIViewController. Basically this works, as I have all the UIViewControllers answering NO, except for the particular one I described above: correctly, when rotating the Simulator, only when the special UIViewController is visible, the interface rotates to landscape, whici is perfect. The Tabbar here is hidden, so user don't get that also that one is rotated (which would be unconsistent in my design: basically whenever the tabbar is visible, which means everywhere except in this special view, the application is portrait only).</p> <p>The problem is that I would like that, even if the device is still in landscape mode and user pops the special ViewController, the interface should behave consistently and return to portrait mode. Instead, when I pop, the interface stays in landscape (it's not designed in that way so it's a mess, of course) even when showing a UIViewController that would answer NO to shouldAutorotate... this is because (I think) the method is called only when rotation occurs, so until the rotation actually occurs again, the interface is rotated to landscape anyway.</p> <p>How do avoid this? My first solution would be somehow to intercept the popping of the last view, and rotate manually the view before popping... but I'm not sure, I hope there is some more robust method to handle!!</p> <p>I use the simulator with 3.0, dunno if this makes a difference.</p> http://stackoverflow.com/questions/1815202/c-bindings-to-jgoodies 0 C++ bindings to jGoodies? Israel ANY 2009-11-29T10:35:40Z 2009-11-29T10:39:43Z <p>Thus far the best C++ UI libraries I've run into are Qt, GTK, and wxWidgets; Are there existing libraries similar to <a href="http://www.jgoodies.com/" rel="nofollow">jGoodies</a> or 'better'. I am interested in mature (yet simple) technologies.</p> http://stackoverflow.com/questions/1814679/are-customizable-settings-important-in-web-apps 1 Are customizable settings important in web apps? Wayne M 2009-11-29T04:46:21Z 2009-11-29T05:04:53Z <p>It seems a lot of web applications allow users to change the color scheme, either to custom values or from several predefined ones (blue/yellow, grays, red/yellow, etc). I'm wondering if this is an important issue to consider adding. I'm looking at some premade application templates to speed up the design of my application, and a lot of them make heavy use of CSS graphics which are hard to customize without having different graphics for each predefined color scheme.</p> <p>So when focusing on creating an application that can be used by many different subscribers, is the added ability to customize the colors something to consider, or is the average user going to be okay with one look and feel when the colors might not match the colors of their business?</p> http://stackoverflow.com/questions/1094155/developing-user-interface-in-python-tkinter-vs-pyqt 2 Developing user interface in Python - TkInter Vs PyQt Andriyev 2009-07-07T18:59:52Z 2009-11-28T20:33:09Z <p>Hi</p> <p>If one wants to develop a user interface in Python, which one to go for: TkInter or PyQt.</p> <p>I just started with TkInter and I was able to get some simple UIs going with elementary widgets like label, button, text box etc. Just curious to know how good PyQt would be compared to TkInter?</p> <p>cheers</p> http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used 195 Worst UI You've Ever Used Claudiu 2008-10-26T16:11:01Z 2009-11-27T01:56:26Z <p>What is the <b>worst user interface</b> you've ever had to use? One that made you want to somehow locate the creators over the internet, personally fly to their location, and then <b>beat them severely with a large trout</b>. </p> <p>What made it so terrible? Was it <b>too many screens</b>, <b>ill-marked buttons</b>, or just really annoying <b>dialog boxes</b> showing up everywhere? <b>Screenshots</b> are a plus.</p> <p>Related question: <a href="http://stackoverflow.com/questions/238180/best-ui-youve-ever-used">Best UI Ever</a></p> http://stackoverflow.com/questions/1714405/how-to-get-the-center-of-the-thumb-image-of-uislider 0 How to get the center of the thumb image of UISlider willc2 2009-11-11T10:45:55Z 2009-11-26T16:42:44Z <p>I'm creating a custom <strong>UISlider</strong> to test out some interface ideas. Mostly based around making the thumb image larger. </p> <p>I found out how to do that, <em>like so:</em> </p> <pre><code>UIImage *thumb = [UIImage imageNamed:@"newThumbImage_64px.png"]; [self.slider setThumbImage:thumb forState:UIControlStateNormal]; [self.slider setThumbImage:thumb forState:UIControlStateHighlighted]; [thumb release]; </code></pre> <p>To calculate a related value I need to know where the <strong>center point</strong> of the thumb image falls when it's being manipulated. And the point should be in it's superview's coordinates.</p> <p>Looking at the <strong>UISlider</strong> docs, I didn't see any property that tracked this. </p> <p>Is there some easy way to calculate this or can it be derived from some existing value(s)?</p> http://stackoverflow.com/questions/514083/why-is-good-ui-design-so-hard-for-some-developers 79 Why is good UI design so hard for some Developers? Chris Ballance 2009-02-05T00:54:16Z 2009-11-26T07:12:19Z <p>Some of us just have a hard time with the softer aspects of UI design (<em>myself especially</em>). Are "back-end coders" doomed to only design business logic and data layers? Is there something we can do to <strong>retrain our brain</strong> to be more effective at designing pleasing and useful presentation layers?</p> <p>Colleagues have recommended a few books me including <em>The Design of Sites</em>, <em>Don't make me think</em> and <em>Why Software sucks</em> , but I am wondering what others have done to remove their deficiencies in this area?</p> http://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-used 63 What is the best UI you've ever used? Claudiu 2008-10-26T16:13:51Z 2009-11-26T03:44:24Z <p>What is the <b>best user interface</b> you've ever used? One that made doing your task a pleasure, that was perfectly designed for the task it was intended for and facilitated doing it with ease. One that made you want to somehow locate the creators over the internet, personally fly to their location, and then <b>hand them large pile of money</b>.</p> <p>What made it so great? Was it simplicity, unobtrusiveness? Screenshots are a plus.</p> <p>Related question: <a href="http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used">Worst UI Ever</a>.</p> http://stackoverflow.com/questions/201778/can-i-create-transparent-buttons-in-visual-studio-2005-with-c 3 Can I create transparent buttons in Visual Studio 2005 with C# Sean 2008-10-14T16:01:00Z 2009-11-25T10:03:28Z <p>I have a user interface that requires placing some round buttons in a C# project with some data behind them. The buttons are System.Windows.Forms.buttons and I have used a GIF image with transparency to create them. However, the transparent areas aren't transparent. I've looked for references online but haven't found any suggestions for how to do this properly. There's some mention of doing it in Visual Studio 2008 but I need to keep this project in 2005. Any help or suggestion is appreciated.</p> http://stackoverflow.com/questions/1791629/how-to-get-the-best-technical-feedback-possible-from-a-non-technical-user-when-su 2 How to get the best technical feedback possible from a non-technical user when supporting application issues? Achilles 2009-11-24T17:27:40Z 2009-11-24T17:35:34Z <p>A common problem I find when dealing with non-technical users when supporting technical issues is "translating" what I'm hearing to what actually is causing the problem. In our current application we do things like provide error message details that can be forwarded to our support team, however my question is:</p> <p><strong>1. Is there an approach that any of you have implemented and found successful in helping the user provide quality information about application issues that can help in troubleshooting? If so what is that approach?</strong></p> <p>What I'm hoping for is a clever approach to designing error message displays in such a way that when the user communicates the issue, it is a better primer for quickly resolving the issue. Thanks!</p> http://stackoverflow.com/questions/1377887/jtextpane-prevents-scrolling-in-the-parent-jscrollpane 1 JTextPane prevents scrolling in the parent JScrollPane exhuma 2009-09-04T08:15:04Z 2009-11-24T02:06:38Z <p>I have the following "tree" of objects:</p> <pre><code>JPanel JScrollPane JPanel JPanel JScrollPane JTextPane </code></pre> <p>When using the mouse wheel to scroll over the outer JScrollPane I encounter one annoying problem. As soon as the mouse cursor touches the inner JScrollPane, it seems that the scrolling events get passed into that JScrollPane and are not processed anymore by the first one. That means that scrolling the "parent" JScrollPane stops.</p> <p>Is it possible to disable <em>only</em> the mouse wheel on the inner JScrollPane? Or even better, disable scrolling if there is nothing to scroll (most of the time the textpane only contains 1-3 lines of text), but enable it <em>if</em> there is more content?</p> http://stackoverflow.com/questions/1778847/whitespace-validation-error-message 0 Whitespace validation error message Random 2009-11-22T14:30:21Z 2009-11-22T14:32:52Z <p>Hi </p> <p>This may not be very technical, but in my application I want to prompt the user when the form input element value has whitepsaces only.</p> <p>My english grammar is not the best so I hope some of the better english speaking folks can help me with this sentence:</p> <pre><code>alert("This field can not contain whitespaces only: " + labelName); </code></pre> <p>Thanks in advance R.</p> http://stackoverflow.com/questions/394596/where-to-get-user-interface-components-as-seen-in-acrobat-photoshop-etc 0 Where to get User Interface Components as seen in Acrobat, Photoshop etc Helios 2008-12-27T02:54:10Z 2009-11-22T07:00:03Z <p>Does anyone know if you can obtain the following user interface components as seen in various adobe products for use in ones own product?</p> <ul> <li>Treeview (Adobe Acrobat)</li> <li>Collapsable Toolbars (Adobe Photoshop, Illustrator)</li> </ul> http://stackoverflow.com/questions/1770114/what-are-some-methods-of-analyzing-a-website-for-user-experience-usability-and 2 What are some methods of analyzing a website for user experience, usability, and accessibility? lhnz 2009-11-20T12:18:34Z 2009-11-21T21:20:10Z <p>I'm a recent graduate who is looking to get a job doing user experience. Next week, I have a technical interview in which I will be given a website and will have to talk about its usability issues as well as come up with ways of improving the user experience. I feel I have the natural skills to do this and have been doing a fair amount of reading into the subject, but I would like some further advice on how to effectively critique different kinds of websites.</p> <p>Does anybody have any suggestions of common faults I should look out for, or advice on ways of structuring my evaluation in order that it is relatively air-tight and I do not miss anything <em>obvious</em>?</p> <p>As I've said before, I'm already doing a lot of reading and I realize that practice makes perfect. However, I'm hopeful that those that have long-term experience with this can help me by imparting their wisdom on gotchas, common issues, and what to look out for in a good/bad website.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/599915/microsoft-expression-web-2-experiences-while-programming-vs-studio-2005-2008 1 Microsoft Expression Web 2 experiences while programming VS studio 2005/2008 Kb 2009-03-01T14:40:39Z 2009-11-21T13:08:08Z <p>Have been programming with VS studio 2005/2008 making ASP.NET applications for a while.<br/> I am interested in experiences with <a href="http://www.microsoft.com/expression/products/Overview.aspx?key=web#page-top" rel="nofollow">Microsoft Expression Web 2</a> (strengths and weaknesses)<br/></p> http://stackoverflow.com/questions/1769662/ask-the-user-or-try-not-to-bother-him 0 Ask the user or try not to bother him? Jorge Córdoba 2009-11-20T10:41:57Z 2009-11-20T11:24:14Z <p>I have an application that might receive a net request for data from another computer. The data can be grouped into several categories so that filtering can be made upon it.</p> <p>In this situation two things can happen:</p> <ol> <li>I give the user the ability to filter the information he wants to send (thus reducing bandwidth and providing the user with a powerful feature)</li> <li>Try not to bother the user with this so that the use of the application remains as simple as possible and decide beforehand what information will be send.</li> </ol> <p>Basically is the old debate between Google UI and "your app UI". The second option is too simple but it limits the user ability to decide exactly the data he wants to send, the second introduce a complexity to the user that might be unneeded.</p> <p>What alternative do you thing is better?</p> http://stackoverflow.com/questions/1768297/looking-for-guidance-on-writing-tutorials-for-users 0 Looking for guidance on writing tutorials for users dude 2009-11-20T04:11:51Z 2009-11-20T05:38:01Z <p>Hi,</p> <p>We are developing a desktop application.We are writing tutorials for users in a wiki.I was looking for some guidance ..good practices when writing such tutorials.</p> <p>regards</p> http://stackoverflow.com/questions/73538/do-you-know-any-examples-of-a-pac-design-pattern 3 Do you know any examples of a PAC design pattern? mfer 2008-09-16T15:25:21Z 2009-11-20T00:46:10Z <p>Can anyone point to any websites or web applications that are using the <a href="http://www.dossier-andreas.net/software_architecture/pac.html" rel="nofollow">Presentation-Abstraction-Control</a> design pattern rather than MVC? Desktop applications are easy to find like this (e.g.; GIMP) but I'm looking for something on the web.</p> http://stackoverflow.com/questions/765876/scrolling-uitableview-on-the-iphone-as-seen-in-the-tumblr-app 0 Scrolling UITableView on the iPhone as seen in the Tumblr app? Steve 2009-04-19T18:46:22Z 2009-11-19T14:57:24Z <p>Hi folks!</p> <p>This inquiry is rather difficult for me to properly phase, but I'm going to give it a shot either way. </p> <p>I'm currently trying to figure out how to set my UITableView's to scroll over a background, and not within their own bounds. What I mean by that, is if you look at the Tumblr application, screenshot here: <a href="http://dl-client.getdropbox.com/u/57676/screenshots/tumblrbg.jpg" rel="nofollow">http://dl-client.getdropbox.com/u/57676/screenshots/tumblrbg.jpg</a>,</p> <p>The actual UITableView above scrolls elegantly against a background, the dotted tiles. The entire table moves in unison, if that makes sense. The default behavior of a UITableView when scrolled in other cases looks more like the following screenshot: <a href="http://dl-client.getdropbox.com/u/57676/screenshots/uitableview.jpg" rel="nofollow">http://dl-client.getdropbox.com/u/57676/screenshots/uitableview.jpg</a></p> <p>Notice the abundant white space at the bottom of the UITableView? That screenshot was taken with my dragging the UITableView up as far as I could. Instead of the last cell just dragging with the entire UITableView, the offset at the bottom gets created. </p> <p>I'm curious what the trick is in the case of the Tumblr application to get the UITableView to scroll with all cells in unison, without creating the abundant white space in the header or footer (depending which vertical direction you scroll in). Is it a UITableView that's sitting on top of a UIScrollView? (I know UITableView is a subclass of UIScrollView, so I figured this would be poor design).</p> <p>Thanks for the solution, this one is driving me up a wall.</p> http://stackoverflow.com/questions/1760620/how-do-i-add-a-tlabel-to-the-menu-bar-in-delphi 4 How Do I Add A TLabel To The Menu Bar in Delphi? lkessler 2009-11-19T03:04:23Z 2009-11-19T14:30:44Z <p>I use <a href="http://www.scootersoftware.com/" rel="nofollow">Beyond Compare</a> (a great program), and was very impressed when it displayed a "New Version Available" label on its Menu Bar. I clicked on it, up popped an install new version box, it installed, the program restarted itself and there was the new version and no more label.</p> <p>I thought that was a great feature. The label is there prominently on the menu bar where the user can't miss it. I've already got the update procedure, so all I had to do was add the label. That should be easy.</p> <p>Here's the label where I want it: <img src="http://www.beholdgenealogy.com/img/tlabel.jpg" alt="The Label Where I Want It"></p> <p>... Wrong. I couldn't figure out how to add a label there. The menu bar and the control area above it appear to be hands-off area for visual components. I couldn't place one there.</p> <p>But I know it can be done, because Beyond Compare is a Delphi program. </p> <p>Can anyone tell me what I have to do to put a TLabel in my Menu Bar or at least make it appear to be over the Menu Bar in the correct position?</p> <p>For reference, I use Delphi 2009.</p> <p><hr></p> <p>Conclusion: Christopher seems to have correctly figured out what the Beyond Compare people did. I've decided to implement the menu item, but without the customization of his "owner draw" solution. So I don't get the blue bold underline hyperlink look, but I also don't lose all the automatic things (like the Vista styling) that owner draw skips.</p> <p>To space the menu item over to the right, I've added an item after the "Help" that has the caption " " and is disabled.</p> <p>Thanks, Christopher. I was stuck thinking it must be a Label, but you saw around that.</p> http://stackoverflow.com/questions/1763359/whats-the-second-best-way-to-make-a-skinnable-user-interface-component 0 What's the second-best way to make a skinnable user interface component? Simon 2009-11-19T13:38:34Z 2009-11-19T13:41:56Z <p>I've been asked to make one of the components, which mimics a real-world appliance, in our application have a custom appearance, which varies depending on the make of the appliance being mimicked, so I need to make it skinnable.</p> <p>Now, I'm aware that the best way to do custom appearances in user interfaces, is not to do that at all; but I don't think I'll be able to get that past management, so...</p> <p>What's the the second-best way to make a skinnable user interface component? Our app is winforms-based so I was wondering whether it makes sense to use a <code>WebBrowser</code> control, write the skins in HTML, and somehow hook the DOM elements up to our app's events. Should I do it that way, or is there a simpler (and free) way of doing it?</p> http://stackoverflow.com/questions/1491748/how-to-iterate-button-varibles 0 how to iterate Button varibles EEE 2009-09-29T10:30:34Z 2009-11-17T19:12:50Z <p>Hi all. I have 16 buttons named button1, button2... etc What is the best way to iterate them and How do I need to store these buttons in( in an array or something)? I like to do something like that;</p> <pre><code>public void func(string[] a) { for(int i = 0; i&lt;16;i++) { if(a[i]==something) button[i].image = someImage; else button[i].image = antoherImage; } } </code></pre> http://stackoverflow.com/questions/1711696/design-principle-is-there-ever-a-reason-to-turn-tabstop-off 1 Design Principle: Is there ever a reason to turn TabStop off? Jrud 2009-11-10T22:28:59Z 2009-11-17T16:47:18Z <p>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 to their mouse a lot.</p> <p>This property simply toggles the ability for the control to receive focus when the user hits the tab button to iterate through the tab order.</p> <p>I've heard many developers talk about whether or not every field should be in the tab order. Here are some of the arguments I've heard on either side: </p> <p>Always On:</p> <ol> <li>Turning off the tab order to a button forces the user to take his hands off the </li> <li>keyboard to click it which slows down your flow.</li> <li>Microsoft defaults it to true for a reason.</li> <li>Disabled/hidden buttons don't get focus anyway.</li> </ol> <p>Sometimes Off:</p> <ol> <li>Cancel buttons and delete buttons should be outside the tab order to avoid accidental execution.</li> <li>Yes its out of the tab order, but you should set a mnemonic so you can still access it with the keyboard.</li> </ol> <p>My question revolves around good design principles:</p> <ol> <li>Is there ever a good reason to turn TabStop off for a Command button?</li> <li>Is there ever a good reason to turn TabStop off for an input field?</li> </ol> <p>If you would say yes to either of these, do you know of any well-known program examples? such as Windows Media player? or somewhere in the control panel or something as an example of a field/button without a tab order?</p> http://stackoverflow.com/questions/1745227/switching-from-mdi-to-sdi-and-back-again 0 Switching from MDI to SDI and Back Again Mike Hofer 2009-11-16T22:20:51Z 2009-11-17T16:44:06Z <p>This sounds like it would be a simple task, but I'm running into some issues.</p> <p>I have some fairly straightforward code for my C# application:</p> <pre><code> private void SwitchToSdi() { MainWindow mainWindow = GetMainWindow(); for (int index = mainWindow.MdiChildren.Length - 1; index &gt;= 0; index--) { Form form = mainWindow.MdiChildren[index]; if (!(form is MainWindow)) { form.Visible = false; form.MdiParent = null; form.Visible = true; mainWindow.MdiChildren[index] = null; } } mainWindow.IsMdiContainer = false; } </code></pre> <p>And then, </p> <pre><code> private void SwitchToMdi() { MainWindow mainWindow = GetMainWindow(); mainWindow.IsMdiContainer = true; for (int index = Application.OpenForms.Count - 1; index &gt;= 0; index--) { Form form = Application.OpenForms[index]; if (!(form is MainWindow)) { form.Visible = false; form.MdiParent = mainWindow; form.Visible = true; } } } </code></pre> <p>Note that MainWindow is an MDI parent window, with its IsMdiContainer property set to True.</p> <p>The user can toggle between MDI and SDI in the Options dialog. That much works beautifully. If I switch to SDI, the new windows open up OUTSIDE the main window, which is great. Similarly, if I switch to MDI, they open up inside the container. </p> <p>However, I've noticed a few things.</p> <ol> <li><p>Open MDI child windows don't become SDI windows as I would have expected them to. </p></li> <li><p>Open SDI windows don't become MDI child windows as I would have expected them to.</p></li> <li><p>Even after I set IsMdiContainer to true in the call to SwitchToMdi(), if I try to open a new window, I get an exception that tells me that the main window isn't an MDI container. o_O</p></li> </ol> <p>Someone please throw me a bone here. This shouldn't be rocket science. But I'm not finding a whole lot of useful help out there on the Intarwebs (read: g00gle is fairly useless).</p> <p>Has anyone actually implemented this behavior in .NET before? How did you achieve it? What am I missing here? Halp! </p> http://stackoverflow.com/questions/1591731/whats-the-best-size-for-toolbar-icons 1 What's the best size for toolbar icons? issy 2009-10-19T23:38:35Z 2009-11-17T03:09:52Z <p>Windows *.ico files and Mac *.icns files contain multiple size icons. A lot of the icons you can buy also come in various sizes. But, as far as I'm aware, most implementations of toolbars set the size that's displayed. Are there any guidelines as to the best size to use on different platforms?</p> http://stackoverflow.com/questions/1081381/iphone-hide-uitableview-search-bar-by-default 2 iPhone: Hide UITableView search bar by default Tim 2009-07-04T02:45:23Z 2009-11-17T00:05:50Z <p>I used the Interface Builder to create a table view, to which I added the library's Search Bar and Search Display Controller to add search functionality. However, IB set it up so that the bar is visible at the top of the screen when the view is first displayed.</p> <p>I'd like to know how to have the search bar be hidden by default but still scrollable with the table view (see Apple's Mail application for an example). I've tried calling <code>scrollRectToVisible:animated:</code> in <code>viewDidLoad</code> to scroll the table view down, but to no avail. What's the preferred way of hiding the search bar by default?</p> http://stackoverflow.com/questions/1741061/what-is-the-rationale-behind-most-recent-order-for-tab-switching -1 What is the rationale behind Most-Recent-Order for tab switching? dreikanter 2009-11-16T09:32:04Z 2009-11-16T19:28:22Z <p>I can't understand the reasoning behind Most-Recent-Order (how Windows sorts windows when switching via <kbd>Alt</kbd>+<kbd>Tab</kbd>) when used for tab/window/document/task switching. The way Firefox does tab switching (tabs stay in a consistent order, <kbd>Ctrl</kbd>+<kbd>Tab</kbd>/<kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>Tab</kbd> for moving to the next/previous tab) seems much more natural than switching in chronological order.</p> <p>When there are more than ~5 tabs or windows, I quickly forget the chronological order in which they were opened. So the sequence of switching between them becomes difficult to predict. Even if I remember which tab was active before the current one, and which one was active prior to <em>that</em>, it just takes a lot of key strokes to switch to these. More than if I could simply use direct order as in Firefox or Chrome.</p> <ol> <li>Is there any rational reason to use MRO in an application apart from backward compatibility (for users accustomed to the old hotkeys and usage patterns)? </li> <li>Why is it still used in Windows for <kbd>Alt</kbd>+<kbd>Tab</kbd> switching between applications?</li> </ol> http://stackoverflow.com/questions/1741605/show-a-form-on-all-worksheets-in-an-excel-file 0 Show a form on all worksheets in an Excel file espais 2009-11-16T11:29:35Z 2009-11-16T12:47:56Z <p>I am writing a little generator script (using Excel VBA) to generate a bunch of source code, given various input from users.</p> <p>Currently I have one 'generator control' worksheet that provides access to the generation scripting tools. Here there is a button that pops up a little form with various generation options.</p> <p>Each portion of source code also gets its own worksheet for generation purposes. So, I essentially have one worksheet for generation commands and perhaps 10-20 that are for source code parameters.</p> <p>What I would like to do is somehow take my popup form and embed it within each other worksheet...make it 'always visible' in the corner or something like that. </p> <p>Each source code worksheet is generated programmatically as well...I'd assume that I could replicate my popup button for each worksheet, but I'd rather have this form always visible.</p> <p>Is something like this possible?</p> http://stackoverflow.com/questions/1739363/is-there-a-standard-way-to-allow-the-user-to-select-a-text-viewer 2 Is There A Standard Way To Allow The User To Select A Text Viewer? lkessler 2009-11-15T23:57:37Z 2009-11-16T00:28:40Z <p>In my Windows desktop program, I want to be able to allow the user to select a text viewer that my program will use.</p> <p>By default, I'll have it set to be the program (s)he uses to view .TXT files, and I can find that easily enough from the Registry. But he may want to change to use Notepad or Wordpad or some other program (e.g. UltraEdit).</p> <p>This is what I came up with for the dialog box:</p> <p><img src="http://www.beholdgenealogy.com/img/fileviewerselection.jpg" alt="File Viewer Selection Dialog Box"></p> <p>Actually I have a two questions here:</p> <ol> <li><p>Is there a recommended user interface for this (i.e. some sort of dialog I should use)?</p></li> <li><p>Is there a simple way to check, once the user enters a program executable, that it is indeed capable of text viewing? </p></li> </ol>