hot questions tagged dhtmled - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T18:16:15Zhttp://stackoverflow.com/feeds/tag?tagnames=dhtmled&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/61598/code-to-make-a-dhtmled-control-replace-straight-quotes-with-curly-quotes8Code to make a DHTMLEd control replace straight quotes with curly quotesJoel Spolsky2008-09-14T19:51:48Z2008-11-26T18:31:38Z
<p>I've got an old, legacy VB6 application that uses the DHTML editing control as an HTML editor. The Microsoft DHTML editing control, a.k.a. DHTMLEd, is probably nothing more than an IE control using IE's own native editing capability internally.</p>
<p>I'd like to modify the app to implement smart quotes like Word. Specifically, <strong>"</strong> is replaced with <strong>“</strong> or <strong>”</strong> and <strong>'</strong> is replaced with <strong>‘</strong> or <strong>’</strong> as appropriate as it is typed; and if the user presses Ctrl+Z immediately after the replacement, it goes back to being a straight quote.</p>
<p>Does anyone have code that does that?</p>
<p><em>If you don't have code for DHTML/VB6, but do have JavaScript code that works in a browser with contentEditable regions, I could use that, too</em></p>