Click here to Skip to main content
15,884,009 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to reposition an object in a form using vb. NET at run-time?
Posted
Updated 17-Feb-10 19:46pm
v2

Where is the web form ? Is this a VB.NET program that contains a web browser control ? If so, you have to get the HTML and modify it. Obviously, you're not asking about an ASP.NET application, both b/c you did not tag your question as ASP.NET, and because if you're an ASP.NET dev, you'd know that's impossible.
 
Share this answer
 
you can set position them at runtime, an example for explain that:

VB
button1.top = 10 ';as integer, so it set position of button by heigh of form.
button1.left = 10 ';as integer, this also set position of button by widht of form.


best regards,
Psunyter
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900