Control similar to Picture Box

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
 
A

Arvin Meyer [MVP]

An Access subform may do what you require. The syntax and properties are not
the same though.
 
K

Ken Sheridan

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
 
B

Biju George

Thanks Ken,

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

biju
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top