473,804 Members | 3,548 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

passing an arrayList to web service

I have a following structure that I am using with array list:
Private Structure arrayliststruct
Public Name As String
Public value As String
Public type As String
End Structure

and following function to format arraylist the way I want and calling it
from button click event:
Private Function formatarray(ByV al inarray As ArrayList, _
ByVal inName As String, _
ByVal initem As String, _
ByVal initemtype As String)

Dim arrayparam As arrayliststruct

arrayparam.Name = inName
arrayparam.valu e = initem
arrayparam.type = initemtype
inarray.Add(arr ayparam)

Return inarray

End Function

I have follwoing code in button click event

Protected Sub btnSubmit_Click (ByVal sender As Object, ByVal e As
System.EventArg s) Handles btnSubmit.Click

Dim inarray As New ArrayList
inarray = formatarray(ina rray, "Email", "my*****@email. com", "String")
inarray = formatarray(ina rray, "Name", "My Name", "String")

' then I want to pass this code to web serivce that accepts arrary list
Dim postEv As New testev.wsTEST
postEv.Credenti als = Net.CredentialC ache.DefaultCre dentials
postEv.PreAuthe nticate = True
postEv.PostExtE vent("Test", "Source", inarray(2))

End Sub

I don't know how to pass arraylist to a webservice.
please help:
Nov 7 '06 #1
8 4398
I don't want to pass arralylist index with the arrary list and I am getting
follwoing errors
1if passed without index
"number of indices is less than the number of dimensions"

2if passed with index
Index was out of range. Must be non-negative and less than the size of the
collection.
Parameter name: index

"amazon" wrote:
I have a following structure that I am using with array list:
Private Structure arrayliststruct
Public Name As String
Public value As String
Public type As String
End Structure

and following function to format arraylist the way I want and calling it
from button click event:
Private Function formatarray(ByV al inarray As ArrayList, _
ByVal inName As String, _
ByVal initem As String, _
ByVal initemtype As String)

Dim arrayparam As arrayliststruct

arrayparam.Name = inName
arrayparam.valu e = initem
arrayparam.type = initemtype
inarray.Add(arr ayparam)

Return inarray

End Function

I have follwoing code in button click event

Protected Sub btnSubmit_Click (ByVal sender As Object, ByVal e As
System.EventArg s) Handles btnSubmit.Click

Dim inarray As New ArrayList
inarray = formatarray(ina rray, "Email", "my*****@email. com", "String")
inarray = formatarray(ina rray, "Name", "My Name", "String")

' then I want to pass this code to web serivce that accepts arrary list
Dim postEv As New testev.wsTEST
postEv.Credenti als = Net.CredentialC ache.DefaultCre dentials
postEv.PreAuthe nticate = True
postEv.PostExtE vent("Test", "Source", inarray(2))

End Sub

I don't know how to pass arraylist to a webservice.
please help:

Nov 7 '06 #2
The function:
Private Function formatarray(ByV al inarray As ArrayList, _
ByVal inName As String, _
ByVal initem As String, _
ByVal initemtype As String)

Isn't declared as anything, presumably you want:

Private Function formatarray(ByV al inarray As ArrayList, _
ByVal inName As String, _
ByVal initem As String, _
ByVal initemtype As String) As
ArrayList

Don't know if that is a typo or if it will fix your problem. If it does not
fix the problem you might like to post the declaration for the webservice
function also.

"amazon" <am****@discuss ions.microsoft. comwrote in message
news:5E******** *************** ***********@mic rosoft.com...
>I don't want to pass arralylist index with the arrary list and I am getting
follwoing errors
1if passed without index
"number of indices is less than the number of dimensions"

2if passed with index
Index was out of range. Must be non-negative and less than the size of the
collection.
Parameter name: index

"amazon" wrote:
>I have a following structure that I am using with array list:
Private Structure arrayliststruct
Public Name As String
Public value As String
Public type As String
End Structure

and following function to format arraylist the way I want and calling it
from button click event:
Private Function formatarray(ByV al inarray As ArrayList, _
ByVal inName As String, _
ByVal initem As String, _
ByVal initemtype As String)

