User Josh Stodola - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T23:43:51Zhttp://stackoverflow.com/feeds/user/54420http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1890648/styling-anchor-tags-without-hrefs-being-used-to-trigger-javascript-within-page/1890727#18907270Answer by Josh Stodola for Styling anchor tags without href's--being used to trigger javascript within pageJosh Stodola2009-12-11T20:36:43Z2009-12-11T20:36:43Z<p>Use markup like this...</p>
<pre><code><a id="myLink" href="JavascriptDisabled.htm">Jump</a>
</code></pre>
<p>JavascriptDisabled.htm should be a page that says <strong>Javascript must be enabled for this to work!</strong></p>
<p>Then you can override the default click functionality of the link with unobtrusive Javascript like this...</p>
<pre><code>window.onload = function() {
document.getElementById("myLink").onclick = function() {
//Execute your Javascript
return false; // This prevents the redirect
}
}
</code></pre>
<p>So people with Javascript enabled get the correct functionality. Those with Javascript disabled will actually get a message that tells them why it's not working. I'd say it's a win/win!</p>
http://stackoverflow.com/questions/1888921/is-there-ways-to-create-optional-arguments-to-functions-in-vb-script/1888936#18889361Answer by Josh Stodola for Is there ways to create optional arguments to functions in vb script?Josh Stodola2009-12-11T15:46:47Z2009-12-11T15:46:47Z<p>How about <a href="http://www.aspfree.com/c/a/Windows-Scripting/Overloading-Methods-and-More-in-VBScript/" rel="nofollow">overloading</a>?</p>
http://stackoverflow.com/questions/1885391/how-do-i-write-a-regular-expression-to-match-any-non-empty-content-of-an-xml-elem/1885610#18856101Answer by Josh Stodola for How do I write a Regular Expression to match any non-empty content of an XML element that has no children elements?Josh Stodola2009-12-11T03:25:27Z2009-12-11T03:25:27Z<p>I would not use regular expressions to do this! I would run it through a Tidy utility and then use XSLT and XPath.</p>
http://stackoverflow.com/questions/1884987/determine-if-an-iframe-is-visible-on-the-screen/1885025#18850251Answer by Josh Stodola for Determine if an iframe is visible on the screenJosh Stodola2009-12-11T00:15:50Z2009-12-11T00:15:50Z<p>No, it can not be done because you can not access the document of the parent domain. That's needed to determine the position of the iframe element. You can get the size of the users screen, but that's about it. Your iframe could be invisible and you would have no way to tell. Sorry!</p>
http://stackoverflow.com/questions/1882429/how-can-i-append-content-to-the-bottom-of-a-fixed-height-div-and-have-it-overflow/1882456#18824562Answer by Josh Stodola for How can I append content to the bottom of a fixed-height div and have it overflow-y: scroll?Josh Stodola2009-12-10T17:08:13Z2009-12-10T17:50:22Z<p>I think you'll need to use Javascript to do the scrolling part by setting <code>scrollTop</code> to the <code>scrollHeight</code> after each append. My buddy <a href="http://radio.javaranch.com/pascarello/2005/12/14/1134573598403.html" rel="nofollow">Eric Pascarello posted a solution</a> quite a while ago.</p>
<p>Getting it vertically positioned to the bottom is also somewhat of a challenge, but the following CSS ought to do it...</p>
<pre><code><div id="test">
<div class="bottom">
<p>Test1</p>
<p>Test2</p>
<p>Test3</p>
<p>Test4</p>
<p>Test5</p>
<p>Test6</p>
<p>Test7</p>
<p>Test8</p>
<p>Test9</p>
</div>
</div>
#test
{
background:green;
height:100px;
position:relative;
}
#test .bottom
{
bottom:0px;
max-height:100px;
overflow:auto;
position:absolute;
width:100%;
}
#test p
{
margin:0;
}
</code></pre>
http://stackoverflow.com/questions/1876663/how-do-i-allow-ctrl-v-paste-on-a-winforms-textbox/1876688#18766881Answer by Josh Stodola for How do I allow CTRL-V (Paste) on a Winforms Textbox?Josh Stodola2009-12-09T20:33:18Z2009-12-09T20:33:18Z<p>The code you posted has nothing to do with your Ctrl + V problem, that is for certain. Not much else I can tell you unless you post some more code.</p>
<p>Special code should not be needed for Ctrl + V, but one guess I have is to make sure you have <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.textboxbase.shortcutsenabled.aspx" rel="nofollow"><code>YourTextBoxId.ShortcutsEnabled</code></a> set to <code>True</code>.</p>
http://stackoverflow.com/questions/1874866/how-to-fire-onload-event-on-document-in-ie/1875595#18755951Answer by Josh Stodola for How to fire "onload" event on document in IEJosh Stodola2009-12-09T17:46:04Z2009-12-09T17:46:04Z<p>For some reason, it appears that IE overrides the <code>onload</code> property of <code>window</code> with an empty object after the DOM is loaded. At least that is the case when you try to access it from within any event handler of a DOM element...</p>
<pre><code><!DOCTYPE html>
<html>
<head>
<title>Test by Josh</title>
<script type="text/javascript">
window.onload = function() {
alert("Test");
}
alert(typeof window.onload);
</script>
</head>
<body>
<h1 onclick="alert(typeof window.onload);">Test</h1>
</body>
</html>
</code></pre>
<p>In this situation, you'll see that window.onload is recognized as a function initially, then you see the "Test" alert. When you click on the heading, you'll see that window.onload is now an <code>object</code>. I tried iterating through the properties of the object, but it's empty. This is not cool.</p>
<p>One lame workaround is to grab the function in the accessible scope and assign it to a different property that you can fire at your convenience...</p>
<pre><code><!DOCTYPE html>
<html>
<head>
<title>Test by Josh</title>
<script type="text/javascript">
window.onload = function() {
alert("Test");
}
</script>
</head>
<body>
<h1 onclick="window.onloadfix()">Test</h1>
<!-- Could potentially be injected via server-side include if needed -->
<script type="text/javascript">
window.onloadfix = function() {
window.onload();
}
</script>
</body>
</html>
</code></pre>
<p>I can't think of any other way to address this issue right now.</p>
http://stackoverflow.com/questions/1870103/create-a-video-stream-avi-from-a-series-of-images0Create a Video Stream (AVI) from a Series of ImagesJosh Stodola2009-12-08T21:50:54Z2009-12-08T22:12:36Z
<p>There is an IP web camera that I wrote a .NET class for sometime ago. It's basically a Timer implementation that pings a snapshot CGI script from the camera every five seconds. The camera itself is very rudamentary; it does not have any sort of API for me to work with, the only thing I can do programmatically (remotely) is invoke this script. The script returns a 640x480 JPEG image. Simple.</p>
<p>Now what I need to be able to do is take a days worth of these images, and create a "time lapse" AVI video stream out of it that will eventually be embedded into a web page. How can I do this with VB.NET?</p>
http://stackoverflow.com/questions/1861460/essential-online-resources-for-net-developers/1861902#18619020Answer by Josh Stodola for Essential online resources for .NET developersJosh Stodola2009-12-07T18:21:41Z2009-12-07T18:21:41Z<p><a href="http://weblogs.asp.net/scottgu" rel="nofollow">ScottGu</a> and <a href="http://west-wind.com/weblog" rel="nofollow">Rick Strahl</a> are my favorite .NET blogs. Tons of useful content.</p>
http://stackoverflow.com/questions/1861109/forcing-windows-resize-to-fire/1861676#18616760Answer by Josh Stodola for Forcing windows resize to fireJosh Stodola2009-12-07T17:48:37Z2009-12-07T17:48:37Z<p>You can resize the window like this...</p>
<pre><code>window.resizeTo(width, height);
</code></pre>
<p>And if you need to trigger the event handler, you can do that like this...</p>
<pre><code>window.onresize();
</code></pre>
http://stackoverflow.com/questions/1860998/strange-syntax-of-number-methods-in-javascript/1861033#186103310Answer by Josh Stodola for Strange syntax of Number methods in JavaScriptJosh Stodola2009-12-07T16:18:14Z2009-12-07T16:18:14Z<p>It's a syntax error because you are representing a number. Strings can work that way, but not numbers, because a period immediately following a number symbolizes a decimal value. The character after the <code>.</code> is causing the error.</p>
http://stackoverflow.com/questions/1860673/how-to-refresh-iframe-parent-page-after-a-submit-in-the-iframe/1860732#18607320Answer by Josh Stodola for How to refresh iframe parent page after a submit in the iframe?Josh Stodola2009-12-07T15:34:04Z2009-12-07T15:34:04Z<p>Use an <code>onload</code> event handler on your iframe. When it fires after the submit, execute your <code>top.location.reload</code>...</p>
<pre><code>// In parent
window.onload = function() {
document.getElementById("MY_IFRAME").onload = function() {
top.location.reload();
}
}
</code></pre>
http://stackoverflow.com/questions/1860482/when-do-you-choose-to-load-your-javascript-at-the-bottom-of-the-page-instead-of-t/1860567#18605670Answer by Josh Stodola for When do you choose to load your javascript at the bottom of the page instead of the top?Josh Stodola2009-12-07T15:08:11Z2009-12-07T15:08:11Z<p>I put all external scripts (such as Google analytics) at the bottom so their lag does not effect the loading of the DOM.</p>
http://stackoverflow.com/questions/1334382/upload-a-file-referenced-via-url/1851135#18511351Answer by Josh Stodola for Upload a file referenced via URL Josh Stodola2009-12-05T04:25:35Z2009-12-05T04:25:35Z<p>Just have a Textbox on your page to let them enter a URL and then do this when the form is submitted...</p>
<pre><code>string url = YOUR_TEXTBOX.Text();
Uri uri;
try {
uri = new Uri(url);
}
catch (UriFormatException ex) {
// Error
throw ex;
}
byte[] file;
using (System.Net.WebClient client = new System.Net.WebClient()) {
file = client.DownloadData(uri);
}
// now you have the file
</code></pre>
<p>Watch out for uploaded viruses :)</p>
http://stackoverflow.com/questions/1850060/jquery-pass-this-parent-to-method/1850079#18500793Answer by Josh Stodola for JQuery: pass $(this).parent(); to method?Josh Stodola2009-12-04T22:29:00Z2009-12-04T22:29:00Z<p>As long as the function understands that the parameter is the jQuery object and not the DOM element itself. If the function expects a DOM element reference, you can easily do that like this...</p>
<pre><code>$('.expand').each(function(i){
var _Expand = $(this).parent();
ExpGroupBy(_Expand[0]); // Note the [0]
});
</code></pre>
http://stackoverflow.com/questions/1847957/use-google-maps-bubble-as-a-custom-tooltip-background0Use Google Maps Bubble as a Custom Tooltip BackgroundJosh Stodola2009-12-04T16:08:08Z2009-12-04T16:21:07Z
<p>I want to use the Google Maps "bubble" in my web site. It pops up when you click on a pin...</p>
<p><img src="http://www.deltasys.com/blog/wp-content/uploads/2007/12/dealer%5Flocator%5Fexample.jpg" alt="Google Maps Bubble"></p>
<p>Has anybody done this? I can't even find the required image(s) using Firebug. If I can just find the image(s) that powers this bubble, I can handle the rest!</p>
http://stackoverflow.com/questions/1847654/iframe-problems/1847816#18478161Answer by Josh Stodola for iframe problemsJosh Stodola2009-12-04T15:46:38Z2009-12-04T15:46:38Z<p>Try this...</p>
<pre><code>top.location.href = 'http://www.google.com';
</code></pre>
http://stackoverflow.com/questions/1841916/how-to-avoid-global-variables-in-javascript1How to Avoid Global Variables in JavascriptJosh Stodola2009-12-03T18:30:15Z2009-12-03T22:37:22Z
<p>We all know that global variables are anything but best practice. But there are several instances when it is difficult to code without them. What techniques do you use to avoid the use of global variables?</p>
<p>For example, given the following scenario, how would you not use a global variable?</p>
<p><strong>Javascript:</strong></p>
<pre><code>var uploadCount = 0;
window.onload = function() {
var frm = document.forms[0];
frm.target = "postMe";
frm.onsubmit = function() {
startUpload();
return false;
}
}
function startUpload() {
var fil = document.getElementById("FileUpload" + uploadCount);
if(!fil || fil.value.length == 0) {
alert("Finished!");
document.forms[0].reset();
return;
}
disableAllFileInputs();
fil.disabled = false;
alert("Uploading file " + uploadCount);
document.forms[0].submit();
}
</code></pre>
<p><strong>Relevant markup:</strong></p>
<pre><code><iframe src="test.htm" name="postHere" id="postHere"
onload="uploadCount++; if(uploadCount > 1) startUpload();"></iframe>
<!-- MUST use inline Javscript here for onload event
to fire after each form submission -->
</code></pre>
<p>This code comes from a web form with multiple <code><input type="file"></code>. It uploads the files one at a time to prevent huge requests. It does this by POSTing to the iframe, waiting for the response which fires the iframe onload, and then triggers the next submission.</p>
<p>You don't have to answer this example specifically, I am just providing it for reference to a situation in which I am unable to think of a way to avoid global variables.</p>
http://stackoverflow.com/questions/1401498/remove-any-spaces-while-typing-into-a-textbox/1401538#140153813Answer by Josh Stodola for Remove any spaces while typing into a textboxJosh Stodola2009-09-09T19:18:12Z2009-12-03T00:03:40Z<pre><code>$(function() {
var txt = $("#myTextbox");
var func = function() {
txt.val(txt.val().replace(/\s/g, ''));
}
txt.keyup(func).blur(func);
});
</code></pre>
<p>You have to additionally handle the <code>blur</code> event because user could use context menu to paste ;)</p>
http://stackoverflow.com/questions/1833451/javascript-multiple-file-upload-sequentially-one-at-a-time1Javascript Multiple File Upload, Sequentially One at a TimeJosh Stodola2009-12-02T15:02:01Z2009-12-02T22:10:22Z
<p>We have a form with five <code><input type="file"/></code> elements that is in production and working great. We get request timeouts and MaxRequestLength exceeded errors on occasion. To prevent these errors, I planned to write some Javascript to upload the files one-at-a-time instead of all at once. Here is how I planned on doing this...</p>
<ol>
<li>On document.ready, inject a hidden iframe into page</li>
<li>Change the <code><form></code> to target the iframe</li>
<li>Disable all elements on the form (which prevents them from being POSTed)</li>
<li>Enable one file-upload at a time and submit the form</li>
<li>Wait for the response from the server</li>
<li>When server response is printed into iframe, start the next upload</li>
<li>When all uploads are done, refresh the page, which will invoke some server-side logic that populates a grid.</li>
</ol>
<p>My problem is with number 5. Normally I think I could figure this out no problem, but I am just having one of those days where my brain is on strike. Here is my code thus far...</p>
<pre><code>$(function() {
$("<iframe/>").attr("src", "test.htm").attr("name", "postMe").hide().appendTo("body");
$("form").attr("target", "postMe").submit(function(e) {
e.preventDefault();
$("#btnSubmit").attr("disabled", "disabled").val("Please Wait, Files are Uploading");
for(var i = 1; i < 6; i++) {
$("input[type=file]").attr("disabled", "disabled");
$("#FileUpload" + i).removeAttr("disabled");
$("form")[0].submit();
// HELP!!!
// How do I wait for server before next iteration?
}
location.reload(true);
});
});
</code></pre>
<p>What kind of construct do I need here in order to "wait" for the server response before kicking off the next upload?</p>
http://stackoverflow.com/questions/1827261/interrupting-post-request/1835379#18353790Answer by Josh Stodola for Interrupting POST requestJosh Stodola2009-12-02T19:55:33Z2009-12-02T19:55:33Z<p>Try calling <code>Response.Close()</code> instead. This will immediately close the socket connection. You may need to call <code>Response.Flush()</code> before hand.</p>
http://stackoverflow.com/questions/1834642/best-practice-for-semicolon-after-every-function-in-javascript/1834670#18346700Answer by Josh Stodola for Best practice for semicolon after every function in javascript?Josh Stodola2009-12-02T17:54:53Z2009-12-02T17:54:53Z<p>Just stay consistent! They are not needed, but I personally use them because most minification techniques rely on the semi-colon (for instance, <a href="http://dean.edwards.name/packer/usage/" rel="nofollow">Packer</a>).</p>
http://stackoverflow.com/questions/1830024/is-this-an-efficient-way-to-convert-html-to-text-using-jquery/1830040#18300401Answer by Josh Stodola for Is this an efficient way to convert HTML to text using jQuery?Josh Stodola2009-12-02T01:03:03Z2009-12-02T14:14:24Z<p>HTML <em>is</em> text.</p>
<p><strong>EDIT</strong> Try this...</p>
<pre><code>// Get current body text
var html = $("body").text();
// Create a new jQuery object out of body text and remove desired elements
var text = $(html).remove("script,noscript,style,:hidden").text();
</code></pre>
http://stackoverflow.com/questions/1828788/what-gets-disposed-when-sqlcommand-dispose-is-called/1828805#18288052Answer by Josh Stodola for What gets disposed when SqlCommand.Dispose is called?Josh Stodola2009-12-01T20:47:32Z2009-12-01T20:47:32Z<p>Looks to me like it calls the base class (Component) Dispose method, and jump-starts garbage collection...</p>
<pre><code>Public Sub Dispose(ByVal disposing As Boolean)
If disposing Then 'Same as Component.Dispose()
SyncLock Me
If Me.site IsNot Nothing AndAlso Me.site.Container IsNot Nothing Then
Me.site.Container.Remove(Me)
End If
If Me.events IsNot Nothing Then
Dim handler As EventHandler = DirectCast(Me.events.Item(Component.EventDisposed), EventHandler)
If handler IsNot Nothing Then
handler.Invoke(Me, EventArgs.Empty)
End If
End If
End SyncLock
End If
GC.SuppressFinalize(Me)
End Sub
</code></pre>
<p>I got this by using <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a>.</p>
http://stackoverflow.com/questions/1827458/prototyping-object-in-javascript-breaks-jquery/1827611#18276111Answer by Josh Stodola for Prototyping Object in Javascript breaks jQuery?Josh Stodola2009-12-01T17:14:04Z2009-12-01T17:14:04Z<p>You should never extend Object.prototype. It does far more than break jQuery; it completely breaks the "object-as-hashtables" feature of Javascript. Don't do it.</p>
<p>You can ask John Resig, and he'll tell you the <a href="http://markmail.org/message/tv7vxcir6w3p2h5e" rel="nofollow">same thing</a>.</p>
http://stackoverflow.com/questions/1827492/how-can-we-perform-reset-function-in-master-page-of-aspx-page/1827505#18275053Answer by Josh Stodola for how can we perform reset function in master page of aspx page?Josh Stodola2009-12-01T16:55:21Z2009-12-01T16:55:21Z<p>Javascript is case-sensitive. Is it possible that you have your form name wrong? Try to use an index instead...</p>
<pre><code>document.forms[0].reset();
</code></pre>
<p>Or perhaps you are not sure what <code>reset</code> is supposed to do. It restores each element on the form to its default value. It should do <em>exactly</em> what a <code><input type="reset"/></code> would do.</p>
http://stackoverflow.com/questions/1822448/how-can-i-find-a-control-in-the-footer-template-of-a-data-repeater/1822544#18225441Answer by Josh Stodola for How can i find a control in the footer template of a data repeaterJosh Stodola2009-11-30T21:32:50Z2009-11-30T21:32:50Z<pre><code>Protected Sub Repeater1_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.RepeaterItemEventArgs) Handles Repeater1.ItemDataBound
If e.Item.ItemType = ListItemType.Footer Then
Dim Lit As Literal = CType(e.Item.FindControl("findme"), Literal)
End If
End Sub
</code></pre>
http://stackoverflow.com/questions/1822226/socks-client-support/1822239#18222391Answer by Josh Stodola for Socks Client SupportJosh Stodola2009-11-30T20:34:31Z2009-11-30T20:34:31Z<p>This <a href="http://www.alhem.net/Sockets/" rel="nofollow">wrapper for Berkely Sockets API in C</a> is ironclad.</p>
http://stackoverflow.com/questions/1821605/does-jquery-have-the-equivalent-of-dojos-enhanced-select/1821652#18216521Answer by Josh Stodola for Does jQuery have the equivalent of Dojo's enhanced <select>?Josh Stodola2009-11-30T18:49:13Z2009-11-30T18:49:13Z<p>Yes, jQuery has an <a href="http://docs.jquery.com/Plugins/Autocomplete" rel="nofollow">AutoComplete</a> plugin</p>
http://stackoverflow.com/questions/1820839/using-return-instead-of-else-in-javascript/1820863#18208635Answer by Josh Stodola for Using return instead of else in JavascriptJosh Stodola2009-11-30T16:30:43Z2009-11-30T16:30:43Z<p>I always go with the first method. Easier to read, and less indentation. As far as execution speed, this will depend on the implementation, but I would expect them both to be identical.</p>
http://stackoverflow.com/questions/1890648/styling-anchor-tags-without-hrefs-being-used-to-trigger-javascript-within-page/1890727#1890727Comment by Josh Stodola on Styling anchor tags without href's--being used to trigger javascript within pageJosh Stodola2009-12-11T21:21:46Z2009-12-11T21:21:46ZYes it is called behavioral separation, and it is the thing to do these days. It's much easier to maintain.http://stackoverflow.com/questions/1890648/styling-anchor-tags-without-hrefs-being-used-to-trigger-javascript-within-page/1890667#1890667Comment by Josh Stodola on Styling anchor tags without href's--being used to trigger javascript within pageJosh Stodola2009-12-11T20:37:48Z2009-12-11T20:37:48ZNot good for accessiblity because people with Javascript enabled will still see clickable links, but they do nothing. That's not very nice!http://stackoverflow.com/questions/1889932/net-reflector-fail-windows-7-64-bitComment by Josh Stodola on .NET Reflector Fail - Windows 7 64-bitJosh Stodola2009-12-11T18:27:04Z2009-12-11T18:27:04ZDo you even have the framework installed?!http://stackoverflow.com/questions/1889433/selector-selecting-all-tables-on-a-page-in-jqueryComment by Josh Stodola on Selector - Selecting all tables on a page in jQueryJosh Stodola2009-12-11T17:10:42Z2009-12-11T17:10:42ZDon't just start using a library. Read the documentation first. DUH!http://stackoverflow.com/questions/1889429/jquery-send-keystroke/1889436#1889436Comment by Josh Stodola on jQuery: send keystrokeJosh Stodola2009-12-11T17:09:22Z2009-12-11T17:09:22Z-1 Read the question next time before answering. He wants to trigger the event, not handle it.http://stackoverflow.com/questions/1889429/jquery-send-keystrokeComment by Josh Stodola on jQuery: send keystrokeJosh Stodola2009-12-11T17:08:34Z2009-12-11T17:08:34ZObvious: find out what it does when ENTER is pressed, and then do the same thing!http://stackoverflow.com/questions/1889416/what-is-the-easiest-or-quickest-or-smartest-way-to-find-an-answer-for-a-problem-rComment by Josh Stodola on What is the easiest or quickest or smartest way to find an answer for a problem related to programming?Josh Stodola2009-12-11T17:05:58Z2009-12-11T17:05:58ZIf you know the answer, then why are you asking the question? Are you just bored?!http://stackoverflow.com/questions/1883450/xml-deserializeComment by Josh Stodola on xml- DeserializeJosh Stodola2009-12-10T20:43:46Z2009-12-10T20:43:46ZShow us the code where you instantiate XmlSerializerhttp://stackoverflow.com/questions/1883491/updating-textbox-on-the-client-with-javascript-and-reading-the-value-from-the-serComment by Josh Stodola on Updating TextBox on the client with Javascript and reading the value from the ServerJosh Stodola2009-12-10T19:49:34Z2009-12-10T19:49:34ZAre you sure you don't have something in Page_Load that is resetting the textbox value?http://stackoverflow.com/questions/1882429/how-can-i-append-content-to-the-bottom-of-a-fixed-height-div-and-have-it-overflow/1882456#1882456Comment by Josh Stodola on How can I append content to the bottom of a fixed-height div and have it overflow-y: scroll?Josh Stodola2009-12-10T17:51:40Z2009-12-10T17:51:40ZAlthough you'll still need the bit of Javascript to set the scroll position to the bottom.http://stackoverflow.com/questions/1882429/how-can-i-append-content-to-the-bottom-of-a-fixed-height-div-and-have-it-overflow/1882456#1882456Comment by Josh Stodola on How can I append content to the bottom of a fixed-height div and have it overflow-y: scroll?Josh Stodola2009-12-10T17:49:56Z2009-12-10T17:49:56ZWhoops! Sorry, I forgot about the scrolling. I updated my answer, it's working great in IE.http://stackoverflow.com/questions/1876663/how-do-i-allow-ctrl-v-paste-on-a-winforms-textbox/1876712#1876712Comment by Josh Stodola on How do I allow CTRL-V (Paste) on a Winforms Textbox?Josh Stodola2009-12-09T20:44:26Z2009-12-09T20:44:26ZThis will paste when just a V is pressed, right?!http://stackoverflow.com/questions/1876663/how-do-i-allow-ctrl-v-paste-on-a-winforms-textboxComment by Josh Stodola on How do I allow CTRL-V (Paste) on a Winforms Textbox?Josh Stodola2009-12-09T20:41:59Z2009-12-09T20:41:59ZIs the form in question a "child" form?http://stackoverflow.com/questions/1876663/how-do-i-allow-ctrl-v-paste-on-a-winforms-textbox/1876688#1876688Comment by Josh Stodola on How do I allow CTRL-V (Paste) on a Winforms Textbox?Josh Stodola2009-12-09T20:36:42Z2009-12-09T20:36:42ZI updated my answer, please see it.http://stackoverflow.com/questions/1871874/alternatives-for-using-in-href-attributeComment by Josh Stodola on Alternatives for using "#" in href attribute Josh Stodola2009-12-09T06:56:31Z2009-12-09T06:56:31ZDon't upvote duplicate questions!