Results 1 to 4 of 4

Thread: q(only for the smart ones!!)

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Jul 2000
    Posts
    82
    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??

  2. #2
    Fanatic Member THEROB's Avatar
    Join Date
    Oct 2000
    Location
    I'm cold and there are wolves after me
    Posts
    575
    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

  3. #3
    Guest
    ysa1441 : You dont have to be smart to know this!

  4. #4

    Thread Starter
    Lively Member
    Join Date
    Jul 2000
    Posts
    82
    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
  •  



Click Here to Expand Forum to Full Width