Code to make a DHTMLEd control replace straight quotes with curly quotes - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T00:08:47Z http://stackoverflow.com/feeds/question/61598 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/61598/code-to-make-a-dhtmled-control-replace-straight-quotes-with-curly-quotes 8 Code to make a DHTMLEd control replace straight quotes with curly quotes Joel Spolsky 2008-09-14T19:51:48Z 2008-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> http://stackoverflow.com/questions/61598/code-to-make-a-dhtmled-control-replace-straight-quotes-with-curly-quotes/62003#62003 11 Answer by rpetrich for Code to make a DHTMLEd control replace straight quotes with curly quotes rpetrich 2008-09-15T08:57:53Z 2008-11-26T18:31:38Z <p>Here's the VB6 version:</p> <pre><code>Private Sub DHTMLEdit1_onkeypress() Dim e As Object Set e = DHTMLEdit1.DOM.parentWindow.event 'Perform smart-quote replacement' Select Case e.keyCode Case 34: 'Double-Quote' e.keyCode = 0 If IsAtWordEnd Then InsertDoubleUndo ChrW$(8221), ChrW$(34) Else InsertDoubleUndo ChrW$(8220), ChrW$(34) End If Case 39: 'Single-Quote' e.keyCode = 0 If IsAtWordEnd Then InsertDoubleUndo ChrW$(8217), ChrW$(39) Else InsertDoubleUndo ChrW$(8216), ChrW$(39) End If End Select End Sub Private Function IsLetter(ByVal character As String) As Boolean IsLetter = UCase$(character) &lt;&gt; LCase$(character) End Function Private Sub InsertDoubleUndo(VisibleText As String, HiddenText As String) Dim selection As Object Set selection = DHTMLEdit1.DOM.selection.createRange() selection.Text = HiddenText selection.moveStart "character", -Len(HiddenText) selection.Text = VisibleText End Sub Private Function IsAtWordEnd() As Boolean Dim ch As String ch = PreviousChar IsAtWordEnd = (ch &lt;&gt; " ") And (ch &lt;&gt; "") End Function Private Function PreviousChar() As String Dim selection As Object Set selection = m_dom.selection.createRange() selection.moveStart "character", -1 PreviousChar = selection.Text End Function </code></pre> <p>Note: this solution inserts an additional level in the undo chain. For example, typing "This is a test" gives a chain of “This is a test” -> “This is a test" -> <strong>“This is a test</strong> -> “ -> " (extra level in bold). To remove this extra level you'd have to implement some sort of <code>PostMessage+subclassing</code> solution that doesn't involve cancelling the native keypress</p> <p>edit: Don't forget to include the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=b769a4b8-48ed-41a1-8095-5a086d1937cb&amp;displaylang=en" rel="nofollow">DHTML Editing Control redistributable</a> if you are targeting Windows Vista.</p>