-
hi, i know that through html i can simply make a form and "post" something to a certain asp, but how can i do this through vb?? i mean in html i would look like:
<form action="someasp.asp" method="post"...>
.
.
<input type="submit" dir="rtl" name="enter" value="ok">
</form>
how can i do this through vb??
-
In VB, to make a button that when someone clicks it - it will bring up a new form - do this:
Code:
Private Sub Command1_Click()
Form2.Show
Me.Hide
End Sub
having added two forms (form1 and form2) to you project and form1 has a command button on it.
You could also use the load and unload commands.
Rob
-
ysa1441 : You dont have to be smart to know this!
-
so, how do you do it?
you dont know, right?