Make A Transparent/colourless Clickable Area?

Oct 10, 2009

I've search for hours on Google but could find a solution.want a clickable area (that can handle MouseClickEvent, DoubleClickEvent, etc...) that is transparent, hence you can look through it.For example:I have Form1 with a bunch of buttons, text fields, etc. I want a clickable area that is over the whole Form1 (thus over all the buttons, etc).If you click this area, the clickEvent for this area should be could and not the eg: button underneath this area.Most importantly of all the area must be transparent, thus all the buttons, textfields, etc underneath the clickable area should be visible. Something like a panel or pictureBox that you could put over the buttons would be ne, but a if you drag a panel/pictureBox over a button, the button is invisible, and if you say send to back, the event of the button will be called and not that of the clickable area.

View 14 Replies


ADVERTISEMENT

Clickable Area That Is Transparent/colourless?

Oct 10, 2009

I want a clickable area (that can handle MouseClickEvent, DoubleClickEvent, etc...) that is transparent, hence you can look through it.For example: I have Form1 with a bunch of buttons, text fields, etc. I want a clickable area that is over the whole Form1 (thus over all the buttons, etc).If you click this area, the clickEvent for this area should be could and not the eg: button underneath this area.Most importantly of all the area must be transparent, thus all the buttons, textfields, etc underneath the clickable area should be visible.Something like a panel or pictureBox that you could put over the buttons would be fine, but a if you drag a panel/pictureBox over a button, the button is invisible, and if you say send to back, the event of the button will be called and not that of the clickable area.

I've attached an image as example.I want the blue area (in this case a picture box) over ALL the buttons and textboxes, so that if you click this blue area a function should be called. This area should actually not be blue, but transparent/colourless, so that you can see the buttons underneath. If I say send the picturebox behind the buttons, then when I click on a button, the button's function is called and not the picture box's function as I want it.It is impossible for me to change all the event handlers of the buttons/textboxes etc, because I also use components that don't have the necessary event handlers that I want. So this is the only possible method I can think of.

View 1 Replies

Clickable Area That Is Transparent / Colorless

Oct 10, 2009

I want a clickable area (that can handle MouseClickEvent, DoubleClickEvent, etc...) that is transparent, hence you can look through it.For example: I have Form1 with a bunch of buttons, text fields, etc. I want a clickable area that is over the whole Form1 (thus over all the buttons, etc).If you click this area, the clickEvent for this area should be could and not the eg: button underneath this area.Most importantly of all the area must be transparent, thus all the buttons, textfields, etc underneath the clickable area should be visible. Something like a panel or pictureBox that you could put over the buttons would be fine, but a if you drag a panel/pictureBox over a button, the button is invisible, and if you say send to back, the event of the button will be called and not that of the clickable area.I want the blue area (in this case a picture box) over ALL the buttons and textboxes, so that if you click this blue area a function should be called. This area should actually not be blue, but transparent/colourless, so that you can see the buttons underneath. If I say send the picturebox behind the buttons, then when I click on a button, the button's function is called and not the picture box's function as I want it.It is impossible for me to change all the event handlers of the buttons/textboxes etc, because I also use components that don't have the necessary event handlers that I want.

View 5 Replies

Interface And Graphics :: Clickable Transparent Area On PictureBox

Jul 25, 2011

i'm working on Virtual K770i project - there is a picture of mobile, now i want to create clickable areas on "keypad" of mobile....I'm got idea about transparent label or something but transparency dont work on any object but Form1 - so how to make transparent clickable areas on picture box (see a picture)

View 2 Replies

Transparent But Clickable Button?

Apr 29, 2009

I monitor door cameras with a third party application that gives me multiple video windows for the various video inputs in the card. I want to create an application that will overlay the video windows so that each video window becomes a button I can click on to trigger some events (lock release for example).

I've managed to get something working by using the TransparencyKey of the form set to the backcolor of my button. I though I had it done, a great transparent button in the form, and handles all my click. However, there's a little issue with portability... it won't work if I have the Windows Classic theme enabled.

One of my systems is locked down with the windows classic theme. With the Windows classic theme (whether running XP or Vista), the transparency works a little too well, the mouse clicks actually go through to the underlying window and the click event never gets triggered on my application's button.

