473,396 Members | 1,892 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Image.ToolTip not working

Hi,

I have a webapplication (asp.net)

Snippet:
Dim Img As New System.Web.UI.WebControls.Image
Img.ID = "Image1"
Img.ToolTip = "Trou"
Img.ImageUrl = "http://localhost/images/0.bmp"
Img.Style.Add("left", "50%")
Img.Style.Add("top", "50%")
Img.Style.Add("position", "absolute")
Page.Controls.Add(Img)

I see the image on my form

When I place the cursor over the image the Tooltip is not displayed !
Also, I cannot save the Image with Right Click !

How can I display the ToolTip ?

Thanks
Stephane Gagnon
Nov 19 '05 #1
9 2173
I tested ur code and i can see the tooltip !!

"SteFetS" wrote:
Hi,

I have a webapplication (asp.net)

Snippet:
Dim Img As New System.Web.UI.WebControls.Image
Img.ID = "Image1"
Img.ToolTip = "Trou"
Img.ImageUrl = "http://localhost/images/0.bmp"
Img.Style.Add("left", "50%")
Img.Style.Add("top", "50%")
Img.Style.Add("position", "absolute")
Page.Controls.Add(Img)

I see the image on my form

When I place the cursor over the image the Tooltip is not displayed !
Also, I cannot save the Image with Right Click !

How can I display the ToolTip ?

Thanks
Stephane Gagnon

Nov 19 '05 #2
"=?Utf-8?B?dmluYXk=?=" <vi***@discussions.microsoft.com> wrote in
news:09**********************************@microsof t.com:
I tested ur code and i can see the tooltip !!


Doo! I don't understand.... Have u put the snippet in the Page_Load sub ?
Nov 19 '05 #3
"=?Utf-8?B?dmluYXk=?=" <vi***@discussions.microsoft.com> wrote in
news:09**********************************@microsof t.com:
I tested ur code and i can see the tooltip !!


Ok ... try this and the tooltip will not work

I think it is because the image is ''UNDER'' the Table

____

Dim Img As New System.Web.UI.WebControls.Image
Img.ID = "Image1"
Img.ToolTip = "Trou"
Img.ImageUrl = "http://localhost/images/0.bmp"
Img.Style.Add("left", "50%")
Img.Style.Add("top", "50%")
Img.Style.Add("position", "absolute")
Page.Controls.Add(Img)

Dim TotalJeux As Integer = 5
Dim RollPerJeu As Integer = 5

Dim j As Integer

For j = 0 To TotalJeux - 1

Dim Jeu As New TableRow
Jeu.Width = Unit.Percentage(100)
Trim.Rows.Add(Jeu)

Dim i As Integer
For i = 0 To RollPerJeu - 1
Dim Rouleau As New TableCell
Rouleau.Text = "Rouleau" & i.ToString
Rouleau.BorderColor = Color.Black
Rouleau.BorderStyle = BorderStyle.Solid
Rouleau.BorderWidth = Unit.Pixel(1)
Select Case i
Case 0
Rouleau.Width = Unit.Percentage(20)
Case 1
Rouleau.Width = Unit.Percentage(30)
Case 2
Rouleau.Width = Unit.Percentage(20)
Case 3
Rouleau.Width = Unit.Percentage(10)
Case 4
Rouleau.Width = Unit.Percentage(20)
End Select

Jeu.Cells.Add(Rouleau)

Next i

Next j
End Sub
Nov 19 '05 #4
Maybe you have Web Browser compatibility issue.

From MSDN about ToolTip:
"This property is rendered for all browsers. However, only Microsoft
Internet Explorer will display this property as a ToolTip. All other
browsers will ignore this property".

Leszek Taratuta

"SteFetS" <NO*************@hotmail.com> wrote in message
news:Xn**********************************@207.35.1 77.135...
Hi,

I have a webapplication (asp.net)

Snippet:
Dim Img As New System.Web.UI.WebControls.Image
Img.ID = "Image1"
Img.ToolTip = "Trou"
Img.ImageUrl = "http://localhost/images/0.bmp"
Img.Style.Add("left", "50%")
Img.Style.Add("top", "50%")
Img.Style.Add("position", "absolute")
Page.Controls.Add(Img)

I see the image on my form

When I place the cursor over the image the Tooltip is not displayed !
Also, I cannot save the Image with Right Click !

How can I display the ToolTip ?

Thanks
Stephane Gagnon

Nov 19 '05 #5
"Leszek Taratuta" <ad*@taratuta.net> wrote in news:ek$U6Wl$EHA.1524
@TK2MSFTNGP09.phx.gbl:
Maybe you have Web Browser compatibility issue.


Look at my last post in this topic.

I create a table with rows and cells

After I create an Image and the tooltip is not working.

If I don't create the table the tooltip work fine.

Nov 19 '05 #6
This is what i got in viewsource..
Please check the page viewsource if it has created "title='Trou'"

<img id="Image1" title="Trou"
src="http://localhost/WebApplication1/CGAM.bmp" border="0"
style="left:50%;top:50%;position:absolute;" />
"SteFetS" wrote:
"Leszek Taratuta" <ad*@taratuta.net> wrote in news:ek$U6Wl$EHA.1524
@TK2MSFTNGP09.phx.gbl:
Maybe you have Web Browser compatibility issue.


Look at my last post in this topic.

I create a table with rows and cells

After I create an Image and the tooltip is not working.

If I don't create the table the tooltip work fine.

Nov 19 '05 #7
"=?Utf-8?B?dmluYXk=?=" <vi***@discussions.microsoft.com> wrote in
news:D3**********************************@microsof t.com:
This is what i got in viewsource..
Please check the page viewsource if it has created "title='Trou'"


