Sunday, 31 January 2016

HTML Horizontal Bar Chart

Introduction We are now going a step ahead in continuation with what we saw in the HTML Vertical Bar Chartarticle. In line with what we have seen, we are now going to see how we can generate colorful horizontal bar charts for our web application. As mentioned earlier, we can work with any of the wonderful tools and technologies like Microsoft Office web office components, some third party...
Read More »

Html Cleaner

Introduction Cleaning html code by hand is a pain in the ...! But once in a while you just have to do it (well I do anyway). Unless you have a tool to do it for you. When finding the Html Agility Pack my prayers were answered. I quickly found the code for cleaning html code with this library (with a little help from google) at this place. I put it all in a Windows application which allows me to quickly access the function whenever I need it. Nothing...
Read More »

WYSIWYG HTML Editor

Introduction I have found different code samples showing how to create a visual HTML editor in ASP using a text area. However, I needed a good editor for my WinForms application, but I couldn’t find a good example. Eventually, I wrote one from scratch after I converted some MFC code I found on the net. Based on the IE Browser control, you can create a powerful editor that allows you to manipulate HTMLtags visually and add any tags you want. Using the code The code is...
Read More »

A Professional HTML Renderer You Will Use

Introduction This is a library of 100% managed code that draws beautifully formatted HTML. It comes along with three WinForms controls: HtmlPanel HtmlLabel HtmlTooltip And a static method ready to draw HTML: Hide   Copy Code HtmlRenderer.Render(Graphics g, string html, RectangleF area, bool clip) Note: The drawing engine is based on the CSS...
Read More »

Scrollable HTML Table

Introduction This JavaScript code can be used to convert tables in ordinary HTML into scrollable ones. No additional coding is necessary. All you need to do is put header rows in TBODY and give your table an ID field, include the ScrollableTable.js file and call makeScrollableTable in your document's onLoadmethod. Hide   Shrink    Copy...
Read More »