I found it.
pcinfo(ByVal pcnr As String)
Glad you found it. Keep in mind that the Web service has no clue as to what
client is using it. I say that because from your question I gather the
client is a .NET app, by the use of TextBox. A service has no visual
interface, unless the service host is a GUI application, and therefore
shouldn't be concerned with UI controls.
Your service would want to stick with dealing with the primitives types
(int, string, double, bool, etc), or with serializable complex types built
from primitive types.
Ron
>I found it.
> pcinfo(ByVal pcnr As String)
[quoted text clipped - 32 lines]
>> End Function
>> ....