Control similar to Picture Box

  • Thread starter Thread starter Biju George
  • Start date Start date
B

Biju George

Hello all,

In VB there is a control "PictureBox" in Tool Box. Is there a control in
Access similar to this function ?

I want to use this property

PictureBox.Print xyz

I have a calculation where for each value it generate a different set of
values "xyz" which can be seen in the PictureBox. If I use the control
textbox it give only one value.

Any suggestion is highly appreciated.

Thanks /biju
 
An Access subform may do what you require. The syntax and properties are not
the same though.
 
To show multiple results of the calculation you can concatenate each result
to the current value of a text box. For instance add a deep text box,
txtResult, to a form and a command button with the following in its Click
event procedure:

Dim var As Variant

var = InputBox("Enter a number:")

Me.txtResult = (Me.txtResult + vbNewLine) & (var * 2)

Each time you click the button and enter a number at the prompt that number
multiplied by 2 will be added to the list in the text box.

Ken Sheridan
Stafford, England
 
Thanks Ken,

Although my objective is not solved, but some idea in that direction is
helping me.

biju
 
Back
Top