To create a simple screensaver in Visual Basic, you can use the following code snippet as a starting point. This example displays a moving form that changes color:
Public Class Screensaver
Private Sub Screensaver_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Me.FormBorderStyle = FormBorderStyle.None
Me.WindowState = FormWindowState.Maximized
Timer1.Start()
End Sub
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
Me.BackColor = Color.FromArgb(Random.Next(256), Random.Next(256), Random.Next(256))
Me.Location = New Point(Random.Next(Screen.PrimaryScreen.Bounds.Width - Me.Width), Random.Next(Screen.PrimaryScreen.Bounds.Height - Me.Height))
End Sub
End Class
Make sure to add a Timer control to your form and set its interval (e.g., 1000 ms) for the desired effect. Adjust the logic as needed to suit your screensaver design.
you can get lots of source code from 1000projects.com in diff languages....
high level language
yes
.net is technology in which we can design application as we wish and can write code in c# or vb anyone language
.net is technology in which we can design application as we wish and can write code in c# or vb anyone language
form1.vb
vvbvcvbn vb
wrtrwtgfe
If you have developed an interface or at least a controller such as a button, double click it. It will bring up the code. Type the code there that you want to occur when that button is clicked. Alliteratively you can double click the form to create the sub for when the form is created or loaded.
An integrated development environment (IDE) also known as integrated design environment or integrated debugging environment is asoftware application that provides comprehensive facilities to computer programmers for software development. An IDE normally consists of:a source code editora compiler and/or an interpreterbuild automation toolsa debugger
It depends on the language you want to use. Here is a VB example:http://bytes.com/topic/visual-basic-net/answers/443023-lrc-calculation-algorithm
yes