Apr 6, 2006 #1 haddaway Programmer Joined Jul 6, 2005 Messages 172 Location SE I would like to perform the following in some way: Dim b(2) as byte = (34,23) How can I do that?
Apr 6, 2006 1 #2 SqueakinSweep Programmer Joined Jun 20, 2002 Messages 945 Location GB Untested..but I think it is Dim b As Byte() = {34, 23} Sweep ...if it works, you know the rest.. Always remember that Google is your friend Upvote 0 Downvote
Untested..but I think it is Dim b As Byte() = {34, 23} Sweep ...if it works, you know the rest.. Always remember that Google is your friend