Shawn,

here's some code for you to try:

code:
Break ON
$m = CreateObject("kixtart.form")
$m.caption = "Test .hyperlink object"
$m.width = 800
$m.height = 100
$m.top=($m.screen.height - $m.height) / 2
$m.Left = ($m.screen.width - $m.width) / 2
$m.borderstyle = 1
$m.fontsize = 8
$m.fontname = "helvetica"
$m.forecolor = 0
$m.fontbold = 0
$m.visible = 1
$x="Hover over a hyperlink to see a tooltip. Notice the tooltip contains the full string!!!"
$label = $m.label($x,15,2,750,15)
$x = "1 2 3 4 5 6 7 8 9 0 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z"
$msg = $m.hyperlink($x,15,29,750,15)
$x = "This_is_a_very_long_text_without_any_spaces_in_it_to_test_the_.hyperlink_object._As_you_can_see_it_is_able_to_use_a_long_text_as_long_as_there_are_no_spaces_in_it..."
$msg1 = $m.hyperlink($x,15,48,750,15)
While $m.visible
$=Execute($m.doevents)
Loop
Exit 0

Jooel,

as you can see the bug also appears "outside" the slider...
_________________________
Greetz,
Patrick Rutten

- We'll either find a way or make one...
- Knowledge is power; knowing how to find it is more powerful...
- Problems don't exist; they are challenges...