2 important questions, please answer me

N

nader.mz

dear friends, i have 2 questions:
if i have pictures stored in a table(its path) and i want the picture itself
to appeare in the form how can i do this. its always appear as icon

also if i want to sum the record fields and put the result in the last field
how can i do this
 
O

Ofer Cohen

1. Look at this link "Displaying an Image in a Microsoft Access Form"

http://www.databasedev.co.uk/image-form.html

2. If you want to sum one field in few records, then add a text box to the
form, and in the ControlSource write
=Sum([FieldName])

Or, if you want to add few fields in one record, then in the text box
control source write
=[Field1]+[Field2]+[Field3]
 
Top