Button1.BackColor = Color.Cyan Me.TransparencyKey = Button1.BackColor

View 1 Replies

VS 2010 Making A Transparent, Clickable Button OR Label?

Oct 28, 2011

First post here, so I have no clue if this is the right place to ask this or not, but it looked like it.

Anyways, what I'm trying to do as an exercise is make a roulette game. I decided it would be best to put my buttons ON the actual table itself, so that the player can click which one he wants to bet on, and it'll bring up an Input Box asking how much he wants to bet, and yeah.

So, I tossed a button on there, set the parent to the picturebox of the roulette table, set the back color to transparent, and got rid of the text. Lo and behold, it's transparent!

View 13 Replies

How To Create Transparent Label In Menu Area

Aug 23, 2010

I've read many articles on how to create transparent labels but it seems to me that my particular case is not covered. Very simply I have a label placed in the upper right part of the form, which in fact is part of the menu strip. The label displays some info to the user but I wish it were transparent. I've tried various methods including
lblAct.Parent = mnuMain '(or Me)
lblAct.BackColor = Color.Transparent
lblAct.BringToFront()
But cant get it to work. How I can make that label in that position transparent?

View 1 Replies

Make Part That Drops Down Semi-transparent Or Completely Transparent Resembling Floating Text?

Oct 27, 2010

[code] how to make the part that drops down semi-transparent or completely transparent resembling floating text. So that I can see the form underneath.

View 1 Replies

Make Userform Transparent But Have Non-transparent Controls?

Mar 7, 2008

Question:Is it possible to make a userform transparent but have non-transparent controls?I notice changing the opacity of the userform will change the opacity of controls embedded on it.

View 9 Replies

Make Clickable Map Image?

Jan 24, 2010

For my own amusement more than anything I am trying to create a program that has a world map then when you click on each country it leads to another form. At the moment I have the World Map as a background image on a forum, The only way I can think of at the moment is to have picture boxes but the countries are too packed together for this to work effectively and I believe that you can have transparent backgrounds on picture boxes.

View 3 Replies

How To Make Clickable Links From Objectdatareader

Oct 20, 2011

This code works fine, the listbox shows the posts. But how do I get the posts on the front side show up as clickable links. Maybe not in the Listbox, perhaps in a panel or similar object? [code]

View 1 Replies

Make Clickable Images On Another Image?

Feb 28, 2012

I have a background image,how to display the clickable images over the background image by using graphycs in vb.net?

View 3 Replies

Make Datagrid Cell Clickable?

Apr 27, 2011

after pulling the data into the datagrid. how can i make the cell clickable ,like if i select any cell ,the new form should come up.

im using ms access 2007

View 3 Replies

RSS Reader - How To Make Links Clickable

Jun 11, 2010

heres what i have.. and i got it fully working... except.. I can't make the links clickable to open a new web browser window for some reason.. and how would I clean this up a bit too?

[Code]...

View 1 Replies

Want To Disable TabPage3 To Make It Not Clickable

May 10, 2010

I just want to disable the TabPage3 to make it not clickable but it simply not working for me. Any idea why? I'm trying to use VB2008. :)[code]

View 13 Replies

Datagrid Organization - Make Form Not Clickable

Oct 3, 2011

May I ask a suggestion about this datagrid. I have this datagrid but it has so many column and I am going to total each and every column. If I am going to put a textbox or label, it'll be kinda difficult because it will not align to the column. Any solution you may suggest?

Another thing is this form for Daily Income. I want the form at the back (Main Form) not clickable unless I closes the Daily Income Form. So that the Daily Income Form will not go at the back of the Main Form. It is like you were saving a file on a text editor that you can't click the window behind it.

View 14 Replies

Make A DataGridViewImageColumn Clickable To Call A Function

Sep 4, 2011

I have a DataGridViewImageColumn with an image in it I would like to make the only area to perform a function of mine when I click it. I can click the row and get it to work but can't seem to only make just the imagecloumn the clickable region.

