How A Form With Transparenty Background?
Mar 1, 2011
I have a form that its backcolor and transparentyKey are same.So,it be transparent.But when i use another color than "Control" my form is transparent but not real transparent.The transparent area of form is like untransparent area of form (They are parts of window)!
View 13 Replies
ADVERTISEMENT
Feb 18, 2011
Background of form: black
background of char, bombs and shrooms: transparent
picbox behind char, bombs and shrooms is regular (marioland)
How can i fix it so the transparent parts dont see form as background but marioland as background?
View 12 Replies
Sep 30, 2009
I want to have this effect on my windows form.When the user clicks a thumbnail I want it to show like this (fade in slow motion effect) and also dim the parent form.This page doesn't dim the background parent form.
View 4 Replies
Dec 3, 2010
I am working on a project in VB.net 2008. I have a problem arising while opening a form as modal from a modeless form. I have attached a project to demonstrate the problem. This demonstration contains three forms with following characteristics. [code]...
View 3 Replies
Mar 17, 2011
How do I let the function in a form run in the background without slowing down/stopping my entire application until it has finished?
View 7 Replies
Jul 31, 2010
Is it possible to make the background of a windows form application look like the matrix movie falling characters in VB.net?I have a code for C# console application. I tried so hard but I failed to convert it and make it work on VB form.
View 11 Replies
Feb 5, 2011
how can I make my Form background color transparent?just the form those object/text are not included.
I watched this in yout*** like a month ago, i keep on searching but i cannot find.if you want to be happy, find something you love to do and do it for free, then find someone to pay you for it.
View 1 Replies
Jun 3, 2011
I have a 18kb 1024 x768 jpeg image that is set as background image of my form. The problem is the form now lags like crazy. How can I eliminate the lag?
View 1 Replies
Mar 9, 2011
i was trying to call form2 from form1's background worker's DoWork event . The problem is that when the event runs , form2 gets loaded but it shows not responding.i am also passing a value to form2 at run time which the background worker calculates?
View 9 Replies
Mar 4, 2009
I want to Change BackgroundImage In MDIFORM in VB.Net and Set Picture.
View 1 Replies
Feb 22, 2011
I have a form with a tab control on it. I would like to be able to rotate backgrounds, from the code.I'd especially like to be able to change just one tab on the tab control. I know how to do this in the IDE, of course.)
View 3 Replies
Aug 11, 2010
i would like to change the background color of the form when giving the color name in the textbox and enter it.
View 2 Replies
Apr 20, 2012
How do I change the Background Image of a form ? not with the properties I know how to do it from there I guess . but I want to change it with coding .How do I do that ?
edit : and another thing when I try to add an image to a image box it shows me the image error image. you know when it can't load the image. it actually showed it for 1 second and then it disappear .here is the code for the Image box
ptbplayer.ImageLocation = CurDir() & "Images/player.jpg"
View 3 Replies
Jan 7, 2012
I used a custom form in visual studio. I had set the parent form for mdicontainer as true. When I try to load the childform and the code is form2.show then my design for a custom form image is working but when I add the code:
form2.show form2.mdiparent = mdiparent it won't.
I had set the transparency as = red
backgroundcolor = red
formstyle = none
backgroundimagestyle = none
Everything works fine using a .gif image custom form image but when I put a code "mdiparent" it won't. It is important to put "form2.mdiparent=mdiparent" so that when I clicked the background image which is the "form1" or the parent form the form2 will not go to the back page of form1. It is possible to disable the click event of form1 so that when I clicked it the form2 will not go to its back.
View 2 Replies
Nov 9, 2009
Okay so I'm making an on screen keyboard, and was wondering - when I click something in the background, my form stays on top, how can this be accomplished? Can someone point me in the right direction?
View 5 Replies
Feb 23, 2012
I am trying to create a simply bouncy ball application in VB net; I am using a timer and the FillEllipse() method to try ad create a new circle at every tick of the timer.
Code:
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Dim Gr As Graphics = Me.CreateGraphics
Gr.FillEllipse(Brushes.Teal, X, Y, W, H)
CollisionDetect()
X = X + X_Dir
Y = Y + Y_Dir
Gr.Dispose()
End Sub
The result? The form continously draws onto itself, without clearing the last circle. This means that you end up with a 'line' of spheres together.
To clarify:
X is well, the X-Coords
Y is Y- Y-Coords
X_Dir is an integer, it is added to every iteration of the loop so the next time the loop iterates, it'll be at a different location;
Y_Dir is the same but for the Y Coords;
CollisionDetect() Is empty. It is yet to be filled, it will handle the collision with the sides of the forms. W, H are width and height, respectively.
View 1 Replies
Feb 17, 2010
I would like to have two different colors that transition into each other.
View 9 Replies
Dec 5, 2009
[code]....
View 3 Replies
Jul 1, 2010
How do you move a forms backgroundimage? Like this
picturebox1.left -=1
Is there a way to do this for a forms backgroundimage?
View 9 Replies
Jun 11, 2009
i tried add :
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'Raise the DoWork event in a worker thread.
[Code]....
View 1 Replies
Feb 15, 2012
how to play a video on the background of the form please guide i am really confused
View 7 Replies
Oct 10, 2008
I seem to be having an issue with my form's background overlapping.I have two forms. One form is called the "mainscreen" and the other form is a small bar at the bottom of the mainscreen form, which shows different labels on a set timer interval.Anyway, the mainscreen will soon have a system in which it also runs different screens on a set interval. However, I seem to be having issues with the mainscreen already. I have set it to load a background image, using this code:
Code:
Me.BackgroundImage = New System.Drawing.Bitmap(My.Resources.image1)
[code]......
View 2 Replies
May 12, 2010
I am working on my project that I wish to remove the background color of my form.
View 6 Replies
Feb 22, 2012
I am trying to create a simple VB 2008 application with a resizable form that has a transparent background. Seems easy enough to do, but if I do nothing more than create a new Windows form project with one form, set the transparency key on the form to a colour, and then set the background to the same colour, and then run it, after about 3-5 resize operations, I cannot resize the form anymore, except from the top, if even then. No errors, just odd behaviour.
View 16 Replies
Jul 26, 2011
I am trying to write up a program that has a few forms that you interact with and do various things with but I also need to have a TCP/IP client/server running in the background to handle a automated connection to a PLC. Is there anyway to have the TCP connection open and receiving/sending in the background even when the operator is doing something else?
View 1 Replies
Jul 14, 2010
[code]How can I set the BackColor of the form? How can I use an RGB value?
View 3 Replies
Jul 28, 2009
I have an app that uses transparency so that the background of the app is a custom shape.The problem I am having is the rounded corners are jagged. Not a nice clean rounded corner like you would see on an icon or widget. I have tried several different image types (i.e. PNG, GIF, etc). But it seems when I use the transparency Key the quality on the edges gets worse
View 6 Replies
Jun 8, 2010
I've just recently figured out threading, and how to use it. I was even able to figure how to make a background thread modify the text property of any form control that has a text property.
I figured if you could specify the name of the control whose Text property you want to modify, it could be done easily, and I was right[code]...
Is there a way that you could do this, but eliminate the need to specify the control type as a parameter and maybe have the application determine what control you're trying to use by it's name?
View 2 Replies
Jun 30, 2009
I have two forms -form1 and -form2When from the form1 window, i call to open the form2 window, i want the form1 window to lose its focus-not to be accessible.
View 2 Replies
Jun 12, 2010
How can we set a background picture for a Form? When my form is loaded, I want to display a background picture and on closing, I need to release that from memory (free it).[code]
View 7 Replies