VB5 to Pic VB5 Help


Closed Thread
Results 1 to 21 of 21

Hybrid View

  1. #1
    Join Date
    Aug 2009
    Location
    Paso Robles California
    Posts
    167


    Did you find this post helpful? Yes | No

    Default Pic to VB5

    Yes on the wrong forum it is data from a Pic

    Text1.Text = byte1 & byte2 & byte3

    adding vbcrlf or chr(13) or chr(10) has no effect on text box
    if I do
    text1.text = " I feel like " vbcrlf will go to the next line
    but variables will not

  2. #2
    Join Date
    Jan 2009
    Location
    Miami, Florida USA
    Posts
    704


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by l_gaminde View Post
    Yes on the wrong forum it is data from a Pic

    Text1.Text = byte1 & byte2 & byte3

    adding vbcrlf or chr(13) or chr(10) has no effect on text box
    if I do
    text1.text = " I feel like " vbcrlf will go to the next line
    but variables will not
    Try it like this

    Text1.Text = byte1 & vbcrlf & byte2 & vbcrlf & byte3
    "No one is completely worthless. They can always serve as a bad example."

    Anonymous

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts