Realized we aren't allowed to post links
Quote
Useful Binary Conversion. This program convert Binary to text and text to binary. This program has one Form1 (Main.frm), textbox (Text1.Text), two button, (cmdConvtoBin and cmdConvtoText) and a module1 (Binary.bas)
Private Sub cmdConvtoBin_Click()
MainText = Text1.Text
ConvertBin MainText
Text1.Text = MainText
End Sub
Private Sub cmdConvtoText_Click()
MainText = Text1.Text
ConvertToText MainText
Text1.Text = MainText
End Sub
Private Sub Form_Load()
Text1.Text = ""
End Sub
I was looking at this tutorial for a binary code convertor for visual basic 2006 for a school project. What does it mean by binary.bas? I know how to add module but how do i add that one?
thanks :3
This post was edited by Denzel on Jun 4 2013 07:11am