answersLogoWhite

0


Best Answer

If Xpos is omitted, VB centers the input box horizontally on the screen. If Ypos is omitted, the input box is placed near the top of the screen.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Where is an input box positioned if you leave out the xpos and ypos arguments?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is some advanced formulas involving pi?

are hard formulas including the pi sign Pi is simply the ratio of a circumference of a circle to it's diameter. It is used in any calculation where you need to calculate angles and areas, and 3d space when combined with Sine and Cosine. for instance the basic code Xpos=offsetX+2pi(sin(x)) Ypos=offsetY+2Pi(cos(y)) Can be used to plot a circle in radians on a screen display when used in conjunction with a loop.


What are some eight letter words with 2nd letter X and 3rd letter P and 4th letter O and 5th letter S and 8th letter G?

According to SOWPODS (the combination of Scrabble dictionaries used around the world) there are 1 words with the pattern -XPOS--G. That is, eight letter words with 2nd letter X and 3rd letter P and 4th letter O and 5th letter S and 8th letter G. In alphabetical order, they are: exposing


Which is not a valid value for the background-position property?

The accepted values for the background-position property are: left top left center left bottom right top right center right bottom center top center center center bottom x% y% (the first value is the horizontal position in percent and the second value is the vertical position in percent) xpos ypos (the first value is the horizontal position and can be in pixels or any other CSS unit and the second value is the vertical position and can be in pixels or any other CSS unit) initial inherit Any values outside of the above are considered invalid and will be ignored by the web browser.


What is the difference between traditional programming and object oriented programming?

Object oriented programming is a design paradigm supported by the languages compiler where aspects of the program are thought of as objects. The code (i.e. functions) and variables required by those methods are grouped together into objects. The object exposes methods to the programmer so the object can be manipulated. There are more advanced aspects of object oriented programming such as polymorphism and inheritance that allow more high level and abstract usage of objects.Function oriented programming treats functions and variables separately. Functions are used like machines; they take in variables, manipulate, and return them. The variables and functions required to accomplish a task aren't grouped together as in object oriented programming.For a large project object orientated programming is more flexible and easier to understand. Small, very specific tasks, can some times be best accomplished with straight forward function oriented programming.