Results 1 to 5 of 5

Thread: any other way to call a function

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Sep 2005
    Posts
    1,364

    any other way to call a function

    at the moment im doing it like this..

    Dim test As String
    test = Fill_Form()

    and it executes the Fill_Form function, but is there any other way i can do it instead of having to declare a dim string every time??

  2. #2
    Old Member moeur's Avatar
    Join Date
    Nov 2004
    Location
    Wait'n for Free Stuff
    Posts
    2,712

    Re: any other way to call a function

    if you don't care about the value it returns you could just do
    VB Code:
    1. Call Fill_Form

  3. #3

  4. #4

    Thread Starter
    Frenzied Member
    Join Date
    Sep 2005
    Posts
    1,364

    Re: any other way to call a function

    it doesnt return anything, it just fills the form on the webbrowser, e,g,

    Public Function Fill_Form()
    wb.blah blah blH
    End Function

  5. #5

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