User Neil N - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T10:29:17Z http://stackoverflow.com/feeds/user/55164 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1930936/tips-for-finding-things-in-your-program-that-are-broken-that-you-dont-know-about/1930995#1930995 1 Answer by Neil N for Tips for finding things in your program that are broken that you don't know about? Neil N 2009-12-18T22:16:50Z 2009-12-18T22:16:50Z <p>For an app to fail usability, it has to have a defined set of expected behaviors.</p> <p>"Is this textbox SUPPOSED to do nothing when the enter key is pressed?" Maybe it is, maybe it isn't. Ive seen apps where a tester/reviewer reports something that they ASSUME should work another way, when in actuality the client specifically asked that they DON'T want the form submitted on a return key press, but only a submit button click.</p> <p>So basically you have to define proper behaviour before you can determine incorrect behavior.</p> http://stackoverflow.com/questions/1930421/seamless-transitions-of-scale-over-large-distances-3d-rendering/1930898#1930898 0 Answer by Neil N for Seamless Transitions of Scale over large distances (3D rendering) Neil N 2009-12-18T21:56:14Z 2009-12-18T21:56:14Z <p>Might be worth looking into the tech behind <a href="http://msdn.microsoft.com/en-us/library/cc645050%28VS.95%29.aspx" rel="nofollow">Bing Maps Deep Zoom</a></p> <p>Similar tech is used by Google Earth, which lets you go form Planet view all the way down to street view pretty smoothly. There is obviously a lot of resolution swapping going on as you zoom in and out.</p> http://stackoverflow.com/questions/1924449/create-c-applications-which-are-not-framework-dependant/1924496#1924496 2 Answer by Neil N for Create C# applications which are not framework dependant? Neil N 2009-12-17T20:49:21Z 2009-12-17T20:49:21Z <p>If you want to do that, your best bet is to switch to Mono. Mono has a linker.</p> http://stackoverflow.com/questions/1924099/what-is-the-meaning-of-the-variable-name-foo/1924113#1924113 6 Answer by Neil N for What is the meaning of the variable name foo? Neil N 2009-12-17T19:48:10Z 2009-12-17T19:48:10Z <p>It's meaningless, and thats kind of the point.</p> <p>Its used for demonstration purposes, when the variable itself is not important, so that you can focus on the method it is used.</p> <p>I would recomend NOT using a meaningless name for a variable in actual code.</p> http://stackoverflow.com/questions/1923334/red-green-light-indicators-in-c-net-form/1923347#1923347 2 Answer by Neil N for Red-Green light indicators in C# .NET Form Neil N 2009-12-17T17:35:03Z 2009-12-17T17:35:03Z <p>I would just make a panel or PictureBox and set the Background image to that of a red/green light. Either make the images in PhotoShop/PaintShop/MS Paint or download some stock images off the web.</p> <p>Whenever the status changes, just swap the image out.</p> http://stackoverflow.com/questions/1919627/how-do-i-escape-strings-which-contain-byte-data-in-c/1919639#1919639 1 Answer by Neil N for How do I escape strings which contain byte data in C#? Neil N 2009-12-17T05:22:46Z 2009-12-17T05:28:01Z <p>Do you mean a Base 64 string? Usually if you see a PNG in string form, its base 64.</p> <p>If not base 64, what type of encoding? Can you give us an example of what these strings look like?</p> <p><strong>EDIT:</strong></p> <p>To convert a Base64 string to a byte array (from which you can either save it as a PNG file or open it as an Image object) do this:</p> <pre><code>byte[] filebytes = Convert.FromBase64String(yourBase64String); </code></pre> http://stackoverflow.com/questions/530396/how-to-draw-a-perspective-correct-grid-in-2d 2 How to draw a perspective correct grid in 2D Neil N 2009-02-09T22:41:03Z 2009-12-16T05:33:21Z <p>I have an application that defines a real world rectangle on an image, of course in 2D it may not be a rectangle because you are looking at it from an angle.</p> <p>The problem is, say that the rectangle needs to have grid lines drawn on it, for example it is 5x5 so I need to draw 4 lines from side 1 to side 3, and 4 lines from side 2 to side 4.</p> <p>As of right now I am breaking up each line into equidistant parts, to get the start and end point of all the grid lines. However the more of an angle the rectangle is on, the more "incorrect" these lines become, as horizontal lines further from you should be closer together.</p> <p>Does anyone know the name of the algorithm that I should be searching for?</p> <p><strong>Yes I know you can do this in 3D, however I am limited to 2D for this particular application.</strong></p> http://stackoverflow.com/questions/1905607/can-not-issue-data-manipulation-statements-with-executequery/1905615#1905615 0 Answer by Neil N for can not issue data manipulation statements with executeQuery() Neil N 2009-12-15T06:47:03Z 2009-12-15T06:47:03Z <p>ExecuteQuery expects a result set. I'm not as familiar with Java/MySQL, but to create indexes you probably want a ExecuteUpdate().</p> http://stackoverflow.com/questions/1903216/should-i-be-concerned-about-net-dictionary-speed/1903240#1903240 4 Answer by Neil N for Should I be concerned about .NET dictionary speed? Neil N 2009-12-14T20:21:27Z 2009-12-14T20:36:24Z <p>I would do a benchmark of the Dictionary, HashTable (HashSet in .NET), and perhaps a home grown class, and see which works out best under your typical usage conditions.</p> <p>Normally I would say its fine (insert StackOverflow's favorite premature ejaculation quote here), <strong>but if this is a core peice of the application, Benchmark, Benchmark, Benchmark.</strong></p> http://stackoverflow.com/questions/1902558/practical-limits-of-sql-server-database/1902579#1902579 9 Answer by Neil N for Practical limits of SQL-Server database. Neil N 2009-12-14T18:22:13Z 2009-12-14T18:51:25Z <p>Unless you're talking large as in Google's index type of large, the Enterprise databases like SQL Server or Oracle will do just fine.</p> <p><a href="http://www.codingthewheel.com/archives/are-commercial-databases-worth-it" rel="nofollow">James Devlin over at Coding the Wheel summed it up nicely</a> (though this is more of a comparison between free DB's like MySQL with Oracle/SQL Server</p> <blockquote> <p>Nowadays I like to think of SQL Server and Oracle as the Death Stars of the relational database universe. Extremely powerful. Monolithic. Brilliant. Complex almost beyond the ability of a single human mind to understand. And a monumental waste of money except in those rare situations when you actually need to destroy a planet.</p> </blockquote> <p>As far as performance goes, it all really depends on your indexing strategy. Inserts are really the bottleneck here, as the records need to be indexed as they come in, the more indexing you have, the longer inserts will take.</p> <p>In the case of something like Google's index, read up on "Big Table", it's quit interesting how Google set it up to use clusters of servers to handle searches across enormous amounts of data in mere milliseconds.</p> http://stackoverflow.com/questions/1902577/what-version-of-safari-is-the-iphone-os-using-as-of-12-14-2009/1902614#1902614 1 Answer by Neil N for what version of safari is the iphone os using? (as of 12/14/2009) Neil N 2009-12-14T18:27:37Z 2009-12-14T18:27:37Z <p>point your iPhone here to see the browser tag:</p> <p><a href="http://www.iwebtool.com/browser%5Fdetails" rel="nofollow">http://www.iwebtool.com/browser%5Fdetails</a></p> http://stackoverflow.com/questions/1889026/are-there-applications-that-can-crunch-numbers-directly/1889252#1889252 1 Answer by Neil N for Are there applications that can crunch numbers directly? Neil N 2009-12-11T16:39:52Z 2009-12-11T16:39:52Z <p>Back when the RC5-64 project was active, there was a Linux kernal that was stripped down to do a single task: run as an RC5-64 client. I think it was called K-linux. It didnt need a monitor, (and I think it didnt even need a Hard disk either, just a network connection) This is probably what I would do if i had to squeeze every last drop out of an application.</p> http://stackoverflow.com/questions/1884133/winform-control-to-list-files-in-a-directory/1884141#1884141 4 Answer by Neil N for WinForm control to list files in a directory Neil N 2009-12-10T21:25:14Z 2009-12-10T21:25:14Z <p>ListView would be the preferred control. That way you can click on each file name individually, for highlighting/copying, etc</p> <p>You would also be able to have multiple columns in detail view, and set up sorting on file size, date created, type, etc.</p> <p>Another advantage of ListView is that you can select multiple items. I use this to delete or open a group of files instead of just one at a time, very handy.</p> http://stackoverflow.com/questions/579211/graphically-template-a-net-winforms-application 6 Graphically template a .NET winforms application Neil N 2009-02-23T20:34:20Z 2009-12-10T02:57:48Z <p>I created a pretty fancy winforms app for my company. We had a graphic designer create the GUI, which was a pain to implement, all graphical buttons, lots of layered backgrounds and logos, animations, etc.</p> <p>But now my company wants to resell it under different brands. But since I <em>mostly</em> coded it well, I told my higher ups I could have a totally rebranded version done in under a week. Basically all I would do is change a bunch of settings in an xml settings file, swap out the graphics with a new set, and build.</p> <p>Problem is if they want 5 or 6 different brands, I'd have 5 different builds to support (I really should be supporting 1, with diff templates)</p> <p>The problem is its not easy (as far as I know) to swap out the images in a winforms app. I have all the graphical resources in a single folder, but once each file is entered into its respective image list or container in visual studio, the only way to get it to update is to remove it and re-add it, changing the source folder doesnt cause the embedded image to refresh. This would be incredibly tedious for each build, there has got to be an easier way.</p> <p><strong>Add On:</strong><br> So after some further investigation, I am leaning torwards some sort of resx file editor. However the ones I have seen so far are more focused on translating strings to various languages, and are either very week, or can not at all edit binary resources like bitmaps/png's. Though if you open a resx file in an xml viewer (I use notepad 2 with .resx set to use xml sytax highlighting) MS is kind enough to tell you exactly how each type is compiled (mostly variations of base 64)</p> http://stackoverflow.com/questions/1876663/how-do-i-allow-ctrl-v-paste-on-a-winforms-textbox 0 How do I allow CTRL-V (Paste) on a Winforms Textbox? Neil N 2009-12-09T20:29:02Z 2009-12-09T20:42:13Z <p>I have several textboxes on a windows form.</p> <p>I can't paste text into any of them using CTRL-V, though I can still right click and select paste. This is pretty annoying.</p> <p>I have tried this with the form's KeyPreview as both true and false. TextBox.ShortcutsEnabled is also true.</p> http://stackoverflow.com/questions/1874779/is-it-possible-to-write-a-program-that-extracts-a-specific-melody-beat-rhythm-fro/1875071#1875071 0 Answer by Neil N for Is it possible to write a program that extracts a specific melody/beat/rhythm from a specific instument from a mixed wave (or other music format) file? Neil N 2009-12-09T16:30:16Z 2009-12-09T16:30:16Z <p>Look into Karaoke machine algorithms. If they can remove voice from a song, I'm sure the same principles can be applied to extract a single instrument.</p> http://stackoverflow.com/questions/1868415/securely-transferring-users-between-web-sites/1868433#1868433 2 Answer by Neil N for Securely Transferring Users Between Web Sites Neil N 2009-12-08T17:12:39Z 2009-12-08T17:12:39Z <p>I am doing something like this. The best thing I can think of right now is passing a HASH of the user ID, or if that makes you worry, the hash of some other user data.</p> <p>If yuo want temporary keys(I might do something like this too), how about setting up a web service on A that B can call to to get the user ID based on the temporary key. This way it's a totally separate call, and can be secured.</p> http://stackoverflow.com/questions/1858048/paint-like-feature-in-web-application/1858082#1858082 1 Answer by Neil N for Paint like Feature in Web.Application ? Neil N 2009-12-07T05:57:02Z 2009-12-07T05:57:02Z <p>If your looking for C#, your only option is <strong>Silverlight</strong>.</p> <p>If you can do something other than C#, theres <strong>Adobe Flash</strong>, as well as some <strong>JavaScript</strong>. JavaScript can be limited (though I have seen some pretty nice ones) when it comes to graphics, unless you want to use the <strong>Canvas tag</strong>. The only problem with the Canvas tag and JS is that it is not fully supported in all browsers yet.</p> http://stackoverflow.com/questions/1843374/how-can-one-setup-a-version-control-system-on-a-local-network-without-a-server/1843392#1843392 2 Answer by Neil N for How can one setup a version control system on a local network, without a server? Neil N 2009-12-03T22:21:51Z 2009-12-03T22:21:51Z <p>If your looking for a source control that DOESN'T have a central repo, you are looking for a <strong>distributed source control</strong> system such as Git or Mercurial.</p> http://stackoverflow.com/questions/1840847/can-someone-copyright-a-sql-query/1840883#1840883 103 Answer by Neil N for Can someone copyright a SQL query? Neil N 2009-12-03T16:01:03Z 2009-12-03T16:01:03Z <p>He charges $500 to change 2009 to 2010? Oh man what a rip.</p> <p>This year pay him his $500 and tell him you want the query to take the school year as a parameter. See how he reacts to knowing this will be his last time working for you.</p> http://stackoverflow.com/questions/1835838/specifications-for-servers-for-team-based-development/1835892#1835892 1 Answer by Neil N for Specifications for Servers for Team Based Development Neil N 2009-12-02T21:16:38Z 2009-12-02T21:16:38Z <ol> <li>Get a version control system in place. Subversion with tortoise (and Ankh addin for VS) is nice and free.</li> <li>You dont need a dev server, have both developers run locally from thier checked out repos.</li> </ol> http://stackoverflow.com/questions/1833725/visual-studio-windows-form-preview-in-different-resolution/1833739#1833739 1 Answer by Neil N for Visual Studio Windows Form Preview In Different Resolution? Neil N 2009-12-02T15:45:23Z 2009-12-02T15:45:23Z <p>I use a 2nd monitor at lower resolution when I need something like this.</p> <p>Keep VS in your main window, then drag the form when running over to the other.</p> <p>Also comes in handy when debugging, since you can see both your form and your step through at the same time.</p> http://stackoverflow.com/questions/1724381/explaining-why-just-add-another-column-to-the-db-is-a-bad-idea-to-non-programm 11 Explaining why "Just add another column to the DB" is a bad idea, to non programmers. Neil N 2009-11-12T18:32:45Z 2009-12-01T23:42:03Z <p>I have sales people and bean counters who are trying to sell customizations to clients, which is fine. But when a complex change request comes in that I send back a large estimate for, they get confused. Often they come back at me with "Why cant you just add another column?" which by another, they mean a dozen or so custom columns PER client.</p> <p>So far all I can come back with is "We are trying to keep the database well normalized" which means nothing to them. I tell them I can create a system of tables that allows each client to define thier own set of custom fields, but of course that takes more time and money than "just adding a few columns". And of course they want to have thier cake and eat it too.</p> <p>So how can I make them understand?</p> http://stackoverflow.com/questions/1823536/does-using-non-sql-databases-obviate-the-need-for-guarding-against-sql-injection/1823568#1823568 1 Answer by Neil N for Does using non-SQL databases obviate the need for guarding against "SQL injection"? Neil N 2009-12-01T01:58:38Z 2009-12-01T01:58:38Z <p>SQl Injection is only a subset of a type of security flaw in which any uncontrolled input gets evaluated.</p> <p>techincally, you could "inject" javascript, among others.</p> http://stackoverflow.com/questions/1821513/a-good-broadcast-mechanism-for-inhouse-net-applications-to-announce-their-locati/1821721#1821721 0 Answer by Neil N for A good broadcast mechanism for inhouse .net applications to announce their location and version? Neil N 2009-11-30T19:01:14Z 2009-11-30T19:01:14Z <p>I did something similar, though not exactly a "braodcast"</p> <p>I have an in house tool several non-techies in the company use. I have it check a network share for a specific EXE (the same EXE you would download if you wanted to use it) and compares the version # of that file with the executing assembly. If the one on the network is newer, alert the user to download the new one.</p> <p>A lot simpler than trying to set up an auto updater for something that will only be used within the same building as me.</p> http://stackoverflow.com/questions/1820615/can-you-recommend-a-css-stylesheet-that-formats-c-code/1820647#1820647 4 Answer by Neil N for Can you recommend a CSS stylesheet that formats C# code? Neil N 2009-11-30T15:53:18Z 2009-11-30T15:53:18Z <p>JavaScript isn't client side? Or am I not understanding your question?</p> <p>you may want to look at <a href="http://code.google.com/p/google-code-prettify/" rel="nofollow">Google Prettify</a>, which IIRC, is what StackOverflow uses</p> http://stackoverflow.com/questions/1813321/what-should-i-name-a-table-that-maps-two-tables-together/1813331#1813331 1 Answer by Neil N for What should I name a table that maps two tables together? Neil N 2009-11-28T18:38:10Z 2009-11-28T18:38:10Z <p><strong>Intermediate Table</strong> or a <strong>Join Table</strong></p> <p>I would name it "ColorShapes" or "ColorShape", depending on your preference</p> http://stackoverflow.com/questions/1799984/finding-out-total-and-free-disk-space-in-net/1800127#1800127 1 Answer by Neil N for Finding out total and free disk space in .NET Neil N 2009-11-25T21:35:37Z 2009-11-25T22:01:31Z <p>I'm pretty sure this is impossible. In windows explorer, if I try to get the folder properties of a UNC directory, it gives me nothing as far as available space. Used/Available space is a characteristic of drives, not folders, and UNC shares are treated as just folders.</p> <p>you have to either:<br> - Map a drive<br> - Run something on the remote machine to check disk space.</p> <p>You could also run into problems with something like Distributed file system, in which a UNC/Mapped share is NOT tied to any specific drive, so there youd have to actually sum up several drives.</p> <p>And what about user quotas? The drive may not be full, but the account you are using to write to that folder may have hit its limit.</p> http://stackoverflow.com/questions/1716979/are-sql-injection-attacks-only-a-threat-on-a-page-that-has-a-form/1717266#1717266 10 Answer by Neil N for Are sql injection attacks only a threat on a page that has a form? Neil N 2009-11-11T18:44:13Z 2009-11-23T21:42:13Z <p>You don't have to have user input to suffer a sql injection attack.</p> <p>Let's say you have a product page that is called using a URL such as this:</p> <pre><code>product.aspx?ID=123 </code></pre> <p>And in your code you have a query constructed such as this:</p> <pre><code>sql = "Select * From Products Where ID = " + Request.Querystring["ID"]; </code></pre> <p>Someone could call your page with this:</p> <pre><code>product.aspx?ID=123;DROP Table Students; </code></pre> <p>And bam, you've just been had.</p> <p>In addition to ANYTHING that can be passed in via a user, querystring, post, cookie, browser variable, etc. I think it is just good practice to always use parameters, even if you have the literals in your code. For example:</p> <pre><code>if(SomeCondition) { sql = "Select * from myTable where someCol = 'foo'"; } else { sql = "Select * from myTable where someCol = 'bar'"; } </code></pre> <p>this may be injection safe, but your RDBMS will cache them as two different queries. if you modiy it to this:</p> <pre><code>sql = "Select * from myTable where someCol = @myParam"; if(SomeCondition) { myCommand.Parameters.Add("@myParam").value = "foo"; } else { myCommand.Parameters.Add("@myParam").value = "bar"; } </code></pre> <p>You achieve the same result but the RDBMS will only cache it as one query, substituting the parameter at runtime. I use it as a rule of thumb to ALWAYS use parameterized queries, just to keep things consistent, not to mention a slight cache improvement.</p> http://stackoverflow.com/questions/1743701/is-there-a-wiki-preferably-net-that-has-stackoverflow-like-editor 1 Is there a wiki (preferably .NET) that has StackOverflow-like editor? Neil N 2009-11-16T17:40:01Z 2009-11-21T16:34:18Z <p>I am looking to set up an internal wiki for our development/design team.</p> <p><strong>The key feature I am looking for is a very simple editor with revision history</strong>. Ideally, the uber-simple markup system StackOverflow.com uses would be great. One of the reasons for this is that we have non-technical people (managers, sales people, designers) who would benifit from a clean markup, not having to know HTML, and yet still be able to view revisions and make modifications easily.</p> <p>I have tried ScrewTurn wiki, but it seems its markup is very ugly, and thier latest WYSIWG seems kinda buggy (keeps adding lines on revisions)</p> <p>I would be willing to use a non-.NET solution if it provided a turn key solution. I would just prefer .NET since we are a .NET house.</p> http://stackoverflow.com/questions/1924449/create-c-applications-which-are-not-framework-dependant/1924496#1924496 Comment by Neil N on Create C# applications which are not framework dependant? Neil N 2009-12-17T21:07:21Z 2009-12-17T21:07:21Z Ok, so then remove the parts you dont use... whats the issue here? http://stackoverflow.com/questions/1924099/what-is-the-meaning-of-the-variable-name-foo/1924113#1924113 Comment by Neil N on What is the meaning of the variable name foo? Neil N 2009-12-17T19:55:19Z 2009-12-17T19:55:19Z Foo, in the context of a variable/class/method name in code examples, IS meaningless. http://stackoverflow.com/questions/1924099/what-is-the-meaning-of-the-variable-name-foo/1924113#1924113 Comment by Neil N on What is the meaning of the variable name foo? Neil N 2009-12-17T19:52:07Z 2009-12-17T19:52:07Z why the downvote? http://stackoverflow.com/questions/1834360/what-is-a-method-group/1834379#1834379 Comment by Neil N on What is a "method group"? Neil N 2009-12-17T19:51:25Z 2009-12-17T19:51:25Z Yes, even a single method is called a method group, even though it may not have any overloads. http://stackoverflow.com/questions/1923096/storing-a-million-images/1923148#1923148 Comment by Neil N on Storing a million images Neil N 2009-12-17T17:26:53Z 2009-12-17T17:26:53Z Nooooooooooooooooooooo! http://stackoverflow.com/questions/1923096/storing-a-million-images/1923152#1923152 Comment by Neil N on Storing a million images Neil N 2009-12-17T17:26:15Z 2009-12-17T17:26:15Z Oh God No. Please dont use a database as large BLOB storage. http://stackoverflow.com/questions/1919627/how-do-i-escape-strings-which-contain-byte-data-in-c/1919873#1919873 Comment by Neil N on How do I escape strings which contain byte data in C#? Neil N 2009-12-17T15:15:42Z 2009-12-17T15:15:42Z I'm curious if he was trying to paste an entire PNG as Base64 into C#. What is the limit for string literals? I tried this once back in my VB6 days and it didnt turn out so well. http://stackoverflow.com/questions/1919627/how-do-i-escape-strings-which-contain-byte-data-in-c/1919639#1919639 Comment by Neil N on How do I escape strings which contain byte data in C#? Neil N 2009-12-17T05:26:11Z 2009-12-17T05:26:11Z You dont need to escape Base 64, I'm guessing you need to convert them to an image? http://stackoverflow.com/questions/1905607/can-not-issue-data-manipulation-statements-with-executequery/1905615#1905615 Comment by Neil N on can not issue data manipulation statements with executeQuery() Neil N 2009-12-15T13:46:51Z 2009-12-15T13:46:51Z It expects a result set from the DB is what I mean. http://stackoverflow.com/questions/1903216/should-i-be-concerned-about-net-dictionary-speed/1903240#1903240 Comment by Neil N on Should I be concerned about .NET dictionary speed? Neil N 2009-12-14T20:37:08Z 2009-12-14T20:37:08Z Should? And I meant HashSet&lt;T&gt; I never liked the old HashTables in .Net http://stackoverflow.com/questions/1903216/should-i-be-concerned-about-net-dictionary-speed/1903236#1903236 Comment by Neil N on Should I be concerned about .NET dictionary speed? Neil N 2009-12-14T20:21:52Z 2009-12-14T20:21:52Z But isnt the dictionary a HashTable already? http://stackoverflow.com/questions/531545/c-standard-class-enumeration-for-top-bottom-left-right/531567#531567 Comment by Neil N on C# standard class (enumeration?) for Top, Bottom, Left, Right Neil N 2009-12-14T18:54:56Z 2009-12-14T18:54:56Z It's worth nothing that this search could be done using the &quot;object browser&quot; in Visual Studio. http://stackoverflow.com/questions/660304/4-point-transform-images/661076#661076 Comment by Neil N on 4-point transform images Neil N 2009-12-14T17:19:16Z 2009-12-14T17:19:16Z The problem is, how do you convert the 4 points into a 3D rotation? http://stackoverflow.com/questions/811074/what-is-the-coolest-thing-you-can-do-in-10-lines-of-simple-code-help-me-inspir/811622#811622 Comment by Neil N on What is the coolest thing you can do in <10 lines of simple code? Help me inspire beginners! Neil N 2009-12-11T19:48:24Z 2009-12-11T19:48:24Z Some of the best programmers I know started out with just &quot;View Source&quot; in internet explorer. And now can do assembly and C++ with the best of them. http://stackoverflow.com/questions/1876663/how-do-i-allow-ctrl-v-paste-on-a-winforms-textbox/1876712#1876712 Comment by Neil N on How do I allow CTRL-V (Paste) on a Winforms Textbox? Neil N 2009-12-09T21:17:30Z 2009-12-09T21:17:30Z I believe Josh confused the | and || operators