View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
[email protected] vitorbarbosa1979@gmail.com is offline
external usenet poster
 
Posts: 2
Default Visible property for worksheets objects

If I let this statement:
----------------------------------------------------------------------------------------------------------------
Dim strNumServiço, strNumMec, strPassword, strPasswordInserida As
String
----------------------------------------------------------------------------------------------------------------

I would get strNumServiço = 30205 (long) but If I change it to this:

----------------------------------------------------------------------------------------------------------------
Dim strNumServiço As String, strNumMec As String, strPassword As
String, strPasswordInserida As String
----------------------------------------------------------------------------------------------------------------

As Doug suggested, I would get strNumServiço = "30205" (string). So,
Doug was completely correct.

THANK YOU SO MUCH!!!