irisbenji
09-09-2003, 05:48 AM
Dim nb As Integer
Set nb = 5
that does not compile, asking for an object, why?
Set nb = 5
that does not compile, asking for an object, why?
object required?irisbenji 09-09-2003, 05:48 AM Dim nb As Integer Set nb = 5 that does not compile, asking for an object, why? GMan_NC 09-09-2003, 06:06 AM Remove the word Set Set is used on Objects. Integer is not an object variable. Dim nb as Integer nb = 5 codemib 09-09-2003, 07:36 AM Dim nb As Integer let nb = 5 is good too! |
EZ Archive Ads Plugin for vBulletin Copyright 2006 Computer Help Forum