Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Text in a Picture box 1

Status
Not open for further replies.
Oct 5, 1999
105
GB
Using VB6

Is there an easy way to get text into a picture box?

I am trying to create icons of a set of text files by setting them to the contents of the first few lines.

I know I could use Print method but that truncates lines rather than wraps them. I can create a Label the same size and put the text in that (and it automatically wraps), but is there any way to transfer the Label into a Picture box so that I can save the picure.

Thanks in advance
 
I'm not sure I'm clear on what you're asking, but I'll assume you need a picture box because you have some pictures you'd like to contain in it. You can also put a label in it in design time, and simply access the label to populate it with text.

Now, I may well not understand what you're asking; feel free to elaborate.

HTH

Bob
 
I did something similar a few years ago, where I turned the text in a textbox into the drag cursor for drag and drop operations on that text. I'll try and dig it out - but I seem to recall that it was designed for single- rather than multiline text. However, converting it to multiline shouldn't be too hard ...
 
You may want to use DrawText API function which supports rendering text on a device context with word wrapping.

Place a picture box on the form and try the following code.
___
[tt]
Option Explicit
Private Declare Function DrawText Lib "user32" Alias "DrawTextA" (ByVal hdc As Long, ByVal lpStr As String, ByVal nCount As Long, lpRect As RECT, ByVal wFormat As Long) As Long
Const DT_CENTER = &H1
Const DT_WORDBREAK = &H10
Private Type RECT
Left As Long
Top As Long
Right As Long
Bottom As Long
End Type
Private Sub Form_Load()
Dim rc As RECT, strText As String
strText = "The quick brown fox jumps over the lazy dog."
With Picture1
.Move 0, 0, 1500, 1500
.AutoRedraw = True
.BackColor = vbWhite
.ScaleMode = vbPixels '3
rc.Right = .ScaleWidth
rc.Bottom = .ScaleHeight
DrawText .hdc, strText, -1, rc, DT_WORDBREAK 'Or DT_CENTER
End With
End Sub[/tt]
 
Thats just what I needed - many thanks everyone, especially Hypetia.

Paul
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top