Click here to Skip to main content
15,911,890 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: is it possible to use the windows application on LAn Pin
Christian Graus25-Dec-06 14:34
protectorChristian Graus25-Dec-06 14:34 
QuestionVB6 Ascii Art Corrupt Output Pin
hkinser924-Dec-06 19:27
hkinser924-Dec-06 19:27 
Questioninserting value in start of array Pin
H3rman24-Dec-06 5:29
H3rman24-Dec-06 5:29 
AnswerRe: inserting value in start of array Pin
CPallini24-Dec-06 5:56
mveCPallini24-Dec-06 5:56 
GeneralRe: inserting value in start of array Pin
H3rman24-Dec-06 10:04
H3rman24-Dec-06 10:04 
GeneralRe: inserting value in start of array Pin
CPallini24-Dec-06 11:14
mveCPallini24-Dec-06 11:14 
GeneralRe: inserting value in start of array Pin
H3rman24-Dec-06 15:12
H3rman24-Dec-06 15:12 
GeneralRe: inserting value in start of array Pin
Yona Low24-Dec-06 16:39
Yona Low24-Dec-06 16:39 
In .NET 2.0 this is 2 lines
VB
Dim byteList As New List(Of Byte)(New Byte() {255, 255, 255, 255})
byteList.AddRange(UTF8.GetBytes("TESTSTRING"))
Since in .NET 2.0 the List is Generic, you can use the ToArray Methohd to get a byte array of the byteList on the fly

Example:
VB
Dim pass() as byte = byteList.ToArray
Or even in method calls:
VB
Dim writer As New BinaryWriter(New FileStream("C:\test.txt", FileMode.CreateNew))
writer.Write(byteList.ToArray)

GeneralThanks Pin
H3rman24-Dec-06 23:57
H3rman24-Dec-06 23:57 
Questionconnection string & forms Pin
seman7124-Dec-06 1:04
seman7124-Dec-06 1:04 
AnswerRe: connection string & forms Pin
Christian Graus24-Dec-06 1:21
protectorChristian Graus24-Dec-06 1:21 
GeneralRe: connection string & forms Pin
Paul Conrad25-Dec-06 18:00
professionalPaul Conrad25-Dec-06 18:00 
AnswerRe: connection string & forms Pin
S Douglas25-Dec-06 20:41
professionalS Douglas25-Dec-06 20:41 
QuestionTabIndex !!!!!!!!!!!!!!!!!!!!!!!!! Pin
kindman_nb24-Dec-06 0:34
kindman_nb24-Dec-06 0:34 
AnswerRe: TabIndex !!!!!!!!!!!!!!!!!!!!!!!!! Pin
Christian Graus24-Dec-06 1:20
protectorChristian Graus24-Dec-06 1:20 
GeneralRe: TabIndex !!!!!!!!!!!!!!!!!!!!!!!!! Pin
kindman_nb24-Dec-06 9:38
kindman_nb24-Dec-06 9:38 
GeneralRe: TabIndex !!!!!!!!!!!!!!!!!!!!!!!!! Pin
Dave Kreskowiak25-Dec-06 17:39
mveDave Kreskowiak25-Dec-06 17:39 
GeneralRe: TabIndex !!!!!!!!!!!!!!!!!!!!!!!!! Pin
kindman_nb25-Dec-06 20:45
kindman_nb25-Dec-06 20:45 
GeneralRe: TabIndex !!!!!!!!!!!!!!!!!!!!!!!!! Pin
Dave Kreskowiak26-Dec-06 2:32
mveDave Kreskowiak26-Dec-06 2:32 
GeneralRe: TabIndex !!!!!!!!!!!!!!!!!!!!!!!!! Pin
kindman_nb26-Dec-06 9:25
kindman_nb26-Dec-06 9:25 
GeneralRe: TabIndex !!!!!!!!!!!!!!!!!!!!!!!!! Pin
Dave Kreskowiak26-Dec-06 11:00
mveDave Kreskowiak26-Dec-06 11:00 
GeneralRe: TabIndex !!!!!!!!!!!!!!!!!!!!!!!!! Pin
kindman_nb26-Dec-06 20:19
kindman_nb26-Dec-06 20:19 
Questioncrystal reports Pin
kamal8524-Dec-06 0:28
kamal8524-Dec-06 0:28 
AnswerRe: crystal reports Pin
Dave Kreskowiak24-Dec-06 6:13
mveDave Kreskowiak24-Dec-06 6:13 
GeneralRe: crystal reports Pin
MatrixCoder24-Dec-06 11:25
MatrixCoder24-Dec-06 11:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.