Dim arrayparam As arrayliststruct

arrayparam.Name = inName
arrayparam.valu e = initem
arrayparam.type = initemtype
inarray.Add(arr ayparam)

Return inarray

End Function

I have follwoing code in button click event

Protected Sub btnSubmit_Click (ByVal sender As Object, ByVal e As
System.EventAr gs) Handles btnSubmit.Click

Dim inarray As New ArrayList
inarray = formatarray(ina rray, "Email", "my*****@email. com", "String")
inarray = formatarray(ina rray, "Name", "My Name", "String")

' then I want to pass this code to web serivce that accepts arrary list
Dim postEv As New testev.wsTEST
postEv.Credent ials = Net.CredentialC ache.DefaultCre dentials
postEv.PreAuth enticate = True
postEv.PostExt Event("Test", "Source", inarray(2))

End Sub

I don't know how to pass arraylist to a webservice.
please help:


Nov 7 '06 #3
Thnaks Joseph

Thanks for reply..

I changed the function and declared as
Private Function formatarray(ByV al inarray As ArrayList, _
ByVal inName As String, _
ByVal initem As String, _
ByVal initemtype As String) As ArrayList

Stil the same problem..

my web service is

Public Sub PostExtEvent(By Val EventName As String, ByVal ExternalSource As
String, ByVal inparam As ArrayList)

Thanks

"JosephByrn s" wrote:
The function:
Private Function formatarray(ByV al inarray As ArrayList, _
ByVal inName As String, _
ByVal initem As String, _
ByVal initemtype As String)

Isn't declared as anything, presumably you want:

Private Function formatarray(ByV al inarray As ArrayList, _
ByVal inName As String, _
ByVal initem As String, _
ByVal initemtype As String) As
ArrayList

Don't know if that is a typo or if it will fix your problem. If it does not
fix the problem you might like to post the declaration for the webservice
function also.

"amazon" <am****@discuss ions.microsoft. comwrote in message
news:5E******** *************** ***********@mic rosoft.com...
I don't want to pass arralylist index with the arrary list and I am getting
follwoing errors
1if passed without index
"number of indices is less than the number of dimensions"

2if passed with index
Index was out of range. Must be non-negative and less than the size of the
collection.
Parameter name: index

"amazon" wrote:
I have a following structure that I am using with array list:
Private Structure arrayliststruct
Public Name As String
Public value As String
Public type As String
End Structure

and following function to format arraylist the way I want and calling it
from button click event:
Private Function formatarray(ByV al inarray As ArrayList, _
ByVal inName As String, _
ByVal initem As String, _
ByVal initemtype As String)

Dim arrayparam As arrayliststruct

arrayparam.Name = inName
arrayparam.valu e = initem
arrayparam.type = initemtype
inarray.Add(arr ayparam)

Return inarray

End Function

I have follwoing code in button click event

Protected Sub btnSubmit_Click (ByVal sender As Object, ByVal e As
System.EventArg s) Handles btnSubmit.Click

Dim inarray As New ArrayList
inarray = formatarray(ina rray, "Email", "my*****@email. com", "String")
inarray = formatarray(ina rray, "Name", "My Name", "String")

' then I want to pass this code to web serivce that accepts arrary list
Dim postEv As New testev.wsTEST
postEv.Credenti als = Net.CredentialC ache.DefaultCre dentials
postEv.PreAuthe nticate = True
postEv.PostExtE vent("Test", "Source", inarray(2))

End Sub

I don't know how to pass arraylist to a webservice.
please help:



Nov 7 '06 #4
I found some info on:
http://support.microsoft.com/default.aspx/kb/814320

and changed inarray(2) to inarray(0)

my web service is
Public Sub PostExtEvent(By Val EventName As String, ByVal ExternalSource As
String, ByVal inparam As ArrayList)

