I wondered if someone knew how to make a binary counter with vb?
selot 0 Newbie Poster
Recommended Answers
Jump to Postyou mean convert char to binary code example
"5" = 00110101
"a" = 01100001this is what you mean ?
Jump to PostIn this code I write 2 functions, one function convert from char to binary and another one is for convert from string to binary code.
Private Sub Form_Load() MsgBox (char2bin("a")) MsgBox (txt2bin("Hello World")) End Sub Function txt2bin(str2bin As String) As String Dim result As String For i …
All 6 Replies
w00dy 1 Junior Poster in Training
selot 0 Newbie Poster
invisal 381 Search and Destroy
selot 0 Newbie Poster
selot 0 Newbie Poster
invisal 381 Search and Destroy
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.