Consulting

Results 1 to 4 of 4

Thread: click paypal button

  1. #1

    click paypal button

    I have this code that will open the page to my site. When the page open, how what code will click on the PayPal button to open the PayPal payment page?

    [VBA]
    Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, _
    ByVal lpOperation As String, _
    ByVal lpFile As String, _
    ByVal lpParameters As String, _
    ByVal lpDirectory As String, _
    ByVal nShowCmd As Long) As Long

    Sub Browser()
    Call ShellExecute(0&, "OPEN", "http://www.pdtraveler.com/paymentcenter.htm", _
    vbNullString, vbNullString, 3)
    End Sub
    [/VBA]

  2. #2
    VBAX Newbie
    Joined
    Apr 2011
    Posts
    1
    Location
    sorry i know I'm not meant to do this but i just signed up and don't know how to post a form/thread. Any help? thanks

  3. #3
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    When you respond, click the Advanced button, and then Manage Attachments.
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

  4. #4
    VBAX Expert
    Joined
    Sep 2010
    Posts
    604
    Location
    In the upper left directly above where is says threads in forum, there is a "New Post" button. Click that to start a new thread and ask a question.

    Is that what you were asking?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •