Oct 18, 2002 #1 yakshasa Programmer Oct 16, 2002 4 US In VB6, sUid = String$(32, 0) returns as a string of 32 binary zeros. In VB.Net, sUid = New String(Chr(0), 32) returns "", which equates to Nothing. How do I get it to work like VB6? Any help would be appreciated --Hal
In VB6, sUid = String$(32, 0) returns as a string of 32 binary zeros. In VB.Net, sUid = New String(Chr(0), 32) returns "", which equates to Nothing. How do I get it to work like VB6? Any help would be appreciated --Hal
Oct 18, 2002 #2 krisbrixon Programmer May 10, 2002 371 US Dim sUid = New String("0", 32) Kris - Tact is the act of making a point without making an enemy. - Clarence Darrow Upvote 0 Downvote
Dim sUid = New String("0", 32) Kris - Tact is the act of making a point without making an enemy. - Clarence Darrow