Make A Certian Function That Will Fade Out [make A Black Screen That Fades Out For 2 Seconds] Then Come Back?
Oct 12, 2010
Can I make a certian function that will fade out [make a black screen that fades out for 2 seconds], then come back? Is that possible? ON A FORM.
View 3 Replies
ADVERTISEMENT
Oct 24, 2009
make the screen fade.By fade i mean you know when you goto Start>Turn Of My Computer in Xp and the screen turns black and white.
View 7 Replies
Jul 15, 2010
I have created a splash screen and would like it to display for 5 seconds and then display the MainMenu form. The book I am following suggested using
Threading.Thread.Sleep(5000)
but it just makes the splash screen APPEAR after 5 seconds of nothing.
View 21 Replies
Jun 29, 2011
I can get a shape to go down and reappear at the top but I can't figure out how to get it to work going up.This is my code for going down:
If shpBar.Top + shpBar.Height < Me.Height Then
shpBar.Top += 50
Else
shpBar.Top = 0
End If
View 2 Replies
Nov 30, 2011
I'm currently making a huge project. So huge it is split into four separate applications. I want the form to fade to black once the user logs on and only fade up when the new program has fully loaded. I've tried various methods, such as having the second program write to a file on the C: drive, then have the first program wait until that file exists to fade out.Is there a more efficient way? My method isn't working... the form will fade to black, but you get a glimpse of the desktop just before the new program launches (both are full screen apps btw)
View 1 Replies
Apr 20, 2006
In XP when you go to shut down, windows fades to black and white. I think that's a nice effect.How would i go about fading a color image (image box stretched - like a screen saver) to black and white...?
Has this ever been done? Is their a code snippet that already exsists?
View 8 Replies
May 1, 2012
I'm trying to make a picture box do a "fade in" effect. I just don't exactly know how to code it. The general premise is, in the main form's load event handler, I'd run a procedure so that when the form opens up, a picture will fade in. I have 20 copies of the same picture, each gradually less and less faded.I was thinking of cycling through an array of all the images with a timer control so it animates and fades in.
View 1 Replies
Jan 12, 2011
How do I make a picture box image fade in?
View 10 Replies
Feb 6, 2010
I have tried this:
For i = 255 To 1 Step -1
MyPanel.BackColor = Color.FromArgb(i,Color.Red)
Next
This will make the background color fade to transparent.The problem is, I don't want only the background color to change.I want to change the visibility / opacity of all the controls inside that panel too..
View 21 Replies
Aug 23, 2009
How do I make a loop from 1 to 100 and make it everytime it loops display incrementing numbers to the screen?
View 1 Replies
May 19, 2010
Can i make from this image to make it Loading Screen I mean i put this in Form1 [URL] And i want when the program start the progressbar (the white line to load)
View 1 Replies
May 23, 2010
I want to make my system is the only system in the windows the user Can use it like games
since i want to make the background of my system is Black [code]...
View 1 Replies
Apr 9, 2010
Is it possible to make the scrollbars in my webbrowser a thin black line which moves up and down, instead of the usual ones?So its just a black line (maybe 3pt thick) which is OVER the content, on the right hand side. So as you scroll the black line changes size like a normal scrollbar, but it isn't separated from the content, its actually over the top of it.Sort of like the scrollbars on an iPhone if you've seen them.
View 3 Replies
Dec 21, 2009
I had to "Enhance" the small tool tip, as when you press ctrl or alt it fades, so the screen shot only showed it lightly.
I Should mention it works, some of the time. I am Passing strings in this format:
CODE:
View 7 Replies
Jun 5, 2009
I am using the cursor converter to set both
dim cCon as cursorconverter = new cursorconverter
me.cursor = cursorconverter.ConvertFrom(myCursor.cur)
and
windows.forms.cursor.current = cursorconverter.ConvertFrom(myCursor.cur)
the reason for setting both is that otherwise the cursor will not always have the desired appearance. I know that cursors can be rendered in color, like 3D-Bronze, windows animated, hands and variations.
View 9 Replies
Oct 23, 2009
I'm not positive if this should be here or in graphics so I'm sorry if I'm posting it in the wrong section.I'm trying to make a program for the game Go. Now before getting upset that I want to make the game go I just want to say that I have looked for months for this specific thing and I still have yet to find it. I want to make something to simulate go so that two people can play on the same computer. The problem I ran into was capturing stones. Stones are captured when surrounded and then they are taken from the board. The problem is that I don't know how to make the program know when a black stone is surrounded.
I have thought of a grid detecting but the possibilites on a 19x19 area are too high for anybody to sit down and program. I have also thought of using picture boxes and the edges to detect other pictures, but there are ways for stones to group together and the opponent must surround all stones to capture them.
View 3 Replies
Apr 15, 2010
I am trying to make a calculator program. I would like the display(text box) to have a white background, with black font. So I set the "enabled" property of the textbox to "false"(because I want it to display, not receive input) and then choose the background colour to be white. In the form designer, the text colour is black, which is what I want.But when I start debugging, the text becomes the colour of the form. How can I make the font black?
View 3 Replies
Mar 8, 2011
i would like to pause and show my splash screen for few moments when the program loads. How can i do it in vb.net winforms...
View 2 Replies
Mar 15, 2009
i was wondering How Would I make Like Button Two Click It Self Like Every 2 seconds so like once I run The Debug It ...It Will Start Clicking It self every 2 seconds
View 2 Replies
Oct 26, 2010
shutdown -s t 60shuts down the PC in 1 minute. I would like to make the seconds part of the syntax variable as:Dim varSec as integer Process.start(shutdown s t & varSec)But it doesnt work nor produces errors. Can it be done this way?
View 3 Replies
Apr 22, 2012
How to make 5 seconds pause in VB?
View 4 Replies
Dec 5, 2009
[code]I would like to have a smooth fade in effect.no fade out.This code doesnt work.It juts loads the form with no fade in effect.
View 3 Replies
Aug 20, 2010
I wanted to make a screen recorder (not screen capture) program, but I am not entirely sure how to get it started. I have seen many videos and things on how to make one, but all of these just take multiple pictures and then don't compile them into a movie file, and I don't want to take many pictures (unless that is the only way possible.) I am using Visual Basic 2010 Express and I have looked at the Windows Media Encoder, but I can't seem to figure out how to use/implement it (yes, I have downloaded and installed it.) Maybe I can use some kind of ActiveX control?
View 3 Replies
Nov 25, 2009
What code would I use to make a progress bar last 4 seconds then switch to another form?
I can't find any good code for a progress bar besides on youtube which I don't know how to change the timing on it
View 1 Replies
Jul 1, 2009
[code] This code will make the progressbar increase by 1 tick every 0.25 seconds?But the thing I need help with is to make TextBox1.Text write out a message typed in it to TextBox2.Text when the progressbar is full. And when that's done I want the progressbar to go back to 0. [code]
View 9 Replies
Aug 15, 2011
load another form and i want a progress bar to work with it.
View 19 Replies
Jun 9, 2011
how can i make a Label control to have the present day an time value and also make the time tick as in a normal digital watch.
View 2 Replies
Dec 17, 2009
How do i make a progress bar finish in 3 seconds after pressing a picture?
View 16 Replies
Feb 15, 2012
For a school project I need to make a timer with a bell sound that sounds every 60 seconds in VB, I cannot work out how to make the bell sound on the 60th second, I am not getting any errors in the VB console, so I assume that I am just using the wrong code or it is in the wrong place.
Public Class OSCETimerControl
Dim t As Integer
Dim s As Integer
Dim a As Integer
[CODE]..........
There are actually 3 text boxes (not yet coded the final one) one for minutes, one for seconds and the final one is for the bell sound which will not be visible.
View 1 Replies
Dec 20, 2009
I'm coding a splash screen in VB.Net that displays for 3 seconds then shows a login screen. But the splash shows up even when login shows and I have told the splash to hide. Here is my code:
[code]...
View 3 Replies