Fletch Posted October 3, 2022 Share Posted October 3, 2022 I have 54 folders that contain images I need for a variable job. I cannot combine all the images into one folder, because my customer has used the same filename in different folders, and those images are actually different. Is it possible to have the software select the image by first finding the correct sub folder (which is a column in the database) and then matching the filename (which is a different column in the database)? Quote Link to comment Share on other sites More sharing options...
Dan Korn Posted October 4, 2022 Share Posted October 4, 2022 Sure, you can just build up the path to the file, something like this: return CreateResource("\\\\server\\share\\path\\" + Field("Folder") + "/" + Field("FileName")); Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.