Posted on: 12/8/2014 10:40:29 PM | Views : 527

Hi Everyone,
How do I connect a button in my Visual Studio 2013 WebForm (VB) into this web service below ...
NOTE:  The code below is a project and solution from FEDEX using Visual Studio 2005.   I was able to fill in the "XXX" stuff by registering the app from FedEx.
The project works perfectly as a stand alone project.  Now I added the FEDEX project to my WebForm Project and need to connect this into my WebForm via a button click.


Here is my button code.
Protected Sub Lbl_CreateShippingLabel_Click(sender As Object, e As EventArgs) Handles Lbl_CreateShippingLabel.Click 'Connect to ShipWebServiceClient End Sub

Here is the Web Service from FEDEX ...

Option Strict On
Imports ShipWebServiceClient.ShipServiceWebReference Imports System.Web.Services.Pr ...

Go to the complete details ...