answersLogoWhite

0


Best Answer

the interval's frequency is stored in the controls interval property , which specifies the length of time in milliseconds.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the effect of the interval property on application in visual basic?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the effect of the interval property on the application in visual basic?

the interval's frequency is stored in the controls interval property , which specifies the length of time in milliseconds.


What is caption as used in Visual basics?

Can you tell me what is an embedded application


Application of IT in Entertainment and Arts?

visual graphics


Difference in dos and visual basic?

DOS is an OS and Visual Basic is an Application Software..


Can you run a Visual Basic program from a Website?

In general principles, you can not run a visual basic compiled program from a website. Visual basic compiled program needs the library files required to run the application. So only when you install the application locally (onto your machine), the application can be executed.


What are the five types of application you can create in visual studio 2005?

Five types of application you can create in visual studio 2005 are:-Web ApplicationsConsole ApplicationsWeb ServicesSmart Device ApplicationsClass Libraries


What does Visual Basic utilize to generate vigorous and dynamic application?

GUI


What is property procedure?

A property procedure is a series of Visual Basic statements that manipulate a custom property on a module, class, or structure. Property procedures are also known as property accessors.


What does RAD mean in visual basic programming language?

Rapid Application Development.


Damage to the fovea would probably have the least effect on visual sensitivity to what stimuli?

damage to the fovea would have the least effect on visual sensitivity to what stimuli


What is the property of the label that holds the text of the label Visual Basic?

Text


How do you block a moving image in visual basic 6.0?

Visual Basic provides a large variety of graphics operation by which we can make an application with graphics. In traditional languages graphics are usually distinguished from est, but in VB every thing placed on form is considered as to be graphical that is the reason that we specify the left, top, currentS, currentY properties for allmost the controls based on form. There for we can also move an image in the visual basic's Form. For this we can use the property of that image is Left, Top. The Left property of image says it to move left or right side. When we increament the Left property value then it moves in right of its current location while when we decreament the Left Property value then it moves in left of its current location. For example- We take a timer on the form and set its following property Interval=1000 Enabled=True Name= Timer1 Also take a image on form with the help of image control and set its property- Left=100 top=100 name=image1 Code for moving an image on the form Private Sub Timer1_timer() image1.Left=image1.Left + 100 image1.Top=Image1.Top + 100 End Sub This effect on the form , The image move the left-up-corner to right-down-corner.