|
-
Mar 15th, 2001, 10:07 AM
#1
Thread Starter
Lively Member
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??
-
Mar 15th, 2001, 10:30 AM
#2
Fanatic Member
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
-
Mar 15th, 2001, 10:49 AM
#3
ysa1441 : You dont have to be smart to know this!
-
Mar 15th, 2001, 11:36 AM
#4
Thread Starter
Lively Member
so, how do you do it?
you dont know, right?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|