Question about my recipe database

monks89

Registered User.
Local time
Today, 08:04
Joined
Mar 26, 2009
Messages
19
Hi, I'm trying to put my quantity of ingredient, ingredients, and comments on a report. Also, how do I make it so I don't have repeating entries in my report (it seems that for every ingredient in the recipe, the report is making a separate entry of the identical recipe)? I'm trying to make it so I have one recipe per page and to move between recipes would require clicking of the |> button or manual insertion of the page number.

I've hosted the file online to make it easy -> Hosted Database

Thanks
 
Hi, I'm trying to put my quantity of ingredient, ingredients, and comments on a report. Also, how do I make it so I don't have repeating entries in my report (it seems that for every ingredient in the recipe, the report is making a separate entry of the identical recipe)? I'm trying to make it so I have one recipe per page and to move between recipes would require clicking of the |> button or manual insertion of the page number.

I've hosted the file online to make it easy -> Hosted Database

Thanks

I do not have Access 2007 here at work, but your problem sounds like it could be related to the Join in the query that the Report is based on. If you could post that query, I could try to assist.
 
Right now it's not based on any query.....should it be?
 
Right now it's not based on any query.....should it be?

If it is based on a single table that should not happen. I assumed that it was based on 2 or more tables that were joined together to allow access to the information.
 
On your report Sort on RecipeID with a Header/Footer.

Put the RecipeID and Recipe Title on this Header.

In the Detail put the Qty and Ingredient.

Simon
 
Have a look at this change what you want. I've removed the images, all you want is Query1 and Report 1. It would be better to use jpeg images and larger if possible.

Simon
 

Attachments

I tried to do that and it gave me some ole object error message.....not sure the exact wording. Thanks for the file and your help.
 
Well, it is the first time I've tried inserting an image into a database, and it is still crap.

I have some scripts to load an image and do it properly, so can you give me the image for the first couple of recipes, decent size if you got them.

Simon
 
You will need to modify the Module1 and specify where the Images are held.

Code:
Function GetImageDir() As String
    GetImageDir = "C:\Databases\Images\"
End Function

I changed the report and added comments and a Page per Recipe on the Group / Sort.

This works with Report Preview.

Simon
 

Attachments

My pleasure,

You could do with bigger images as they are small and enlarging them makes them pixelate.

Simon
 

Users who are viewing this thread

Back
Top Bottom