So as an example I have
Private Sub dgrdStatus_CellClick(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles dgrdStatus.CellClick
MessageBox.Show("You chose " & dgrdStatus.Rows(e.RowIndex).Cells("columnCustomerName").Value)

Works for the whole row, my issue is I only want to be able to click the imagecolumn to do this. Guessing I am missing the right item similar to dgrdStatus_CellClick but can't quite pinpoint the fix.

View 5 Replies

Make An Irregular Shape "clickable'?

Apr 20, 2009

How to make a whole country (irregular shape) clickable?

View 4 Replies

Forms :: Displaying Text And Make Words Clickable

Aug 15, 2009

I want to make a small program which displays a text, and the words of this text are clickable, I mean when I click on a word I want to display some explanations to it. I want the same structure except that instead of URLs I want to display some text when clicking on a word. So my question is : Is there a control for this kind of use?

View 4 Replies

Make A Taskbar / Notification Area?

Oct 9, 2009

How do I make a Taskbar / Notification Area like the Windows Vista TaskBar/Notification Area?What objects would i need to use, what codes would i need to use?(I'm making a application that looks like your desktop but its not a real desktop, but it edits REAL stuff in the openfiledialog & save)

View 6 Replies

Code - Make A Simple Area Calcutor

May 22, 2011

I am not a computer programmer and I have never used Visual Basic before but I have to take a class about using it. I am trying to make a simple Area calcutor but what it is telling me in my book to do isn't working.

View 1 Replies

Make Customized Borderstyles, Create 'raised Area' Looks?

Jul 12, 2010

I've been working with System.Drawing for awhile and like to think I have a good handle on it; I've created classes that draw grids, write text in gridboxes and rectangles, convert rectangles to circles, fill areas with color, etc. What I don't have is any sense of artistry at all, and I don't have the slightest clue how one would use System.Drawing to draw a rectangle and then color/slope the edges so that it looks like a System.Windows.Forms.Button would, or how to make it look like it's inset deeper than the surrounding Form, like setting a Panel's BorderStyle to Fixed3D.

View 3 Replies

Make Image Area's And List The Images In The Folders

Aug 3, 2011

i have a program with the ability to save view and scan images. i am currently working on making work area's. so i have two list box's. listbox one is for the image area name. listbox2 is to list the pages in selected image area (mouse click). i have created the form to show you and i will post a link below. i have started trying to do it but have got stuck. i use an input box to give the image area's names. but thats as far as i have got at the min.

i need to be able to make image area's and list/view the images in my picturebox. plus i would like to create a folder or how ever many the user makes behind the scene thats called whatever the image area is called and in that folder is the images the user has saved in that folder. sorry if this is hard to understand. i have asked on another forum but i didnt get what i wanted it to do.

[URL]

i have gave you a link so you can see what my form looks like so you have a slight understanding on what i want it to do. its work in progress so sorry if it looks rubbish.

by the way i can save an image but it only saves it one certaint place and i cant save more thasn one as it replaces the image. and as for the scanned image thats the same.

View 4 Replies

Make The Program Appear In Notification Area And Run As Soon As Windows Startup?

Dec 21, 2009

how to make my application run in notification area and run in windows start up

View 1 Replies

How To Make TextBox Transparent

Sep 11, 2007

Can I make TextBox transparent?

View 8 Replies

How To Make A Groupbox Transparent In VB

Mar 12, 2009

The question pretty much says it all, I've tried setting the backcolour to transparent in the properties section, but it didnt seem to work. I have a picture behind the groupbox that I need to show through it. Is there a specific way of doing this?

View 2 Replies

How To Make PictureBox Transparent

Dec 8, 2009

How can I make a picturebox transparent?

View 8 Replies

How To Make Windows Transparent

Aug 24, 2011

how do you make windows tranparent? Never Fear Spartucus49 is here

View 8 Replies

Make A TextBox Transparent?

Jun 17, 2010

Is it possible to make a TextBox transparent?

I have a form that has a gradient background and I need the textbox to allow the user to type into and it shows the text and the blinking cursor carrot when it has focus, other than that it's totally transparent, like a label.

View 1 Replies

Make A Transparent Label?

Jun 23, 2009

I searched the forums and most of the topics involving this seem to be for Compact Framework. I need a transparent text label which shows an object directly beneath it. In this case, a rectangle. (Visual Studio 2010) I noticed that when I set the label background to transparent it shows the form bg instead of anything between the label and the form. How can I work around this without setting my form background to an image? If I were to make a custom control for it, how would that be achieved?

View 5 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved