|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Transparent attribute for labelsHi, I created a picturebox with a map as an image. I want to make
certain areas on the map clickable hotspots and the way I'm trying to do this is to create a transparent label with a different cursor (hand) and then I code the click_event for that label. However, I cannot make the label transparent, even if I choose the Transparent option for the attribute for the background color of the label. Any ideas or suggestions? Thanks Off the top of my head, I would not use controls like that because of the
overhead. I would look into graphic reagions and then during the mouse down event change the cursor based on if the x y coordinate is within one of the regions. ====================================== David McCarter www.vsdntips.com VSDN Tips & Tricks .NET Coding Standards available at: www.cafepress.com/vsdntips.20412485 Show quoteHide quote "MikeB" wrote: > Hi, I created a picturebox with a map as an image. I want to make > certain areas on the map clickable hotspots and the way I'm trying to > do this is to create a transparent label with a different cursor (hand) > and then I code the click_event for that label. However, I cannot make > the label transparent, even if I choose the Transparent option for the > attribute for the background color of the label. Any ideas or > suggestions? > > Thanks > > OK, I'm not the sharpest knife in the drawer, but are you telling me
that causing a continuous interrupt stream generated by Mousedown and then the program work to map the x,y location to the region of a hotspot is less work than the isolated event that occurs when the user clicks on the hotspot? The way I'm trying to do it seems to be a LOT less coding. All that I'm having difficulty with is the Transparent attribute for BackColor. Mike dotNetDave wrote: Show quoteHide quote > Off the top of my head, I would not use controls like that because of the > overhead. I would look into graphic reagions and then during the mouse down > event change the cursor based on if the x y coordinate is within one of the > regions. > ====================================== > David McCarter > www.vsdntips.com > VSDN Tips & Tricks .NET Coding Standards available at: > www.cafepress.com/vsdntips.20412485 > > > "MikeB" wrote: > > > Hi, I created a picturebox with a map as an image. I want to make > > certain areas on the map clickable hotspots and the way I'm trying to > > do this is to create a transparent label with a different cursor (hand) > > and then I code the click_event for that label. However, I cannot make > > the label transparent, even if I choose the Transparent option for the > > attribute for the background color of the label. Any ideas or > > suggestions? > > > > Thanks > > > > Just a warning, I have seen the transparency of controls not work with some
video cards, that's why I use regions instead. David Show quoteHide quote "MikeB" wrote: > OK, I'm not the sharpest knife in the drawer, but are you telling me > that causing a continuous interrupt stream generated by Mousedown and > then the program work to map the x,y location to the region of a > hotspot is less work than the isolated event that occurs when the user > clicks on the hotspot? > > The way I'm trying to do it seems to be a LOT less coding. All that I'm > having difficulty with is the Transparent attribute for BackColor. > > Mike > > dotNetDave wrote: > > Off the top of my head, I would not use controls like that because of the > > overhead. I would look into graphic reagions and then during the mouse down > > event change the cursor based on if the x y coordinate is within one of the > > regions. > > ====================================== > > David McCarter > > www.vsdntips.com > > VSDN Tips & Tricks .NET Coding Standards available at: > > www.cafepress.com/vsdntips.20412485 > > > > > > "MikeB" wrote: > > > > > Hi, I created a picturebox with a map as an image. I want to make > > > certain areas on the map clickable hotspots and the way I'm trying to > > > do this is to create a transparent label with a different cursor (hand) > > > and then I code the click_event for that label. However, I cannot make > > > the label transparent, even if I choose the Transparent option for the > > > attribute for the background color of the label. Any ideas or > > > suggestions? > > > > > > Thanks > > > > > > > > This is driving me crazy. I could swear I had this to work and since
last night when I try it out in my project, it again fails! If I have the image on the background of the form, I can create a transparent label whee the cursor changes. If I put the image in a picturebox and place the label over it, I get the blank label overlaying the image. If I then in the load event for the form code label.parent = picturebox Then the label box disappears from the screen and I can't mouse over it, but I can see the image just fine. Ack! What am I overlooking that made it stop working since last week? I've tried Send to back and Bring to front, but that doesn't seem to have any effect, both from the designer and program-wise. I've got such an important part of my project hinging on this and I've kinda misplaced the working sample I had last week, I'm in real trouble. dotNetDave wrote: Show quoteHide quote > Just a warning, I have seen the transparency of controls not work with some > video cards, that's why I use regions instead. > > David > > > "MikeB" wrote: > > > OK, I'm not the sharpest knife in the drawer, but are you telling me > > that causing a continuous interrupt stream generated by Mousedown and > > then the program work to map the x,y location to the region of a > > hotspot is less work than the isolated event that occurs when the user > > clicks on the hotspot? > > > > The way I'm trying to do it seems to be a LOT less coding. All that I'm > > having difficulty with is the Transparent attribute for BackColor. > > > > Mike > > > > dotNetDave wrote: > > > Off the top of my head, I would not use controls like that because of the > > > overhead. I would look into graphic reagions and then during the mouse down > > > event change the cursor based on if the x y coordinate is within one of the > > > regions. > > > ====================================== > > > David McCarter > > > www.vsdntips.com > > > VSDN Tips & Tricks .NET Coding Standards available at: > > > www.cafepress.com/vsdntips.20412485 > > > > > > > > > "MikeB" wrote: > > > > > > > Hi, I created a picturebox with a map as an image. I want to make > > > > certain areas on the map clickable hotspots and the way I'm trying to > > > > do this is to create a transparent label with a different cursor (hand) > > > > and then I code the click_event for that label. However, I cannot make > > > > the label transparent, even if I choose the Transparent option for the > > > > attribute for the background color of the label. Any ideas or > > > > suggestions? > > > > > > > > Thanks > > > > > > > > > > > > MikeB wrote:
> Hi, I created a picturebox with a map as an image. I want to make When you place the label on the PictureBox, the label parented to the> certain areas on the map clickable hotspots and the way I'm trying to > do this is to create a transparent label with a different cursor (hand) > and then I code the click_event for that label. However, I cannot make > the label transparent, even if I choose the Transparent option for the > attribute for the background color of the label. Any ideas or > suggestions? > > Thanks form. If you set the label's parent to the PictureBox, then using a backcolor of transparent will work. Chris Dunaway wrote:
Show quoteHide quote > MikeB wrote: That must be my problem! Can you please tell me how I change or control> > Hi, I created a picturebox with a map as an image. I want to make > > certain areas on the map clickable hotspots and the way I'm trying to > > do this is to create a transparent label with a different cursor (hand) > > and then I code the click_event for that label. However, I cannot make > > the label transparent, even if I choose the Transparent option for the > > attribute for the background color of the label. Any ideas or > > suggestions? > > > > Thanks > > When you place the label on the PictureBox, the label parented to the > form. If you set the label's parent to the PictureBox, then using a > backcolor of transparent will work. the parentage of the control? Thanks so much Mike MikeB wrote:
> That must be my problem! Can you please tell me how I change or control Just use a line like this:> the parentage of the control? label1.Parent = PictureBox1 Chris Dunaway wrote:
> MikeB wrote: Thank you again. That was really helpful.> > > That must be my problem! Can you please tell me how I change or control > > the parentage of the control? > > Just use a line like this: > > label1.Parent = PictureBox1 PS. I'm kinda new to the VB scene
Windows Service, timer doesn't tick
Copy Directory split container Help with some research multi line list box Rendering Vector Images VB.NET 2005 WebClient file download via HTTPS Q: sum of column Run Adobe Acrobat from within VB.Net app How to close the parent and all child forms together at once when click on parent window's close but |
|||||||||||||||||||||||