active questions tagged annoyance - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T04:11:27Zhttp://stackoverflow.com/feeds/tag/annoyancehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1017861/how-can-i-stop-my-visual-studio-from-launching-ie8-twice-when-i-click-start-with4How can I stop my Visual Studio from launching IE8 TWICE when I click "Start Without Debugging" (Ctrl-F5)?BasicallyMoney.com2009-06-19T13:03:06Z2009-11-26T11:19:24Z
<p>I use Visual Studio 2008 primarily for web development, and there's one annoying behaviour which seems to have occurred ever since I upgraded to IE8 on my work PC:</p>
<p>When I set a start page for a web site or web application project, and then either click the "Start Without Debugging" icon in the toolbar or use the keyboard shortcut CTRL-F5, Visual Studio proceeds to start IE8 (my default web browser), but does so <b>twice</b>:</p>
<p>The first new window that IE8 opens has a tab saying "Connecting...", and it loads the about:blank page. Then, another new IE8 window opens also with a tab saying "Connecting...", and loads the start page I set in my project.</p>
<p>This is <strong>very</strong> annoying. Does anybody have any ideas what might be causing this and how to fix it?</p>
<p>Before somebody suggests it, I have <i>already</i> been working around this for a while by having Firefox as my default browser ;-) But, I'd like to use Visual Studio's javascript debugging capabilities with IE8 and so want IE8 as my default again, for now.</p>
<p><hr />
<strong>Additional information:</strong></p>
<p>Using Process Explorer, I can see that both of the <strong>iexplore.exe</strong> processes were launched by the same parent process, Visual Studio 2008's <strong>devenv.exe</strong>.</p>
<p>The first iexplore.exe process has the following command line:</p>
<p><pre>"C:\Program Files\Internet Explorer\IEXPLORE.EXE" -noframemerging -debug about:blank</pre></p>
<p>The second iexplore.exe process, launched a few seconds later, has the following command line:</p>
<p><pre>"C:\Program Files\Internet Explorer\IEXPLORE.EXE" -noframemerging -suspended -debug <a href="http://localhost/test/index.html" rel="nofollow">http://localhost/test/index.html</a></pre></p>
<p>Then, I also tried Process Monitor. In the log, I can see <strong>two</strong> distinct "Process Create" events from devenv.exe on "C:\Program Files\Internet Explorer\IEXPLORE.EXE" ... a few seconds apart.</p>
<p>Interestingly, if I try the exact same thing (launch without debugging) with Visual Studio 2005 (instead of 2008), I only see a single process
created with a command line of:</p>
<p><pre>"C:\Program Files\Internet Explorer\IEXPLORE.EXE" about:blank</pre></p>
<p>With 2005, visually it appears as if about:blank gets loaded first, and then the URL gets loaded by that same browser process in the same tab as about:blank, overwriting it.</p>
<p>One other thing I notice different: In the VS2005 Process Monitor log, it shows a lot of reading of the file "C:\WINDOWS\system32\ieframe.dll", but the same doesn't show in the VS2008 Process Monitor log. (ieframe.dll contains the type library for some COM objects related to Internet Explorer.) So, the way VS2005 launches and controls IE could be different than what VS2008 does.</p>
<p><strong>AND LAST</strong>, this is weird: In VS2008, if I click "Start Without Debugging", I get the two windows. But, if in Solution Explorer I instead <em>right-click</em> my web site project or any HTML file in it and choose "View in Browser", I get only the single window. Why the difference between "Start Without Debugging" and "View in Browser"?</p>
http://stackoverflow.com/questions/1773366/r-an-na-in-subsetting-a-data-frame-does-something-stupid3R: an NA in subsetting a data.frame does something stupidCraig Schmidt2009-11-20T21:31:12Z2009-11-20T22:52:16Z
<p>I do find R to be a very frustrating language. It seems to excel on data-dependent bugs. Consider the following code. When you don't explicitly test for NA in your condition, that code will fail at some later date then your data changes.</p>
<pre><code>> # A toy example
> a <- as.data.frame(cbind(col1=c(1,2,3,4),col2=c(2,NA,2,3),col3=c(1,2,3,4),col4=c(4,3,2,1)))
> a
col1 col2 col3 col4
1 1 2 1 4
2 2 NA 2 3
3 3 2 3 2
4 4 3 4 1
>
> # Bummer, there's an NA in my condition
> a$col2==2
[1] TRUE NA TRUE FALSE
>
> # Why is this a good thing to do?
> # It NA'd the whole row, and kept it
> a[a$col2==2,]
col1 col2 col3 col4
1 1 2 1 4
NA NA NA NA NA
3 3 2 3 2
>
> # Yes, this is the right way to do it
> a[!is.na(a$col2) & a$col2==2,]
col1 col2 col3 col4
1 1 2 1 4
3 3 2 3 2
>
> # Subset seems designed to avoid this problem
> subset(a, col2 == 2)
col1 col2 col3 col4
1 1 2 1 4
3 3 2 3 2
</code></pre>
<p>Can someone explain why the behavior you get without the is.na check would ever by good or useful?</p>
http://stackoverflow.com/questions/1764590/events-tab-randomly-appears-and-disappears-in-vs-20080Events tab randomly appears and disappears in VS 2008earlz2009-11-19T16:25:46Z2009-11-19T16:29:51Z
<p>I know it's a minor annoyance.. but it's still an annoyance and it baffles me.. About 3 months ago I was using VS 2008 and when I went to the "Properties" tab there was the little lightning bolt for events(in design mode). Then it suddenly went away.. about a week later I discovered that if I didn't have the properties tab "stickied", then the events thing would be there, but not when its stickied. </p>
<p>This morning all of this was working fine. Now today I went to add an event, and suddenly the little lightning bolt icon is no longer there. I can not see any option disabling and it disappeared without me doing any reconfiguration.. Even without restarting VS. And I have tried restarting VS to no avail..</p>
<p>What am I missing here? Is this a highly annoying bug in VS 2008(its up to date) or am I missing some configuration? </p>
http://stackoverflow.com/questions/1499239/database-vs-flat-text-file-what-are-some-technical-reasons-for-choosing-one-over5Database vs Flat Text File: What are some technical reasons for choosing one over another when performance isn't an issue?Seamus2009-09-30T16:26:19Z2009-11-05T19:28:20Z
<p>Hello All,</p>
<p>I am having a problem in one of the teams that I am working in. One of the guys is a bit SQL happy in my opinion and wants to store the log information generated by a small python FTP downloader into a database, instead of just a nice formatted text file. Now its always been my opinion that a database should only be used if it speeds things up, or provides a more reliable interface to the data. What are your opinions?</p>
<p>Thanks!</p>
<p>Edit: In this particular instance, the data will grow about 100 lines per day and be processed once and thrown away. Although this case is of immediate concern, I am more interested in a general answer.</p>
<p>Edit 2: Thanks for all of your responses! I have marked the answer with the most up votes as the answer because I feel that it succinctly states most of the points you all have made, but I will watch and see if something else comes up.</p>
http://stackoverflow.com/questions/1670547/any-way-to-avoid-using-anonymous-functions-in-jquery0Any way to avoid using anonymous functions in jQuery?Rob2009-11-03T22:27:28Z2009-11-04T19:59:32Z
<p>If I have a chunk of code like this:</p>
<pre><code>.hover(
function () {
hoverState($("#navbar a").index(this),1);
},
function () {
hoverState($("#navbar a").index(this),-1);
});
</code></pre>
<p>Is there any way to get rid of the anonymous functions and just say:</p>
<pre><code>.hover(
hoverState($("#navbar a").index(this),1),
hoverState($("#navbar a").index(this),-1);
);
</code></pre>
http://stackoverflow.com/questions/828804/how-to-get-visual-studio-to-remember-javascript-settings2How to get Visual Studio to remember javascript settingsAndy2009-05-06T09:26:53Z2009-11-04T11:26:57Z
<p>Visual Studio 2008 is doing something that really frustrates me. I open a javascript file and start editing my code and it places the opening brace on the same line rather than on a new line. So I go to the text editor options and tick the boxes to put the braces on a new line and all is fine until the next day when I open a js file and it puts the braces on the same line again! Grrrrr :-(</p>
<p>Does anyone know how to get Visual Studio to remember the settings so I don't have to change them all the time?</p>
http://stackoverflow.com/questions/1580179/proliferation-of-rocket-tray-icons0proliferation of rocket tray iconsJoelFan2009-10-16T20:14:08Z2009-10-16T20:14:08Z
<p>Each time I run a test using TestDriven, it creates another "rocket" icon on my system tray. I have to manually do right-click Quit to get rid of them. How can I avoid this?</p>
http://stackoverflow.com/questions/167580/is-there-a-way-to-prevent-the-vb6-compiler-from-shuffling-the-contents-of-files4Is there a way to prevent the VB6 compiler from shuffling the contents of files?raven2008-10-03T16:01:16Z2009-10-16T12:13:56Z
<p>For reasons unknown, the VB6 compiler often likes to reorder the contents of .vbp files and the control descriptor block at the top of .frm files (The code that describes the properties of controls on the form. Code that you don't see in the IDE but you do see in a text editor and <em>when doing diffs against the previous revision in version control</em>.). This is monumentally annoying and very distracting when comparing revisions of a file.</p>
<p>Is there a way to prevent this?</p>
http://stackoverflow.com/questions/593048/what-causes-the-system-web-httpexception-with-error-code-0x80070057-on-page-flush1What causes the System.Web.HttpException with error code 0x80070057 on Page.Flush while debugging in VS2005?Ishmael2009-02-27T00:04:30Z2009-10-12T20:09:48Z
<p>Here is the complete error message:</p>
<blockquote>
<p>An exception of type
'System.Web.HttpException' occurred in
System.Web.dll but was not handled in
user code</p>
<p>Additional information: The remote
host closed the connection. The error
code is 0x80070057.</p>
</blockquote>
<p>and the offending code:</p>
<pre><code> char[] buffer = oPage.HTML.HTML.ToCharArray();
Page.Response.Write(buffer, 0, buffer.Length);
Page.Response.Flush();
Page.Response.End();
</code></pre>
<p>The oPage.HTML.HTML is a string in a custom page object used by our app. The exception triggers on Page.Flush() and appears to be benign -- I just hit "continue" and everything goes along fine. This never appears at run time.</p>
<p>I have chased many, many Google hits down many rabbit holes and have found nothing. Visual Studio 2005, Vista Ultimate (IIS7).</p>
http://stackoverflow.com/questions/499565/is-it-possible-to-disable-ie8-accelerators-on-my-website3Is it possible to disable IE8 "accelerators" on my website?Dan2009-01-31T21:04:55Z2009-09-08T19:08:04Z
<p>I'm a web developer focused on UI.</p>
<p>Many interface features in my web application are based on double-clicking.</p>
<p>In IE, this brings up that new annoying <strong>"accelerators" icon which interferes with my user interface</strong>. Is it possible to disable "accelerators" on my pages? Maybe with some new stupid IE-specific <strong>meta tag</strong>?</p>
http://stackoverflow.com/questions/1080719/screenshot-an-application-in-python-regardless-of-whats-in-front-of-it1screenshot an application in python, regardless of what's in front of itbibbedy2009-07-03T20:22:58Z2009-08-13T05:03:47Z
<p>So I can use PIL to grab a screenshot of the desktop, and then use pywin32 to get its rectangle and crop out the part I want. However, if there's something in front of the window I want, it'll occlude the application I wanted a screenshot of. Is there any way to get what windows would say an application is currently displaying? It has that data somewhere, even when other windows are in front of it.</p>
http://stackoverflow.com/questions/890926/what-simple-problem-have-you-seen-addressed-in-an-unnecessarily-complicated-manne3What simple problem have you seen addressed in an unnecessarily complicated manner?Steve Dignan2009-05-21T00:38:47Z2009-08-05T18:31:05Z
<p>Today, I was reviewing some code a coworker had written recently. The following statement seemed to jump off the screen at me.</p>
<pre><code>string defaultValue = (1000).ToString();
</code></pre>
<p>And this has prompted me to ask the question...</p>
<p><strong>What simple problem have you seen addressed in an unnecessarily complicated manner?</strong></p>
http://stackoverflow.com/questions/1096824/how-to-prevent-visual-studio-from-compiling-solution-after-i-exit-debug-mode1How to prevent Visual Studio from compiling solution after I exit debug mode?o_o2009-07-08T08:32:27Z2009-08-05T08:39:36Z
<p>Visual Studio builds the entire solution when I exit debug mode.</p>
<p>This is very annoying as the solution contains 42 projects (ASP.NET MVC, IIS hosted WCF, Silverlight apps and others) and the build process locks Visual Studio for aprox. 30 seconds.</p>
<p>What causes Visual Studio to do a full rebuild of the solution? Is there a setting that I can turn on to determine the root of the problem?</p>
http://stackoverflow.com/questions/1204467/excel-2007-visual-basic-editor-eats-spaces-throws-cursor-around1Excel 2007 Visual Basic Editor: eats spaces, throws cursor aroundVincent2009-07-30T04:35:55Z2009-07-30T08:24:39Z
<p>I can't resolve this issue, I found a similar question <a href="http://stackoverflow.com/questions/1164138/vba-editor-auto-deletes-spaces-at-the-ends-of-lines">here</a> but:</p>
<ul>
<li>setting the workbook to Manual calculation (alt-m-x-m or alt-t-o>formulas) didn't work</li>
<li>Setting editor options to disable: Auto syntax check & Background compile didn't work</li>
</ul>
<p>anybody have any idea how to fix this very annoying behaviour, I'm used to quickly pop up VBA (alt-f11), f7 to get into code and write some quick procedures there... and it's hard to get out of that habit, I don't want to write any office extension to just add a single quote to every cell in the range</p>
<pre><code>For Each rg In Selection
rg = chr(39) & rg.value
Next
</code></pre>
<p>F5, done...</p>
http://stackoverflow.com/questions/1121474/should-loading-startup-dialogs-be-locked-on-top1Should loading/startup dialogs be locked on top?CSharperWithJava2009-07-13T19:09:13Z2009-07-13T19:42:42Z
<h3>Introduction</h3>
<p>I have been so annoyed by applications that have a startup dialog which is Always on Top configured.</p>
<p>By start dialog I mean the annoying box that tells you what program you just opened (and probably opened on purpose so useless information), who the program is registered to (most likely you, more uselessness), and some other random application specific information. Some have loading bars that indicate startup progress, but otherwise they seem basically useless except to show that your program is actually starting (to prevent the user from opening 5 instances during the loading process because they think it's not open yet).</p>
<p>The worst though is when this useless information is displayed over all the useful browsers and documents that I may be working on at the time, making me wait until the application is loaded before I can effectively work on something else again.
Most apps have the sense not to do this, but some still continue the practice.</p>
<p>Now that I'm done ranting...</p>
<p><hr /></p>
<h3>My Question(s)</h3>
<p>My question is..Why?</p>
<p>What is the point of all this?<br />
Why does/did anyone ever do this?<br />
What was the reasoning behind it?<br />
Is anyone else annoyed by this?<br />
Is there any benefit to the end user or developer to use this technique?<br />
Should I ever use a startup dialog like this and when?<br />
Anyone else have other comments/rants/suggestions to share with the community?</p>
http://stackoverflow.com/questions/1073384/what-strategies-have-you-used-to-improve-build-times-on-large-projects9 What strategies have you used to improve build times on large projects?rikh2009-07-02T09:26:09Z2009-07-09T12:50:24Z
<p>I once worked on a C++ project that took about an hour and a half for a full rebuild. Small edit, build, test cycles took about 5 to 10 minutes. It was an unproductive nightmare.</p>
<p>What is the worst build times you ever had to handle? </p>
<p>What strategies have you used to improve build times on large projects?</p>
<p><strong>Update:</strong></p>
<p>How much do you think the language used is to blame for the problem? I think C++ is prone to massive dependencies on large projects, which often means even simple changes to the source code can result in a massive rebuild. Which language do you think copes with large project dependency issues best?</p>
http://stackoverflow.com/questions/982316/unable-to-apply-publish-properties0Unable to apply publish properties?jasonh2009-06-11T16:57:43Z2009-06-13T04:35:34Z
<p>I don't know what caused VS to start thinking it needs to publish my project, but now whenever I build it, I get several "Unable to apply publish properties for item 'blah'" warnings. How do I stop VS 2005's publishing facilities from working on my project completely? I use InstallShield so I have no use for VS's publishing system.</p>
http://stackoverflow.com/questions/891131/how-to-avoid-the-mailto-annoyance1How to avoid the mailto annoyance?Lucas McCoy2009-05-21T02:16:21Z2009-05-23T10:19:21Z
<p>I am working on a website and would like for my users to be able to give feedback as easily as possible. I know one way but I've always hated it:</p>
<pre><code><a href="mailto:someone@somewhere.com">Click Here to be annoyed!</a>
</code></pre>
<p>Is there a way in JavaScript or HTML to allow my users to email me without having to go through a lot of trouble? </p>
http://stackoverflow.com/questions/870874/bizarre-behavior-of-src-attribute-on-img-element-in-vs2008-inserting-a-characte0Bizarre Behavior of src attribute on img element in VS2008 inserting [A] charactersdan902662009-05-15T21:05:54Z2009-05-16T16:07:07Z
<p>With VS2008 SP1 I have a line of code like this in an aspx file:</p>
<pre><code><img src='http://spiurl.appspot.com/<%#DataBinder.Eval(Container.DataItem, "UserName") %>' style='border:0; cursor:pointer;'/>
</code></pre>
<p>This works perfectly. However, if I switch to "Design" mode in the IDE and then back to "Source" mode the characters <strong>[A]</strong> are magically/infuriatingly inserted into the beginning of the src attribute and I end up with:</p>
<pre><code><img src='[A]http://spiurl.appspot.com/<%#DataBinder.Eval(Container.DataItem, "UserName") %>' style='border:0; cursor:pointer;'/>
</code></pre>
<p>...which of course is broken. Has anyone else seen this annoyance before? Do you have a solution?</p>
<p>Update: Actually it appears that this happens on every attempt to save the file.</p>
http://stackoverflow.com/questions/727019/force-excel-to-stop-applying-auto-corrections-to-csv-import-data0force excel to stop applying "auto-corrections" to csv import datadreftymac2009-04-07T18:28:52Z2009-05-01T05:40:25Z
<p><strong>NOTE:</strong> this question is <em>almost</em> a dupe of:</p>
<p><a href="http://stackoverflow.com/questions/284092/stop-ms-excel-auto-formatting-numeric-strings-as-numbers">http://stackoverflow.com/questions/284092/stop-ms-excel-auto-formatting-numeric-strings-as-numbers</a></p>
<p>I say "almost" because this specific question was not asked ...</p>
<p><strong>Question:</strong>
Is there a way to <strong>attach a "schema" to a CSV file</strong>, prior to Excel import, that allows Excel to understand the correct formatting of the CSV file <em>without</em> requiring post-processing of the CSV file and without requiring end-user intervention in order to correctly format the fields by hand?</p>
<p>By schema, I mean any method whatsoever of generating a text-based definition that can be saved somewhere on Customer X's machine and then referenced whenever the usual CSV import has to take place, including but not limited to XSD, VBMacro, or whatever conventions Excel has for this kind of operation (if any).</p>
<p><strong>Background:</strong>
Excel has a habit of being "helpful" by modifying input data when opened from plain-text such as a CSV file.</p>
<p>For an example of what is meant by this, see any of the various following links:</p>
<pre><code> http://ask.metafilter.com/28449/Preventing-Excel-applying-time-formatting-to-imported-data
http://excel.tips.net/Pages/T002588_Handling_Leading_Zeros_in_CSV_Files.html
http://social.msdn.microsoft.com/Forums/en-US/isvvba/thread/aae07b39-865f-4c68-a07f-7cad2dfd6733
http://social.msdn.microsoft.com/forums/en-US/vsto/thread/80285088-b476-418f-9613-a2c499c8da7b/
</code></pre>
<p>We regularly have to send CSV files to customer X and we do not have the luxury of modifying the CSV files directly in order to "morph" them into a format that Excel will render exactly as intended.</p>
<p>Moreover, customer X does not always have the personnel who are trained with Excel in order to do the import correctly.</p>
http://stackoverflow.com/questions/643050/what-language-decision-in-c-annoys-you5What language decision in C# annoys you?Steve2009-03-13T14:50:39Z2009-04-30T16:51:59Z
<p>I was just dealing with strings, and I find myself annoyed that strings can be nullable. So, I have to have </p>
<pre><code>if((teststring??string.Empty)==string.Empty)
</code></pre>
<p>all over the place. Would string? have been so hard for allowing nullability in the relatively few cases where it is needed (dbs, idiot user inputs, etc.). I also find myself irritated with having to export readonly interfaces in the cases where I want some form of const correctness. So, what C# language construct/decision annoys you?</p>
<p>EDIT: Thanks for the isnullorempty function, I hadn't seen that before! Still doesn't lessen my annoyance at it being nullable :D</p>
http://stackoverflow.com/questions/805084/is-phpdoc-verbosity-more-trouble-than-its-worth2Is PHPDoc verbosity more trouble than it's worth?rooskie2009-04-30T01:58:38Z2009-04-30T02:37:39Z
<p>I tried using PHPDoc for the first time today and quickly ran into a problem.</p>
<p>For every 1 line of variable declarations, I had at least 5 lines of comments. Example:</p>
<pre><code>/**
* Holds path the remote server
* @name ...
* @global ...
*/
$myvar = ...
</code></pre>
<p>Of course, the payoffs are nice - but this turns a 10-line config file into a 60-line file. Takes me forever to fill out, and I'm not yet convinced it adds that much over a simple one-liner. </p>
<p>It also throws a kink in my workflow. All is fine and good until I need to make sweeping changes. With my well-documented doc-blocks, all of a sudden I no longer have to refactor my code, but I need to re-write all these tedious details. Wait til the end you say? HAH! Then documentation will never happen.</p>
<p>On top of it all - it forces me into C-style /**/ comments in the middle of my code. This drives me crazy during development since it strips the ability to comment out large blocks on demand. Now to comment out a a large block of code, I need to pull something like :range,s/^/#/ ; then undo it later. Annoying!</p>
<p>Long story short - I like PHPDoc, I love well documented code - but 5 lines of comments for every one line of code is <em>far too much!</em>. Are there features I'm missing? Is this a common problem?</p>
http://stackoverflow.com/questions/88343/how-to-get-intellisense-on-error-marked-code-in-visual-studio-20050How to get Intellisense on error-marked code in Visual Studio 2005?André Neves2008-09-17T22:29:17Z2009-03-23T09:23:57Z
<p>When I try to compile code on VS 2005 and it fails, the line which causes the error gets underlined blue, and mouse-hovering over it displays the error message. Fine, but you can't see object types or whatever, because Intellisense will show the error message, and not object info.</p>
<p>In this image, I wanted to see what type <code>DateTime.Subtract()</code> returns, but VS insists on showing the error message:</p>
<p><img src="http://img502.imageshack.us/img502/6962/vs2005errordl7.png" alt="alt text" /></p>
<p>Does anyone know how to get the error message out of the way, <strong>once you've got enough of it</strong>?</p>
http://stackoverflow.com/questions/9601/visual-studio-2008-window-layout-annoyance2Visual Studio 2008 Window layout annoyanceDave Beer2008-08-13T09:24:10Z2009-03-02T21:26:12Z
<p>I'm having a weird issue with Visual Studio 2008. Every time I fire it up, the solution explorer is about an inch wide. It's like it can't remember it's layout settings.</p>
<p>Every un-docked window is in the position I place it. But if I dock a window, it's position is saved, but it's size will be reset to very-narrow (around an inch) when I load.</p>
<p>I've never come across this before and it's pretty annoying. Any ideas?</p>
<p>The things I've tried:</p>
<ul>
<li>Saving, then reloading settings via Import/Export.</li>
<li>Resetting all environment settings via Import/Export.</li>
<li>Window -> Reset Window layout.</li>
<li>Comination of rebooting after changing the above.</li>
<li>Installed SP1. No improvement</li>
</ul>
<p>none of which changed the behaviour of docked windows. (Also, definitely no other instances running..)</p>
<p>I do run two monitors, but I've had this setup on three different workstations and this is the first time I've come across it.</p>
http://stackoverflow.com/questions/549810/control-r-reverse-i-search-in-cygwin-bash-how-do-you-reset-the-search2Control-r reverse-i-search in Cygwin bash: how do you "reset" the search?dreftymac2009-02-14T21:12:13Z2009-02-14T22:03:19Z
<p><strong>Question:</strong> How do you tell ctrl-r reverse-i-search to "reset itself" and start searching from the bottom of your history every time?</p>
<p><strong>Background:</strong> When using reverse-i-search in bash, I always get stuck once it is finished searching up through the history and it cannot find any more matches. Sometimes I hit escape and re-invoke ctrl-R a second time, expecting it to start a fresh new search from the bottom of my history. However the "pointer" still seems to be at the previous place it left off in my history. </p>
<p>The problem is, I usually do not want this behavior. If I hit Escape, and then re-invoke ctrl-r, I would like that to indicate it should re-start from the bottom again and work its way back up.</p>
<p><strong>Update:</strong> I guess I should have mentioned I am using Cygwin on windows, as none of the so-far mentioned solutions work.</p>
http://stackoverflow.com/questions/338703/what-is-your-method-of-folksonomy-tagging-for-files-on-your-local-machine3What is your method of "folksonomy" tagging for files on your local machine?dreftymac2008-12-03T21:11:57Z2009-01-27T17:34:28Z
<p>Way back in the days when "delicious" was just "del.icio.us", I had assumed that everyone had finally caught on that <a href="http://www.shirky.com/writings/ontology_overrated.html" rel="nofollow">Ontology is overrated</a>. </p>
<p>So why am I still having to roll my own tagging system using sqlite and a bunch of ruby scripts in order to address this obvious deficiency on my own local machine? I can tag on-line web links, blog posts, questions on stackoverflow.com, and all kinds of web-centric miscellany, but this very basic concept still seems to be missing (or hideously crippled) in the few operating systems I get to use. Perhaps I am just using the wrong OSs?</p>
<p>From what I've seen out there, the pickins' seem pretty slim.</p>
<p>What do you use?</p>
http://stackoverflow.com/questions/472104/visual-studio-2008-dumb-problem-with-relative-paths0Visual Studio 2008, dumb problem with relative pathsBen2009-01-23T06:46:21Z2009-01-23T07:10:40Z
<p>What's happening to me is, when I run my program out of Visual studio, it can't use relative paths to find anything.</p>
<p>This is proving difficult to articulate...</p>
<p>Like, I've got program X, which opens textfile.txt, right? And if I point to textfile.txt with an absolute path, I'm fine. And if I point to it with a relative path and I compile program X, then run it directly (ie, by double-clicking programX.exe in the debug folder), I'm also fine. But, if I use a relative path and run the program out of visual studio (ie, by pressing f5), then it can't find the file.</p>
<p>Anyone know what's happening? Alternatively, can anyone suggest some decent keywords that don't collide squarely with other newbie Visual Studio issues?</p>
<p>Ben</p>
http://stackoverflow.com/questions/160639/integrated-help-merged-help-indexes2Integrated Help - Merged Help IndexesRob Sanders2008-10-02T02:33:48Z2008-10-14T12:15:59Z
<p>If anyone has had more than a couple of Microsoft tools or products installed (or a local install of the MSDN library) side by side, you might have noticed that opening help (hitting F1) or opening, say, SQL Server Books Online causes the help indexes to be re-indexed - this is usually after installing a new product or tool.</p>
<p>This can be a really, really time consuming exercise! </p>
<p>Does anyone know a way to prevent or opt out having combined help indexes?<br />
At best, even just preventing the reindexing at all?</p>
http://stackoverflow.com/questions/60076/sql-error-ole-interop1SQL Error OLE.INTEROPRyan Lanciaux2008-09-12T22:12:43Z2008-09-24T14:55:46Z
<p>I'm getting an error whenever I load Management Studio or open a folder in the server explorer, etc. Additionally, If I try to create a new database it constantly is updating and does not finish. I have attached a screenshot of the error. Please let me know what I can do to fix this because it's really aggravating.</p>
<p><img src="http://frickinsweet.com/databaseError.gif" alt="Error Screen" /> </p>
http://stackoverflow.com/questions/122468/how-do-i-configure-a-project-to-use-latest-derby-db-version-10-40How do I configure a project to use latest Derby DB version (10.4)?ramayac2008-09-23T17:30:03Z2008-09-23T20:58:41Z
<p>Every time I try to run a small application that uses a Derby DB I get this error message:</p>
<blockquote>
<p><strong>Message: Database at /path/to/db/TheDB has an incompatible format with the current version of the software. The database was created by or upgraded by version 10.4.</strong></p>
</blockquote>
<p>I've added the library from Netbeans, and still have the same problem.<br />
I'm not sure what to do here.</p>