HTML label
Started by AIM, Mar 21 2008 12:30 PM
11 replies to this topic
#1
Posted 21 March 2008 - 12:30 PM
Hi Boki,
are there any plans to implement a TNxHtmlLabel component with the same functionality as the NxHtmlColumn in a future release?
are there any plans to implement a TNxHtmlLabel component with the same functionality as the NxHtmlColumn in a future release?
#2
Posted 21 March 2008 - 12:41 PM
Hello Aim,
Yes, I think that I will add it in near future.
Best regards
Yes, I think that I will add it in near future.
Best regards
boki@bergsoft.net | LinkedIn Profile
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.
#3
Posted 31 March 2008 - 11:26 AM
I just wanted to say thanks for the new HtmlLabel component, great new component!!!
Two things that could be improved:
1. When placing the component onto a form it would be nice if you could initialize the Caption field with the Name.
2. When you click a link, then all Slashes are removed from the link (HRef param in "OnLinkClick").
Two things that could be improved:
1. When placing the component onto a form it would be nice if you could initialize the Caption field with the Name.
2. When you click a link, then all Slashes are removed from the link (HRef param in "OnLinkClick").
#4
Posted 31 March 2008 - 07:38 PM
Hello Aim,
Regarding 2nd thing, please open NxClasses.pas
Find ProcessHtml procedure and next line:
replace it with
I hope that it works now.
Best regards
Regarding 2nd thing, please open NxClasses.pas
Find ProcessHtml procedure and next line:
CODE
else if c = '/' then Closing := True
replace it with
CODE
else if (c = '/') and not OpenQuote then Closing := True
I hope that it works now.
Best regards
boki@bergsoft.net | LinkedIn Profile
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.
#5
Posted 31 March 2008 - 10:23 PM
Hi Boki,
it works fine now, thank you...
it works fine now, thank you...
#6
Posted 02 April 2008 - 01:09 PM
Hi Boki,
The code you mentioned is located in NxSharedCommon and not NxClasses.
The code you mentioned is located in NxSharedCommon and not NxClasses.
QUOTE (AIM @ Mar 31 2008, 11:23 PM) <{POST_SNAPBACK}>
Hi Boki,
it works fine now, thank you...
it works fine now, thank you...
G.W. van der Vegt
#7
Posted 02 April 2008 - 01:48 PM
Hello Wim,
You are correct. It is in NxSharedCommon.pas
Best regards
You are correct. It is in NxSharedCommon.pas
Best regards
boki@bergsoft.net | LinkedIn Profile
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.
#8
Posted 02 April 2008 - 01:56 PM
Hi Boki,
Is it possible to add support for <sup> and <sub> tags (super and subscript) so you can use the html label to to visualize simple math?
Is it possible to add support for <sup> and <sub> tags (super and subscript) so you can use the html label to to visualize simple math?
G.W. van der Vegt
#9
Posted 02 April 2008 - 02:15 PM
Hello Wim,
I think that it is possible and relatively easy. I will try to add them for upcoming update.
Best regards
I think that it is possible and relatively easy. I will try to add them for upcoming update.
Best regards
boki@bergsoft.net | LinkedIn Profile
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.
#10
Posted 12 May 2008 - 11:30 AM
I think there is a bug in HTML-label...
I can't get the AutoSize-property to work... ???
I can't get the AutoSize-property to work... ???
#11
Posted 12 May 2008 - 04:11 PM
Hello Aim,
I will try to do something about it.
Best regards
I will try to do something about it.
Best regards
boki@bergsoft.net | LinkedIn Profile
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.
#12
Posted 12 May 2008 - 09:26 PM
Hello Aim,
Try to replace last lines of ProcessHtml procedure to:
Please tell me how it works now.
Best regardsa
Try to replace last lines of ProcessHtml procedure to:
CODE
if TextBuffer = '' then TextBuffer := TagBuffer;
Result.Size.cy := Y - Rect.Top + GetTextHeight(Canvas, TextBuffer);
Result.Size.cy := Y - Rect.Top + GetTextHeight(Canvas, TextBuffer);
Please tell me how it works now.
Best regardsa
boki@bergsoft.net | LinkedIn Profile
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.
--
BergSoft Home Page: www.bergsoft.net
Users Section: users.bergsoft.net
Articles and Tutorials: help.bergsoft.net (Developers Network)
--
BergSoft Facebook page
--
Send us applications made with our components and we will submit them on: www.bergsoft.net/apps.htm. Link to this page will be also set on home page too.
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users











