Data Mining

Download Free Data Mining Source Code In C/C++, C#, Visual Basic, Visual Basic.NET, Java,
and other programming languages
Welcome to Data Mining Sign in | Join | Help
in Search

Data Mining Source Code Newsletter

Business Analyst Training
Live, Online, Video Courses
Instructor-Led + Hands-On
BusinessAnalystBootCamp.Com

SQL + Database Training
Live, Online, Video Classes
Instructor-Led + Hands-On
SQLBootCamp.Com

Software Developer Training
Live, Online, Video Courses
Instructor-Led + Hands-On
SoftwareDevelperBootCamp.Com

IT CAREER COACH
Hands-On Experience Coaching
IT Skills Training
IT-Career-Coach.NET

IT Professional Newsletter
"Free" IT Career Success Tips
How To Accelerate Your Career
IT Career Newsletter

Ask IT Career Questions
"ASK" A Burning IT Career
Question Or Get Answers
Ask A Burning IT Question Now!

Announcing The Data Mining Source Code Newsletter!

Subscribe By Email | Subscribe By RSS Feed

How to create a webservice and consume that service in a VB.Net Windows Form

Last post 09-12-2003, 13:18 by DotNetSmart. 0 replies.
Sort Posts: Previous Next
  •  09-12-2003, 13:18 681

    How to create a webservice and consume that service in a VB.Net Windows Form

    Attachment: TestWebService.zip
    How to create a webservice and consume that service in a VB.Net Windows Form.

    You can use same mechanism to consume the service in ASP.Net web form also with some minor changes




    Imports System.Web.services
    Public Class FirstWebService
    _
    Public Function Add(ByVal a As Decimal, ByVal b As Decimal) As Decimal
    Return a + b
    End Function
    _
    Public Function Multiply(ByVal a As Decimal, ByVal b As Decimal) As Decimal
    Return a * b
    End Function
    End Class

Announcing The Data Mining Source Code Newsletter!

Subscribe By Email | Subscribe By RSS Feed