Apr 6, 2006 #1 haddaway Programmer Jul 6, 2005 172 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 Jun 20, 2002 945 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