Yes I have it but try the following code and it will not work no more :o(
Sub Page_Load

Dim Img As New System.Web.UI.WebControls.Image
Img.ID = "Image1"
Img.ToolTip = "Trou"
Img.ImageUrl = "http://localhost/images/0.bmp"
Img.Style.Add("left", "50%")
Img.Style.Add("top", "50%")
Img.Style.Add("position", "absolute")
Page.Controls.Add(Img)

Dim TotalJeux As Integer = 5
Dim RollPerJeu As Integer = 5

Dim j As Integer

For j = 0 To TotalJeux - 1

Dim Jeu As New TableRow
Jeu.Width = Unit.Percentage(100)
Trim.Rows.Add(Jeu)

Dim i As Integer
For i = 0 To RollPerJeu - 1
Dim Rouleau As New TableCell
Rouleau.Text = "Rouleau" & i.ToString
Rouleau.BorderColor = Color.Black
Rouleau.BorderStyle = BorderStyle.Solid
Rouleau.BorderWidth = Unit.Pixel(1)
Select Case i
Case 0
Rouleau.Width = Unit.Percentage(20)
Case 1
Rouleau.Width = Unit.Percentage(30)
Case 2
Rouleau.Width = Unit.Percentage(20)
Case 3
Rouleau.Width = Unit.Percentage(10)
Case 4
Rouleau.Width = Unit.Percentage(20)
End Select

Jeu.Cells.Add(Rouleau)

Next i

Next j
End Sub
Nov 19 '05 #8
it works, try this ..

Dim TotalJeux As Integer = 5
Dim RollPerJeu As Integer = 5

Dim j As Integer

For j = 0 To TotalJeux - 1

Dim Jeu As New TableRow
Jeu.Width = Unit.Percentage(100)
Trim.Rows.Add(Jeu)

Dim i As Integer
For i = 0 To RollPerJeu - 1

Dim Img As New System.Web.UI.WebControls.Image
Img.ID = "Image" & i
Img.ToolTip = "Trou" & i
Img.ImageUrl = "http://localhost/WebApplication1/GE Logo1.jpg"

Dim Rouleau As New TableCell
Rouleau.Text = "Rouleau" & i.ToString
Rouleau.BorderColor = Color.Black
Rouleau.BorderStyle = BorderStyle.Solid
Rouleau.BorderWidth = Unit.Pixel(1)
Select Case i
Case 0
Rouleau.Width = Unit.Percentage(20)
Rouleau.Controls.Add(Img)
Case 1
Rouleau.Width = Unit.Percentage(30)
Rouleau.Controls.Add(Img)
Case 2
Rouleau.Width = Unit.Percentage(20)
Rouleau.Controls.Add(Img)
Case 3
Rouleau.Width = Unit.Percentage(10)
Rouleau.Controls.Add(Img)
Case 4
Rouleau.Width = Unit.Percentage(20)
Rouleau.Controls.Add(Img)
End Select

Jeu.Cells.Add(Rouleau)

Next i

Next j


"SteFetS" wrote:
"=?Utf-8?B?dmluYXk=?=" <vi***@discussions.microsoft.com> wrote in
news:D3**********************************@microsof t.com:
This is what i got in viewsource..
Please check the page viewsource if it has created "title='Trou'"


Yes I have it but try the following code and it will not work no more :o(
Sub Page_Load

Dim Img As New System.Web.UI.WebControls.Image
Img.ID = "Image1"
Img.ToolTip = "Trou"
Img.ImageUrl = "http://localhost/images/0.bmp"
Img.Style.Add("left", "50%")
Img.Style.Add("top", "50%")
Img.Style.Add("position", "absolute")
Page.Controls.Add(Img)

Dim TotalJeux As Integer = 5
Dim RollPerJeu As Integer = 5

Dim j As Integer

For j = 0 To TotalJeux - 1

Dim Jeu As New TableRow
Jeu.Width = Unit.Percentage(100)
Trim.Rows.Add(Jeu)

Dim i As Integer
For i = 0 To RollPerJeu - 1
Dim Rouleau As New TableCell
Rouleau.Text = "Rouleau" & i.ToString
Rouleau.BorderColor = Color.Black
Rouleau.BorderStyle = BorderStyle.Solid
Rouleau.BorderWidth = Unit.Pixel(1)
Select Case i
Case 0
Rouleau.Width = Unit.Percentage(20)
Case 1
Rouleau.Width = Unit.Percentage(30)
Case 2
Rouleau.Width = Unit.Percentage(20)
Case 3
Rouleau.Width = Unit.Percentage(10)
Case 4
Rouleau.Width = Unit.Percentage(20)
End Select

Jeu.Cells.Add(Rouleau)

Next i

Next j
End Sub

Nov 19 '05 #9
"=?Utf-8?B?dmluYXk=?=" <vi***@discussions.microsoft.com> wrote in
news:BE**********************************@microsof t.com:
it works, try this ..


Yes It works :)

But... if I add text property for the TableCell, it is not displayed !

Rouleau.Width = Unit.Percentage(20)
Rouleau.Text = "B0A55A2001100"
Rouleau.Controls.Add(Img)

Text and Image cannot cohabit within a TableCell ?

PS: I don't see the Text when I View Source :(
Nov 19 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: luckyjameel | last post by:
HI Friends Is it Possible to put a image in a tooltip if so how can i do that Regards Lucky
1
by: mphanke | last post by:
Hi, I would like to place an Icon on an Image. If the mouse is over this Icon, I want to display the associated text in a tooltip. How would I do this? Any ideas? My last request wasn't...
6
by: ltt19 | last post by:
HI everyone, So, I have many buttons, and all of them must show a tooltip with the same string, except one word, that I must read this owrd from a variable. Although, the "ToolTip on x" property...
9
by: Maxi | last post by:
There is a very good javascript available at the following link that displays image and text wherever mouse follows a link. http://www.dynamicdrive.com/dynamicindex4/imagetooltip.htm I have a...
1
by: www.web20developers.com | last post by:
http://www.web20developers.com http://www.web20developers.com/index.php?option=com_content&task=view... Ajallerix : AJAX, simple, fast Web image gallery demo ; at Novell AJAX -...
2
by: Eadmund | last post by:
Hi all, Odd question / problem: I'm using a tooltip fom the "Dynamic Drive DHTML code library (www.dynamicdrive.com) - v-cool" - (snipits that are relevant trimed for readability and included...
3
by: Rainer Queck | last post by:
Hi NG, working on a project in VS2005 I started to add ToolTips. My problem now is, that each ToolTip only shows once. mouving the mouse over a button shows its tooltip, moving to the next...
1
by: =?Utf-8?B?RnJlZEM=?= | last post by:
My application uses the tooltip to display "realtime" data. When a user hovers over a control, information like temperatures and pressures are displayed in the tooltip. Using...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.