On Thu, 18 Sep 2003 17:09:46 +0100, "DrewM" <>
wrote:
>"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
>news:...
>
>> What are you trying to do here?
>
>Heh - fair question 
>
>I think endless hours of document writing have fried my brain.
>Let me go away and get my thoughts straight.
>
>Thanks for the help.
>
If you are calling a COM object and do the following:
dim obj, x
set obj = server.createobject("object.thing")
x = 5
obj.SendAnInteger x
This will fail if the parameter in SendAnInteger requries an integer.
This is because all variables in ASP are variants. In this case you
would need to use cint() to satisfy the method interface.