473,387 Members | 1,423 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Tiling pictures in a report

Hi

I've got a load of pictures stored in my db, and want to print them in
a report. I can't figure out how to tile them four by five (for
instance) in a report, only in a single column.

Any hint appreciated.

K
Nov 13 '05 #1
4 3413

"demo" <kr******@bommelibom.com> wrote in message
news:23*************************@posting.google.co m...
Hi

I've got a load of pictures stored in my db, and want to print them in
a report. I can't figure out how to tile them four by five (for
instance) in a report, only in a single column.

Any hint appreciated.

K


In the design of the report, select File>Page Setup and look at the columns
tab. If this doesn't make it obvious what to do, run the label wizard which
creates multi-column reports for you.
Nov 13 '05 #2
For photos uploaded to the server, I set up a report with 25 image controls,
25 labels for the id number of the person, and 25 labels for the person's
name, all name photo1, id1, name1, etc. Tthe photo name, person's id, and
person's name are stored in UploadedPhotoTable. After uploading 25 photos,
the report is opened, which contains the following (ADO) code:

Private Sub Report_Open(Cancel As Integer)
Set cnxn = CurrentProject.Connection
Set rs = New ADODB.Recordset
Dim i As Integer
i = 1
With rs
.Open "UploadedPhotoTable", cnxn, adOpenKeyset, adLockOptimistic,
adCmdTableDirect
Do While Not .EOF
Me("photo" & i).Picture = "C:\odis\uploaded\" & .Fields(0)
Me("id" & i).Caption = .Fields(0)
Me("name" & i).Caption = .Fields(1)
.MoveNext
i = i + 1
If i > 25 Then Exit Do
Loop
.Close
End With
End Sub
Darryl Kerkeslager

"demo" <kr******@bommelibom.com> wrote:
I've got a load of pictures stored in my db, and want to print them in
a report. I can't figure out how to tile them four by five (for
instance) in a report, only in a single column.

Nov 13 '05 #3
"Eric Schittlipz" <er**@schittlipz.com> wrote in message news:<cl**********@titan.btinternet.com>...
"demo" <kr******@bommelibom.com> wrote in message
news:23*************************@posting.google.co m...
Hi

I've got a load of pictures stored in my db, and want to print them in
a report. I can't figure out how to tile them four by five (for
instance) in a report, only in a single column.

Any hint appreciated.

K


In the design of the report, select File>Page Setup and look at the columns
tab. If this doesn't make it obvious what to do, run the label wizard which
creates multi-column reports for you.


That made it obvious, hoped it wouldn't be harder...

Thanks
K
Nov 13 '05 #4
"Eric Schittlipz" <er**@schittlipz.com> wrote in message news:<cl**********@titan.btinternet.com>...
"demo" <kr******@bommelibom.com> wrote in message
news:23*************************@posting.google.co m...
Hi

I've got a load of pictures stored in my db, and want to print them in
a report. I can't figure out how to tile them four by five (for
instance) in a report, only in a single column.

Any hint appreciated.

K


In the design of the report, select File>Page Setup and look at the columns
tab. If this doesn't make it obvious what to do, run the label wizard which
creates multi-column reports for you.


That made it obvious, hoped it wouldn't be harder...

Thanks
K
Nov 13 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: JakeC | last post by:
Hey all, I'm currently redesigning a website that a friend and I started about a year ago. It is a daily surf report so when choosing the best script/language to use for the new design, I found...
0
by: Jim Hubbard | last post by:
By true tiling I do not mean the Vertical tiling or horizontal tiling like .... 1 2 3 4 or
8
by: Ron Holmes | last post by:
I want to place a background image on a windows form. Is there a way to prevent the image from Tiling without using an image box resized to the size of the form? I am using Visual Studio 2003...
4
by: Dale Ring | last post by:
Access 2000 I am trying to print a report that only some of the records have pictures. When the report prints, I do not want a blank image control showing on the report. This project is a test...
16
by: WindAndWaves | last post by:
Hi everyone, I have a main menu that opens a report and a form that I would like to display at the same time (while hiding the main menu). So far, I made the form a pop-up and the report a...
12
by: Wadim Grasza | last post by:
I want to store and display (on a form or a report) multiple pictures per record in an access database. The pictures are not stored within the database. They are stored as files and the database...
3
by: Viken Karaguesian | last post by:
Hello all, I need somehelp with background tiling. I have a sneaking suspicion that what I want to do is not possible, but I'll ask anyway. :>) First some background: Here's the site in...
0
by: kirby.urner | last post by:
Probably a fault line or cultural divide between acutely differing schools of thought, is in this area of tiling or mosaic making. Some schools consider this a stupid waste of time, others a core...
4
by: Ares6881 | last post by:
Hi, I've run into a snag here and hopefully someone here can help. Basically what I'm trying to do is set it up so the user only needs to place a properly formatted picture in a directory to get it...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.