Created Issue: User code does not belong under System.* [8618]
Why are you putting your code under the System namespace?Please put your code in a namespace that makes sense.
View ArticleCommented Issue: User code does not belong under System.* [8618]
Why are you putting your code under the System namespace?Please put your code in a namespace that makes sense.Comments: ** Comment from web user: ArthurTep ** I have no idea what you are talking about...
View ArticleClosed Issue: User code does not belong under System.* [8618]
Why are you putting your code under the System namespace?Please put your code in a namespace that makes sense.
View ArticleReviewed: 1.4.0.0 (Mar 11, 2013)
Rated 4 Stars (out of 5) - This is the most ambitious project on Codeplex. Great job!
View ArticleNew Post: Clipping of text
Just updated to the latest 1.4.0.0 to be able to to control text selection (disable it). Thanks for that. Then I noticed that certain texts within table got the first pixel clipped off. I've...
View ArticleReleased: 1.4.1.0 (Mar 10, 2013)
for full info: http://theartofdev.wordpress.com/2013/03/10/html-renderer-1-4-0-0/FeaturesTarget .NET 2.0 Stylesheet loadLoad stylesheet from web StylesheetLoad event that allows overwrite the loaded...
View ArticleUpdated Release: 1.4.1.0 (Mar 10, 2013)
for full info: http://theartofdev.wordpress.com/2013/03/10/html-renderer-1-4-0-0/FeaturesTarget .NET 2.0Stylesheet load Load stylesheet from webStylesheetLoad event that allows overwrite the loaded...
View ArticleNew Post: Clipping of text
I have upload v1.4.1 with a fix, it's a painful problem so let me know if it still happens. Thx.
View ArticleNew Post: Clipping of text
Thanks for the update. I can not reproduce the problem with this build so It looks like it's solved.
View ArticleNew Post: Thinking of Page Support?
Thus HTML Renderer can be a report viewer or something. List<Page> pages = HTMLRenderer.Render(Graphics graphics, Size PageSize);
View ArticleNew Post: Thinking of Page Support?
Can you elaborate on the feature. Is it part of html/css spec?
View ArticleNew Post: Crash in DecodeHtmlCharByCode
String passed in: "Reserve"" (I believe " is a double-quote) Error: Index was outside the bounds of the array. (line 366, HtmlUtils.cs) Fix: ? (still investigating)
View ArticleNew Post: Crash in DecodeHtmlCharByCode
This appears to fix it. I don't THINK it has downstream implications, but it's working for me: private static string DecodeHtmlCharByCode(string str) { var idx = str.IndexOf("&#"); while (idx >...
View ArticleCreated Issue: line-through in CSS renders incorrectly [8651]
When using a CSS class containing text-I see that this works from the Demo app:<span style="text-decoration: line-through">Font style</span>but in my case I must use CSS to define the start...
View ArticleCommented Issue: line-through in CSS renders incorrectly [8651]
When using a CSS class containing text-I see that this works from the Demo app:<span style="text-decoration: line-through">Font style</span>but in my case I must use CSS to define the start...
View ArticleNew Post: fonts that aren't installed on system
Hi there, I've integrated HtmlRenderer into my program and it is a huge improvement over the RichTextBox. Scrolling is smoother and flicker free, and it supports transaprency AND font smooting at the...
View ArticleNew Post: selected color
Hi there, Is there a control-specific way to change the selected fore color and back color? Something I'm overlooking perhaps? For example, all of my custom controls I've written for my app have...
View ArticleNew Post: fonts that aren't installed on system
OK so I looked into this some more and have a solution to propose. The key is in CssUtils.GetCachedFont(), which is the only place in the code where Font's are created. This is the relevant code: if...
View ArticleNew Post: selected color
For now I just overwrote the selected back color const in CssUtils in my copy of the code. It would be nice in the future if the ::selection style property was present in the CSS that it would be...
View ArticleNew Post: fonts that aren't installed on system
OK so I made the changes. They work great. I ended up using a factory pattern as it was more flexible, and allowed me to only have to change two lines of existing code: In CssUtils.GetCachedFont()...
View Article