Click here to Skip to main content
15,919,341 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: DataGrid in .Net Pin
Nick Seng13-Sep-04 4:20
Nick Seng13-Sep-04 4:20 
GeneralRe: DataGrid in .Net Pin
Britnt713-Sep-04 5:19
Britnt713-Sep-04 5:19 
GeneralRe: DataGrid in .Net Pin
Nick Seng13-Sep-04 14:04
Nick Seng13-Sep-04 14:04 
General.Net ToolTip properties Pin
mryan999910-Sep-04 8:43
mryan999910-Sep-04 8:43 
GeneralRe: .Net ToolTip properties Pin
Dave Kreskowiak10-Sep-04 10:04
mveDave Kreskowiak10-Sep-04 10:04 
GeneralRe: .Net ToolTip properties Pin
mryan999916-Sep-04 12:19
mryan999916-Sep-04 12:19 
Generalvb and ms soap Pin
necroleak9-Sep-04 21:58
sussnecroleak9-Sep-04 21:58 
GeneralRe: vb and ms soap Pin
Purple Monk9-Sep-04 23:42
Purple Monk9-Sep-04 23:42 
I have always done this this way, hopefully it will help

Private m_strEndPointURL As String
Private m_strWSDLFile As String

'SOAP / SQLXML members
Private m_oNodeList As IXMLDOMNodeList
Private m_oSoapClient As New SoapClient30

Private Sub ConfigureSOAP()
'Location of the WSDL - XML catalog of the SPs
m_strWSDLFile = "http://localhost/SQLXML/SOAP?wsdl"

'Set the destination host - this is the URL to the server
'without the wsdl path so http://Localhost/MERCSQLXML/SOAP

m_strEndPointURL = Left(m_strWSDLFile, (Len(m_strWSDLFile) - 5))

'This method configures the various SOAP objects ready for use
Set m_oSoapClient = New SoapClient
m_oSoapClient.mssoapinit m_strWSDLFile
m_oSoapClient.ConnectorProperty("EndPointURL") = m_strEndPointURL
End Sub

'Call Soap

Set m_oNodeList = m_oSoapClient.Method(Args)

"If i was king cigarettes would be free."


GeneralRe: vb and ms soap Pin
necroleak10-Sep-04 0:41
sussnecroleak10-Sep-04 0:41 
GeneralRe: vb and ms soap Pin
Purple Monk10-Sep-04 4:33
Purple Monk10-Sep-04 4:33 
GeneralA little problem in ActiveX control programming Pin
gamerPotatoe9-Sep-04 21:15
gamerPotatoe9-Sep-04 21:15 
GeneralRe: A little problem in ActiveX control programming Pin
Hadi Fakhreddine13-Sep-04 0:25
Hadi Fakhreddine13-Sep-04 0:25 
GeneralRe: A little problem in ActiveX control programming Pin
gamerPotatoe13-Sep-04 2:42
gamerPotatoe13-Sep-04 2:42 
GeneralRe: A little problem in ActiveX control programming Pin
Hadi Fakhreddine13-Sep-04 4:53
Hadi Fakhreddine13-Sep-04 4:53 
Generalhandling events of a combo box in datagrid Pin
sribusam9-Sep-04 20:33
sribusam9-Sep-04 20:33 
QuestionMouse Hit Test: How?? Pin
bitpusher9-Sep-04 13:05
bitpusher9-Sep-04 13:05 
AnswerRe: Mouse Hit Test: How?? Pin
beowulfagate9-Sep-04 13:37
beowulfagate9-Sep-04 13:37 
GeneralRe: Mouse Hit Test: How?? Pin
bitpusher9-Sep-04 13:49
bitpusher9-Sep-04 13:49 
GeneralRe: Mouse Hit Test: How?? Pin
Purple Monk10-Sep-04 0:00
Purple Monk10-Sep-04 0:00 
AnswerRe: Mouse Hit Test: How?? Pin
Dennis C. Dietrich10-Sep-04 9:09
Dennis C. Dietrich10-Sep-04 9:09 
AnswerRe: Mouse Hit Test: How?? Pin
Dennis C. Dietrich10-Sep-04 15:15
Dennis C. Dietrich10-Sep-04 15:15 
GeneralVBA Word ActiveDocument.RoutingSlip problem Pin
Doug Wright9-Sep-04 10:52
Doug Wright9-Sep-04 10:52 
GeneralDataGrid Pin
Jeeva Jose9-Sep-04 8:04
Jeeva Jose9-Sep-04 8:04 
GeneralRe: DataGrid Pin
Dave Kreskowiak9-Sep-04 10:05
mveDave Kreskowiak9-Sep-04 10:05 
GeneralRe: DataGrid Pin
partt10-Sep-04 4:49
partt10-Sep-04 4:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.