August 24th, 2006

DHTML Editing Control for Windows Vista

WebDevTools is the owner of the DHTML Editing Control; a COM control which can be used in applications or web pages for WYSIWYG HTML editing and which is shipped as part of the Windows operating system.  After a long run (nine years, since IE 4.5) this control will not be shipped as part of Windows Vista.

There are two flavors of the control; a safe-for-scripting version used on web pages and an ordinary control used in applications.  While the safe-for-scripting control and Windows Vista will never cross paths, we’ve released an installer for a version of the DHTML Editing Control for Application for Windows Vista, which is now available here.  Be sure to check out the white paper listed in the Related Resources section; it contains a lot of information.

If the white paper doesn’t answer your questions, try my blog for additional information and support.

0 comments

Discussion are closed.

'; block.insertAdjacentElement('beforebegin', codeheader); let button = codeheader.querySelector('.copy-button'); button.addEventListener("click", async () => { let blockToCopy = block; await copyCode(blockToCopy, button); }); } }); async function copyCode(blockToCopy, button) { let code = blockToCopy.querySelector("code"); let text = ''; if (code) { text = code.innerText; } else { text = blockToCopy.innerText; } try { await navigator.clipboard.writeText(text); } catch (err) { console.error('Failed to copy:', err); } button.innerText = "Copied"; setTimeout(() => { button.innerHTML = '' + svgCodeIcon + ' Copy'; }, 1400); }