this is how I see it when try to call
PostExtEvent(Ev entName as string, ExternalSource as string, inparam() as
object

and I get error message as:
Unable to cast object of type 'arrayliststruc t' to type 'System.Object[]'.

Thanks//
"amazon" wrote:
Thnaks Joseph

Thanks for reply..

I changed the function and declared as
Private Function formatarray(ByV al inarray As ArrayList, _
ByVal inName As String, _
ByVal initem As String, _
ByVal initemtype As String) As ArrayList

Stil the same problem..

my web service is

Public Sub PostExtEvent(By Val EventName As String, ByVal ExternalSource As
String, ByVal inparam As ArrayList)

Thanks

"JosephByrn s" wrote:
The function:
Private Function formatarray(ByV al inarray As ArrayList, _
ByVal inName As String, _
ByVal initem As String, _
ByVal initemtype As String)

Isn't declared as anything, presumably you want:

Private Function formatarray(ByV al inarray As ArrayList, _
ByVal inName As String, _
ByVal initem As String, _
ByVal initemtype As String) As
ArrayList

Don't know if that is a typo or if it will fix your problem. If it does not
fix the problem you might like to post the declaration for the webservice
function also.

"amazon" <am****@discuss ions.microsoft. comwrote in message
news:5E******** *************** ***********@mic rosoft.com...
>I don't want to pass arralylist index with the arrary list and I am getting
follwoing errors
1if passed without index
"number of indices is less than the number of dimensions"
>
2if passed with index
Index was out of range. Must be non-negative and less than the size of the
collection.
Parameter name: index
>
"amazon" wrote:
>
>I have a following structure that I am using with array list:
>Private Structure arrayliststruct
> Public Name As String
> Public value As String
> Public type As String
>End Structure
>>
>and following function to format arraylist the way I want and calling it
>from button click event:
>Private Function formatarray(ByV al inarray As ArrayList, _
> ByVal inName As String, _
> ByVal initem As String, _
> ByVal initemtype As String)
>>
> Dim arrayparam As arrayliststruct
>>
> arrayparam.Name = inName
> arrayparam.valu e = initem
> arrayparam.type = initemtype
> inarray.Add(arr ayparam)
>>
> Return inarray
>>
>End Function
>>
>I have follwoing code in button click event
>>
>Protected Sub btnSubmit_Click (ByVal sender As Object, ByVal e As
>System.EventAr gs) Handles btnSubmit.Click
>>
>Dim inarray As New ArrayList
>inarray = formatarray(ina rray, "Email", "my*****@email. com", "String")
>inarray = formatarray(ina rray, "Name", "My Name", "String")
>>
>' then I want to pass this code to web serivce that accepts arrary list
>Dim postEv As New testev.wsTEST
>postEv.Credent ials = Net.CredentialC ache.DefaultCre dentials
>postEv.PreAuth enticate = True
>postEv.PostExt Event("Test", "Source", inarray(2))
>>
>End Sub
>>
>I don't know how to pass arraylist to a webservice.
>please help:
>>
>>
Nov 7 '06 #5
You should just be calling it like:

postEv.PostExtE vent("Test", "Source", inarray)

without the brackets or index, does it still not work then?

"amazon" <am****@discuss ions.microsoft. comwrote in message
news:3D******** *************** ***********@mic rosoft.com...
Thnaks Joseph

Thanks for reply..

I changed the function and declared as
Private Function formatarray(ByV al inarray As ArrayList, _
ByVal inName As String, _
ByVal initem As String, _
ByVal initemtype As String) As
ArrayList

Stil the same problem..

my web service is

Public Sub PostExtEvent(By Val EventName As String, ByVal ExternalSource As
String, ByVal inparam As ArrayList)

Thanks

"JosephByrn s" wrote:
>The function:
Private Function formatarray(ByV al inarray As ArrayList, _
ByVal inName As String, _
ByVal initem As String, _
ByVal initemtype As String)

Isn't declared as anything, presumably you want:

Private Function formatarray(ByV al inarray As ArrayList, _
ByVal inName As String, _
ByVal initem As String, _
ByVal initemtype As String) As
ArrayList

Don't know if that is a typo or if it will fix your problem. If it does
not
fix the problem you might like to post the declaration for the webservice
function also.

"amazon" <am****@discuss ions.microsoft. comwrote in message
news:5E******* *************** ************@mi crosoft.com...
>I don't want to pass arralylist index with the arrary list and I am
getting
follwoing errors
1if passed without index
"number of indices is less than the number of dimensions"

2if passed with index
Index was out of range. Must be non-negative and less than the size of
the
collection.
Parameter name: index

"amazon" wrote:

I have a following structure that I am using with array list:
Private Structure arrayliststruct
Public Name As String
Public value As String
Public type As String
End Structure

and following function to format arraylist the way I want and calling
it
from button click event:
Private Function formatarray(ByV al inarray As ArrayList, _
ByVal inName As String, _
ByVal initem As String, _
ByVal initemtype As String)

Dim arrayparam As arrayliststruct

arrayparam.Name = inName
arrayparam.valu e = initem
arrayparam.type = initemtype
inarray.Add(arr ayparam)

Return inarray

End Function

I have follwoing code in button click event

Protected Sub btnSubmit_Click (ByVal sender As Object, ByVal e As
System.EventAr gs) Handles btnSubmit.Click

Dim inarray As New ArrayList
inarray = formatarray(ina rray, "Email", "my*****@email. com", "String")
inarray = formatarray(ina rray, "Name", "My Name", "String")

' then I want to pass this code to web serivce that accepts arrary
list
Dim postEv As New testev.wsTEST
postEv.Credent ials = Net.CredentialC ache.DefaultCre dentials
postEv.PreAuth enticate = True
postEv.PostExt Event("Test", "Source", inarray(2))

End Sub

I don't know how to pass arraylist to a webservice.
please help:




Nov 7 '06 #6
Hi Joseph,

Thanks Again..

That only works if I move my function from webservice to local program...
I I do the same with webservice
Value of type 'System.Collect ions.ArrayList' cannot be converted to
'1-dimensional array of Object'
I donot understand why webservice is not expecting arraylist but the
OBJECT...

PostExtEvent(Ev entName as string, ExternalSource as string, inparam() as
OBJECT

event if I declared as an arraylist
"Joseph Byrns" wrote:
You should just be calling it like:

postEv.PostExtE vent("Test", "Source", inarray)

without the brackets or index, does it still not work then?

"amazon" <am****@discuss ions.microsoft. comwrote in message
news:3D******** *************** ***********@mic rosoft.com...
Thnaks Joseph

Thanks for reply..

I changed the function and declared as
Private Function formatarray(ByV al inarray As ArrayList, _
ByVal inName As String, _
ByVal initem As String, _
ByVal initemtype As String) As
ArrayList

Stil the same problem..

my web service is

Public Sub PostExtEvent(By Val EventName As String, ByVal ExternalSource As
String, ByVal inparam As ArrayList)

Thanks

"JosephByrn s" wrote:
The function:
Private Function formatarray(ByV al inarray As ArrayList, _
ByVal inName As String, _
ByVal initem As String, _
ByVal initemtype As String)

Isn't declared as anything, presumably you want:

Private Function formatarray(ByV al inarray As ArrayList, _
ByVal inName As String, _
ByVal initem As String, _
ByVal initemtype As String) As
ArrayList

Don't know if that is a typo or if it will fix your problem. If it does
not
fix the problem you might like to post the declaration for the webservice
function also.

"amazon" <am****@discuss ions.microsoft. comwrote in message
news:5E******** *************** ***********@mic rosoft.com...
I don't want to pass arralylist index with the arrary list and I am
getting
follwoing errors
1if passed without index
"number of indices is less than the number of dimensions"

2if passed with index
Index was out of range. Must be non-negative and less than the size of
the
collection.
Parameter name: index

"amazon" wrote:

I have a following structure that I am using with array list:
Private Structure arrayliststruct
Public Name As String
Public value As String
Public type As String
End Structure

and following function to format arraylist the way I want and calling
it
from button click event:
Private Function formatarray(ByV al inarray As ArrayList, _
ByVal inName As String, _
ByVal initem As String, _
ByVal initemtype As String)

Dim arrayparam As arrayliststruct

arrayparam.Name = inName
arrayparam.valu e = initem
arrayparam.type = initemtype
inarray.Add(arr ayparam)

Return inarray

End Function

I have follwoing code in button click event

Protected Sub btnSubmit_Click (ByVal sender As Object, ByVal e As
System.EventArg s) Handles btnSubmit.Click

Dim inarray As New ArrayList
inarray = formatarray(ina rray, "Email", "my*****@email. com", "String")
inarray = formatarray(ina rray, "Name", "My Name", "String")

' then I want to pass this code to web serivce that accepts arrary
list
Dim postEv As New testev.wsTEST
postEv.Credenti als = Net.CredentialC ache.DefaultCre dentials
postEv.PreAuthe nticate = True
postEv.PostExtE vent("Test", "Source", inarray(2))

End Sub

I don't know how to pass arraylist to a webservice.
please help:




Nov 7 '06 #7
Unfortunately I don't know what is causing your difficulties. Included
below is an example I have working here (excluding all the auto generated
stuff).

Note that in your example you have the arrayliststruct declared in the aspx
part of the application, you really need to declare in the webservice part.

This part is the Webservice:

Imports System.Web.Serv ices
Imports System.Xml.Seri alization

Public Class myService
Inherits System.Web.Serv ices.WebService
<WebMethod(), XmlInclude(GetT ype(arraylistst ruct))_
Public Sub PostExtEvent(By Val EventName As String, ByVal ExternalSource As
String, ByVal inparam As Object())
For Each obj As Object In inparam
Dim als As arrayliststruct = CType(obj, arrayliststruct )
Dim n As String = als.Name
Dim v As String = als.value
Dim t As String = als.type
Next
End Sub

Public Structure arrayliststruct
Public Name As String
Public value As String
Public type As String
End Structure

End Class

And this part is the web form part of the code:

Public Class WebForm1
Inherits System.Web.UI.P age

Private Function formatarray(ByV al inarray As ArrayList, _
ByVal inName As String, _
ByVal initem As String, _

ByVal initemtype As String) As ArrayList

Dim arrayparam As New myExampleServic e.arrayliststru ct
arrayparam.Name = inName
arrayparam.valu e = initem
arrayparam.type = initemtype
inarray.Add(arr ayparam)

Return inarray
End Function

Protected Sub btnSubmit_Click (ByVal sender As Object, ByVal e As
System.EventArg s) Handles btnSubmit.Click
Dim inarray As New ArrayList
inarray = formatarray(ina rray, "Email", "my*****@email. com", "String")
inarray = formatarray(ina rray, "Name", "My Name", "String")

Dim ws As New myExampleServic e.myService
ws.PostExtEvent ("Test", "Source", inarray.ToArray )
End Sub

End Class
Nov 8 '06 #8
Thanks Joseph,

Thant is excellent suggession and I am working on that...
However, I get follwoing error when trying to pass object to web service..

There was an error generating the XML document.
"The type System.Object[] may not be used in this context."

Thank you.
"JosephByrn s" wrote:
Unfortunately I don't know what is causing your difficulties. Included
below is an example I have working here (excluding all the auto generated
stuff).

Note that in your example you have the arrayliststruct declared in the aspx
part of the application, you really need to declare in the webservice part.

This part is the Webservice:

Imports System.Web.Serv ices
Imports System.Xml.Seri alization

Public Class myService
Inherits System.Web.Serv ices.WebService
<WebMethod(), XmlInclude(GetT ype(arraylistst ruct))_
Public Sub PostExtEvent(By Val EventName As String, ByVal ExternalSource As
String, ByVal inparam As Object())
For Each obj As Object In inparam
Dim als As arrayliststruct = CType(obj, arrayliststruct )
Dim n As String = als.Name
Dim v As String = als.value
Dim t As String = als.type
Next
End Sub

Public Structure arrayliststruct
Public Name As String
Public value As String
Public type As String
End Structure

End Class

And this part is the web form part of the code:

Public Class WebForm1
Inherits System.Web.UI.P age

Private Function formatarray(ByV al inarray As ArrayList, _
ByVal inName As String, _
ByVal initem As String, _

ByVal initemtype As String) As ArrayList

Dim arrayparam As New myExampleServic e.arrayliststru ct
arrayparam.Name = inName
arrayparam.valu e = initem
arrayparam.type = initemtype
inarray.Add(arr ayparam)

Return inarray
End Function

Protected Sub btnSubmit_Click (ByVal sender As Object, ByVal e As
System.EventArg s) Handles btnSubmit.Click
Dim inarray As New ArrayList
inarray = formatarray(ina rray, "Email", "my*****@email. com", "String")
inarray = formatarray(ina rray, "Name", "My Name", "String")

Dim ws As New myExampleServic e.myService
ws.PostExtEvent ("Test", "Source", inarray.ToArray )
End Sub

End Class
Nov 8 '06 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1445
by: Roger Bonine | last post by:
This might be a stupid question, but I'd appreciate any help you could offer. I'm trying to pass an array of objects back to a Web service. The Web service expects this: Dim Recipients() as WS.Recipient but it won't let me create an object array of this type directly, so I'm creating an ArrayList object and using CType to convert it, like so:
1
5735
by: vbvjain | last post by:
I am developing an applocation which reads mails in outlook inbo alongwith attachments and all these informmation is stored in collection which i need to pass it to a web service, which will perfor certain operations on that collection and then return that modifie collection to the client. but when i am trying to pass a simple collection of strings to my we service it gives me an error "You must implement Add(System.Object) a it inherits...
0
1033
by: Roger Bonine | last post by:
This might be a stupid question, but I'd appreciate any help you could offer. I'm trying to pass an array of objects back to a Web service. The Web service expects this: Dim Recipients() as WS.Recipient but it won't let me create an object array of this type directly, so I'm creating an ArrayList object and using CType to convert it, like so:
1
1724
by: Guest | last post by:
I wish to pass a collection object to a web service method in VB.NET, but when i try to do so i get an error message that "There was an error generating the XML", i even tried the XMLSerializer, but the same error came at different point in the program. Can anyone tell me how to pass a collection to a web service. User submitted from AEWNET (http://www.aewnet.com/)
2
9984
by: SteveR | last post by:
I want to return an ArrayList from my web service. I can write this part and everything compiles but I can't get the web application that uses the web service to compile. I call the service aynchronously so then in my code I have this to retrieve the ArrayList object. public void CalcCallback(IAsyncResult ar) { ArrayList arrResults = ws.MyFunction(ar); }
3
5657
by: Malcolm | last post by:
Hi. I am attempting something new in my coding and need some direction. I have a web service that I am attempting to return a custom colleciton of custom objects of a single type. When I call the web method from a client host I am getting back a 1-dimensional array and I can't convert each item in the array to the appropriate custom type that is exposed in the array. Can any body provide me some direction on how I should be passing...
8
8904
by: =?Utf-8?B?UmF2aQ==?= | last post by:
Hi, I'm trying to pass values of different data-types to a web-service. I thought it would be easier to box these values and pass them as a System.object parameter, like public void webmethod1(object a) where a can be of type string, DateTime, float, etc..
2
4280
by: =?Utf-8?B?Y3Nz?= | last post by:
I am new to ASP.net webservice and have a quesiton. Is is possible to pass custom object to a web service (using VB 2005)? My custom object will look like this Public Class Myclass Public Property1 As String Public Property2 As Integer Public Property myCollection1 As Arraylist (Actually, it will be a strongly
2
2636
by: =?Utf-8?B?RHJldw==?= | last post by:
I have a current requirement to all a subsidiary to use a current legacy application and interface with my new system to inject data when appropriate. I wanted to create a web service since we are both .Net shops and this would seem to be the easiest method. But I ran into one snafu. I wanted to return to the subsidiary an ArrayList of my Organization objects which contain the orgs id, name etc. so they can use that information in the data...
0
10075
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9143
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7615
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6851
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5520
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5651
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4295
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3815
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2990
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.