473,467 Members | 1,373 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Need "Browse for File" button

truthlover
107 New Member
I need some help. I need a button on an Access form that allows the user to browse for a file on our network, and insert it in a field (rather than having to type a path). I dont need any filters because the files can be any number of formats.

I've come across a couple of so-called "simple" solutions, but for the life of me, I either cant understand them or I cant get them to work. I know nothing about VB so if someone can provide a truly simple answer (preferably something I could cut and paste) with clear instructions on how to actually get it to work, I'd be VERY grateful.

Oh, I am coding this in Access 2000, but if I need to, I can code it in Access 2002-2003.

Thanks!
Barb
Feb 13 '08 #1

✓ answered by NeoPa

Select a File or Folder using the FileDialog Object may prove helpful on this subject.

79 40810
ADezii
8,834 Recognized Expert Expert
I need some help. I need a button on an Access form that allows the user to browse for a file on our network, and insert it in a field (rather than having to type a path). I dont need any filters because the files can be any number of formats.

I've come across a couple of so-called "simple" solutions, but for the life of me, I either cant understand them or I cant get them to work. I know nothing about VB so if someone can provide a truly simple answer (preferably something I could cut and paste) with clear instructions on how to actually get it to work, I'd be VERY grateful.

Oh, I am coding this in Access 2000, but if I need to, I can code it in Access 2002-2003.

Thanks!
Barb
  1. Set a Reference to Microsoft Office XX.X Object Library.
  2. Copy and Paste the following code wherever appropriate, changing the name of the Text Box
    Expand|Select|Wrap|Line Numbers
    1. Dim fdg As FileDialog, vrtSelectedItem As Variant
    2. Dim strSelectedFile As String
    3.  
    4. Set fdg = Application.FileDialog(msoFileDialogFilePicker)
    5.  
    6. With fdg
    7.   .AllowMultiSelect = False
    8.   .InitialView = msoFileDialogViewDetails
    9.     If .Show = -1 Then
    10.       For Each vrtSelectedItem In .SelectedItems    'onby be 1
    11.         strSelectedFile = vrtSelectedItem
    12.       Next vrtSelectedItem
    13.       Me![txtSelectedFile] = strSelectedFile
    14.     Else     'The user pressed Cancel.
    15.     End If
    16. End With
    17.  
    18. Set fd = Nothing
  3. Let me know if you have any problems.
Feb 13 '08 #2
truthlover
107 New Member
Set a Reference to Microsoft Office XX.X Object Library.
How do I do that?

Copy and Paste the following code wherever appropriate,
I'm afraid I couldnt begin to know where it's appropriate. Can you be more specific?

changing the name of the Text Box
Do you mean I have to change the name of the actual Text Box (what do I change it to?) or do you mean I have to rename the Text Box reference in the below code?

Sorry, I warned you I knew nothing about this

Thanks!
Barb

  1. Set a Reference to Microsoft Office XX.X Object Library.
  2. Copy and Paste the following code wherever appropriate, changing the name of the Text Box
    Expand|Select|Wrap|Line Numbers
    1. Dim fdg As FileDialog, vrtSelectedItem As Variant
    2. Dim strSelectedFile As String
    3.  
    4. Set fdg = Application.FileDialog(msoFileDialogFilePicker)
    5.  
    6. With fdg
    7. .AllowMultiSelect = False
    8. .InitialView = msoFileDialogViewDetails
    9. If .Show = -1 Then
    10. For Each vrtSelectedItem In .SelectedItems 'onby be 1
    11. strSelectedFile = vrtSelectedItem
    12. Next vrtSelectedItem
    13. Me![txtSelectedFile] = strSelectedFile
    14. Else 'The user pressed Cancel.
    15. End If
    16. End With
    17.  
    18. Set fd = Nothing
  3. Let me know if you have any problems.
Feb 13 '08 #3
ADezii
8,834 Recognized Expert Expert
How do I do that?



I'm afraid I couldnt begin to know where it's appropriate. Can you be more specific?



Do you mean I have to change the name of the actual Text Box (what do I change it to?) or do you mean I have to rename the Text Box reference in the below code?

Sorry, I warned you I knew nothing about this

Thanks!
Barb
  1. To set a Reference to the Microsoft Office Object Library
    • In Form Design View
    • Select View from the Menu Bar ==> Code
    • Select Tools from the Menu Bar ==> References
    • Scroll down to the Microsoft Office XX.X Object Library
    • Select the Check Box next to this Option
    • Click on OK
  2. Select the Text Box on your Form (Design View) that will show the Path to the selected File
    • Right Click on Text Box ==> Properties ==> All Tab ==> Name.
    • Rename the Text Box to txtSelectedFile
    • Close Properties Dialog Box
Feb 13 '08 #4
truthlover
107 New Member
Ok, I got that. Now where does the code go? And is there anything I have to do to connect the code to the text box?



  1. To set a Reference to the Microsoft Office Object Library
    • In Form Design View
    • Select View from the Menu Bar ==> Code
    • Select Tools from the Menu Bar ==> References
    • Scroll down to the Microsoft Office XX.X Object Library
    • Select the Check Box next to this Option
    • Click on OK
  2. Select the Text Box on your Form (Design View) that will show the Path to the selected File
    • Right Click on Text Box ==> Properties ==> All Tab ==> Name.
    • Rename the Text Box to txtSelectedFile
    • Close Properties Dialog Box
Feb 13 '08 #5
ADezii
8,834 Recognized Expert Expert
Ok, I got that. Now where does the code go? And is there anything I have to do to connect the code to the text box?
Now where does the code go?
The most obvious location would be the Click() Event of a Command Button.
And is there anything I have to do to connect the code to the text box?
Line #13 connects the code (selected File) to the Text Box as long as it is named txtSelectedFile.
Feb 14 '08 #6
truthlover
107 New Member
Thanks, that worked great!

One question, though, is that even though I have it set up as a hyperlink, when it's clicked on, nothing happens. Is there some extra coding it needs?

Also, is there any way of also getting an image of the file selected to display?

Thanks so much!
Barb


The most obvious location would be the Click() Event of a Command Button.

Line #13 connects the code (selected File) to the Text Box as long as it is named txtSelectedFile.
Feb 14 '08 #7
ADezii
8,834 Recognized Expert Expert
Thanks, that worked great!

One question, though, is that even though I have it set up as a hyperlink, when it's clicked on, nothing happens. Is there some extra coding it needs?

Also, is there any way of also getting an image of the file selected to display?

Thanks so much!
Barb
You definately should have mentioned these 'little details' up front! Is the Control Source for txtSelectedFile a Hyperlink Data Type?
Feb 14 '08 #8
truthlover
107 New Member
You definately should have mentioned these 'little details' up front! Is the Control Source for txtSelectedFile a Hyperlink Data Type?
Sorry. I didint mention it because it was working with the "edit hyperlink" code I tried first.

Anyway, yes, I currently have the control source as a Hyperlink. I also had some trouble initially getting the hyperlink to not use http:// to target the link. I may have done it wrong (i set the format to "file://") so if that's wrong, please tell me the correct method.

Thanks for all your patience!!
Feb 14 '08 #9
ADezii
8,834 Recognized Expert Expert
Sorry. I didint mention it because it was working with the "edit hyperlink" code I tried first.

Anyway, yes, I currently have the control source as a Hyperlink. I also had some trouble initially getting the hyperlink to not use http:// to target the link. I may have done it wrong (i set the format to "file://") so if that's wrong, please tell me the correct method.

Thanks for all your patience!!
You are quite welcome. Now, let's work on the Hyperlink part first. Make a slight change to the code in Line #11, as listed below. Select a Local File first, see if you can Navigate to it via the Hyperlink on the Form Field (txtSelectedFile), then a File on the Network. Let me know how you make out:
Expand|Select|Wrap|Line Numbers
  1. Dim fdg As FileDialog, vrtSelectedItem As Variant
  2. Dim strSelectedFile As String
  3.  
  4. Set fdg = Application.FileDialog(msoFileDialogFilePicker)
  5.  
  6. With fdg
  7.   .AllowMultiSelect = False
  8.   .InitialView = msoFileDialogViewDetails
  9.     If .Show = -1 Then
  10.       For Each vrtSelectedItem In .SelectedItems 'onby be 1
  11.         strSelectedFile = vrtSelectedItem & "#" & vrtSelectedItem
  12.       Next vrtSelectedItem
  13.       Me![txtSelectedFile] = strSelectedFile
  14.     Else 'The user pressed Cancel.
  15.     End If
  16. End With
  17.  
  18. Set fd = Nothing
Feb 15 '08 #10
truthlover
107 New Member
That worked perfectly, thanks!!

What about getting an image to display? Is it possible to have that function also display as an image? PDF would be the preferred format, since that's the output of our scanners, but if that's not possible, a .tiff or a .jpg would work.

Access does have a method of doing it, but to be honest, it's clunky and difficult and the people using it are not going to get it so if i can get this one function to work, it would be fabulous.

Even if I need a separate button to get the image to display, it would be better than not having the ability to display the image.

Thanks again
-Barb


You are quite welcome. Now, let's work on the Hyperlink part first. Make a slight change to the code in Line #11, as listed below. Select a Local File first, see if you can Navigate to it via the Hyperlink on the Form Field (txtSelectedFile), then a File on the Network. Let me know how you make out:
Expand|Select|Wrap|Line Numbers
  1. Dim fdg As FileDialog, vrtSelectedItem As Variant
  2. Dim strSelectedFile As String
  3.  
  4. Set fdg = Application.FileDialog(msoFileDialogFilePicker)
  5.  
  6. With fdg
  7. .AllowMultiSelect = False
  8. .InitialView = msoFileDialogViewDetails
  9. If .Show = -1 Then
  10. For Each vrtSelectedItem In .SelectedItems 'onby be 1
  11. strSelectedFile = vrtSelectedItem & "#" & vrtSelectedItem
  12. Next vrtSelectedItem
  13. Me![txtSelectedFile] = strSelectedFile
  14. Else 'The user pressed Cancel.
  15. End If
  16. End With
  17.  
  18. Set fd = Nothing
Feb 15 '08 #11
ADezii
8,834 Recognized Expert Expert
That worked perfectly, thanks!!

What about getting an image to display? Is it possible to have that function also display as an image? PDF would be the preferred format, since that's the output of our scanners, but if that's not possible, a .tiff or a .jpg would work.

Access does have a method of doing it, but to be honest, it's clunky and difficult and the people using it are not going to get it so if i can get this one function to work, it would be fabulous.

Even if I need a separate button to get the image to display, it would be better than not having the ability to display the image.

Thanks again
-Barb
I could incorporate code which would check the Selected File's Extension, and if it is one of the standard Graphic File Formats (*.bmp, *.gif, *.wmf, *.jpg) dynamically load the Image into an Iamge Control. This Control would have to have practical dimensions to be effective. Is this what you are looking for?
Feb 15 '08 #12
truthlover
107 New Member
Yes, that's exactly what I need.

Thanks so much for your help and your patience.

Have a wonderful weekend
-Barb

I could incorporate code which would check the Selected File's Extension, and if it is one of the standard Graphic File Formats (*.bmp, *.gif, *.wmf, *.jpg) dynamically load the Image into an Iamge Control. This Control would have to have practical dimensions to be effective. Is this what you are looking for?
Feb 15 '08 #13
ADezii
8,834 Recognized Expert Expert
Yes, that's exactly what I need.

Thanks so much for your help and your patience.

Have a wonderful weekend
-Barb
You have a nice weekend, also. I'll try to have a look at it during this weekend and see what I can come up with.
Feb 16 '08 #14
ADezii
8,834 Recognized Expert Expert
Yes, that's exactly what I need.

Thanks so much for your help and your patience.

Have a wonderful weekend
-Barb
I'm posting some revised code based on an Image Control on your Form named imgSelectedFile, but please download the Attached Test Database on this Thread to get a much clearer picture of what's going on. Let me know how you make out.
Expand|Select|Wrap|Line Numbers
  1. Dim fdg As FileDialog, vrtSelectedItem As Variant
  2. Dim strSelectedFile As String, strImagePath As String
  3.  
  4. Set fdg = Application.FileDialog(msoFileDialogFilePicker)
  5.  
  6. With fdg
  7.   .AllowMultiSelect = False
  8.   .InitialView = msoFileDialogViewDetails
  9.     If .Show = -1 Then
  10.       For Each vrtSelectedItem In .SelectedItems 'onby be 1
  11.         strImagePath = vrtSelectedItem
  12.         strSelectedFile = vrtSelectedItem & "#" & vrtSelectedItem
  13.       Next vrtSelectedItem
  14.       Me![txtSelectedFile] = strSelectedFile
  15.         Select Case Right$(strImagePath, 4)
  16.           Case ".wmf", ".emf", ".dib", ".bmp", ".ico", ".gif", ".jpg"
  17.             Me![imgSelectedFile].Picture = strImagePath
  18.           Case Else
  19.             Me![imgSelectedFile].Picture = ""
  20.         End Select
  21.     Else 'The user pressed Cancel.
  22.     End If
  23. End With
  24.  
  25. Set fdg = Nothing
Feb 16 '08 #15
truthlover
107 New Member
It worked, but when i closed and reopened the form, the link was there, but the image didnt display. In fact, the attached file is the same way. How do I get the image to remain displayed?

Oh, one more thing. Is there a way to get this image to display in a report?

Thanks!
-Barb

I'm posting some revised code based on an Image Control on your Form named imgSelectedFile, but please download the Attached Test Database on this Thread to get a much clearer picture of what's going on. Let me know how you make out.
Expand|Select|Wrap|Line Numbers
  1. Dim fdg As FileDialog, vrtSelectedItem As Variant
  2. Dim strSelectedFile As String, strImagePath As String
  3.  
  4. Set fdg = Application.FileDialog(msoFileDialogFilePicker)
  5.  
  6. With fdg
  7. .AllowMultiSelect = False
  8. .InitialView = msoFileDialogViewDetails
  9. If .Show = -1 Then
  10. For Each vrtSelectedItem In .SelectedItems 'onby be 1
  11. strImagePath = vrtSelectedItem
  12. strSelectedFile = vrtSelectedItem & "#" & vrtSelectedItem
  13. Next vrtSelectedItem
  14. Me![txtSelectedFile] = strSelectedFile
  15. Select Case Right$(strImagePath, 4)
  16. Case ".wmf", ".emf", ".dib", ".bmp", ".ico", ".gif", ".jpg"
  17. Me![imgSelectedFile].Picture = strImagePath
  18. Case Else
  19. Me![imgSelectedFile].Picture = ""
  20. End Select
  21. Else 'The user pressed Cancel.
  22. End If
  23. End With
  24.  
  25. Set fdg = Nothing
Feb 17 '08 #16
ADezii
8,834 Recognized Expert Expert
It worked, but when i closed and reopened the form, the link was there, but the image didnt display. In fact, the attached file is the same way. How do I get the image to remain displayed?

Oh, one more thing. Is there a way to get this image to display in a report?

Thanks!
-Barb
The following code will dynamically load specific 'Graphic' Image Types into the Image Control on your Form while viewing (based on the displayed Link). Place it in the Current() Event of your Form as indicated below. It is pretty self-explanatory, but if you need to know how it works, just let me know:
Expand|Select|Wrap|Line Numbers
  1. Private Sub Form_Current()
  2. If Not IsNull(Me![txtSelectedFile]) Then
  3.   Select Case Right$(Me![txtSelectedFile], 4)
  4.     Case ".wmf", ".emf", ".dib", ".bmp", ".ico", ".gif", ".jpg"
  5.       'Extract the Address Section from the Hyperlink
  6.       Me![imgSelectedFile].Picture = Left$(Me![txtSelectedFile], InStr(Me![txtSelectedFile], "#") - 1)
  7.     Case Else
  8.       Me![imgSelectedFile].Picture = ""
  9.   End Select
  10. Else
  11.   Me![imgSelectedFile].Picture = ""
  12. End If
  13. End Sub
Feb 17 '08 #17
truthlover
107 New Member
There was no Current() option in the events. I am probably using the wrong type of image control. In fact, when I tried to put an image control in, it kept making me chose a source, so I ended up copy/pasting the image control from the sample you attached.

Can you tell me how to insert the proper Image control?

Thanks

The following code will dynamically load specific 'Graphic' Image Types into the Image Control on your Form while viewing (based on the displayed Link). Place it in the Current() Event of your Form as indicated below. It is pretty self-explanatory, but if you need to know how it works, just let me know:
Expand|Select|Wrap|Line Numbers
  1. Private Sub Form_Current()
  2. If Not IsNull(Me![txtSelectedFile]) Then
  3. Select Case Right$(Me![txtSelectedFile], 4)
  4. Case ".wmf", ".emf", ".dib", ".bmp", ".ico", ".gif", ".jpg"
  5. 'Extract the Address Section from the Hyperlink
  6. Me![imgSelectedFile].Picture = Left$(Me![txtSelectedFile], InStr(Me![txtSelectedFile], "#") - 1)
  7. Case Else
  8. Me![imgSelectedFile].Picture = ""
  9. End Select
  10. Else
  11. Me![imgSelectedFile].Picture = ""
  12. End If
  13. End Sub
Feb 17 '08 #18
ADezii
8,834 Recognized Expert Expert
There was no Current() option in the events. I am probably using the wrong type of image control. In fact, when I tried to put an image control in, it kept making me chose a source, so I ended up copy/pasting the image control from the sample you attached.

Can you tell me how to insert the proper Image control?

Thanks
There was no Current() option in the events.
  1. Form Design View
  2. Properties
  3. Event Tab
  4. On Current
  5. Click on ... to advance to the Current() Event
Can you tell me how to insert the proper Image control?
  1. Form Design View
  2. View ==> Toolbox
  3. Select Image Control then draw on Form
  4. Select any Graphic File then OK
  5. Select Image Control
  6. Properties
  7. Format Tab
  8. In Picture Property Delete the Path to the Graphic File
  9. Answer Yes to the Do you want to remove the Picture from Form prompt
  10. Rename the Image Control to imgSelectedFile
Feb 18 '08 #19
truthlover
107 New Member
That did the trick. Turned out the reason I couldnt find the Current () event is because I was looking for it in the image control properties and not the Form properties. Thank you for beign so patient with me.

One last question (I think). Is there a way to get the link and image to show up in a report too?

Thanks
-Barb

  1. Form Design View
  2. Properties
  3. Event Tab
  4. On Current
  5. Click on ... to advance to the Current() Event
  1. Form Design View
  2. View ==> Toolbox
  3. Select Image Control then draw on Form
  4. Select any Graphic File then OK
  5. Select Image Control
  6. Properties
  7. Format Tab
  8. In Picture Property Delete the Path to the Graphic File
  9. Answer Yes to the Do you want to remove the Picture from Form prompt
  10. Rename the Image Control to imgSelectedFile
Feb 18 '08 #20
ADezii
8,834 Recognized Expert Expert
That did the trick. Turned out the reason I couldnt find the Current () event is because I was looking for it in the image control properties and not the Form properties. Thank you for beign so patient with me.

One last question (I think). Is there a way to get the link and image to show up in a report too?

Thanks
-Barb
Not time right now, will return later.
Feb 18 '08 #21
ADezii
8,834 Recognized Expert Expert
That did the trick. Turned out the reason I couldnt find the Current () event is because I was looking for it in the image control properties and not the Form properties. Thank you for beign so patient with me.

One last question (I think). Is there a way to get the link and image to show up in a report too?

Thanks
-Barb
One last question (I think). Is there a way to get the link and image to show up in a report too?
Yes there is. It may be confusing to explain the entire process in the Post, but it is exactly the same code in the Form's Current() Event posted to the Format() Event of the Detail Section of a Report. I've kept the naming conventions the same to make it easy for you, simply create a Directory (Folder) in the Root Directory of Drive C: named PFDBMPS, namely C:\PFDBMPS. Download the Test Database for this Thread and copy the *.bmps to that Directory. Click on the View Report Button on the Main Menu to see how it is done.
Expand|Select|Wrap|Line Numbers
  1. Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
  2. If Not IsNull(Me![txtSelectedFile]) Then
  3.   Select Case Right$(Me![txtSelectedFile], 4)
  4.     Case ".wmf", ".emf", ".dib", ".bmp", ".ico", ".gif", ".jpg"
  5.       Me![imgSelectedFile].Picture = Left$(Me![txtSelectedFile], InStr(Me![txtSelectedFile], "#") - 1)
  6.     Case Else
  7.       Me![imgSelectedFile].Picture = ""
  8.   End Select
  9. Else
  10.   Me![imgSelectedFile].Picture = ""
  11. End If
  12. End Sub
Feb 18 '08 #22
truthlover
107 New Member
It worked great!

Now everything's doing what I wanted it to do.

Thank you sooooo much for all your help! Not only did you give me the information I needed, you did it in a way I could really make sense of.

If you dont already teach for a living, you should give it some serious thought.

-Barb


Yes there is. It may be confusing to explain the entire process in the Post, but it is exactly the same code in the Form's Current() Event posted to the Format() Event of the Detail Section of a Report. I've kept the naming conventions the same to make it easy for you, simply create a Directory (Folder) in the Root Directory of Drive C: named PFDBMPS, namely C:\PFDBMPS. Download the Test Database for this Thread and copy the *.bmps to that Directory. Click on the View Report Button on the Main Menu to see how it is done.
Expand|Select|Wrap|Line Numbers
  1. Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
  2. If Not IsNull(Me![txtSelectedFile]) Then
  3. Select Case Right$(Me![txtSelectedFile], 4)
  4. Case ".wmf", ".emf", ".dib", ".bmp", ".ico", ".gif", ".jpg"
  5. Me![imgSelectedFile].Picture = Left$(Me![txtSelectedFile], InStr(Me![txtSelectedFile], "#") - 1)
  6. Case Else
  7. Me![imgSelectedFile].Picture = ""
  8. End Select
  9. Else
  10. Me![imgSelectedFile].Picture = ""
  11. End If
  12. End Sub
Feb 18 '08 #23
ADezii
8,834 Recognized Expert Expert
It worked great!

Now everything's doing what I wanted it to do.

Thank you sooooo much for all your help! Not only did you give me the information I needed, you did it in a way I could really make sense of.

If you dont already teach for a living, you should give it some serious thought.

-Barb
I'm glad it all worked out for you, truthlover. BTW, give yourself a pat on the back also for persisting until a solution was arrived at. As far as teaching, you are not gonna believe this one - I'm a retired Philadelphia Fireman after 32+ years who now works Security for a Performing Arts building (Kimmel Center).
Feb 19 '08 #24
beemomo
50 New Member
Hi , ADezii!

you are great! i try to search and google around to find a solution to make a browse dialog button for almost a day but i still cannot get what i want.

But your code does make what i want works in just a short time!! i can't imagine that you are a retired fireman and still willing to share your knowledge !

Thanks again!
Feb 19 '08 #25
ADezii
8,834 Recognized Expert Expert
Hi , ADezii!

you are great! i try to search and google around to find a solution to make a browse dialog button for almost a day but i still cannot get what i want.

But your code does make what i want works in just a short time!! i can't imagine that you are a retired fireman and still willing to share your knowledge !

Thanks again!
Thanks for the cudos, like everyone else here at TheScripts, we're always glad to help ya!
Feb 19 '08 #26
truthlover
107 New Member
I'm glad it all worked out for you, truthlover. BTW, give yourself a pat on the back also for persisting until a solution was arrived at.
Sorry to bother you again, but I'm afraid I'm having a problem with the reports. The image is showing up, but the same image is showing up for all of the records instead of the proper record showing up for each report.

Am I doing something wrong?

Thanks
Feb 20 '08 #27
rudeman76
58 New Member
hi,

Is there a way to put the image onto a Word document or Excel spreadsheet?

Andrew
Feb 20 '08 #28
ADezii
8,834 Recognized Expert Expert
Sorry to bother you again, but I'm afraid I'm having a problem with the reports. The image is showing up, but the same image is showing up for all of the records instead of the proper record showing up for each report.

Am I doing something wrong?

Thanks
Is [txtSelectedFile] a Bount Text Box in the Detail Section of the Report, since that is what the code is reading?
Feb 20 '08 #29
ADezii
8,834 Recognized Expert Expert
hi,

Is there a way to put the image onto a Word document or Excel spreadsheet?

Andrew
Kindly create a seperate Thread concerning this Topic.
Feb 20 '08 #30
truthlover
107 New Member
Is [txtSelectedFile] a Bount Text Box in the Detail Section of the Report, since that is what the code is reading?
I'm not sure. I did it the way you told me, so if that would create a Bound Text Box, then that's what it is. (I went back to look at the properties, but didnt see any clear indication if it is or not.)

One thing I found out, that might make a difference, is where the problem is occurring is when I run a report that includes all records.

The application is for Work Orders, most that will have corresponding maps. If I open the report for a specific Work Order #, I get the correct image displayed, but if I run a report of all open Work Orders, the image for the first open Work Order displays on all the Work Orders.

Thanks!
Feb 20 '08 #31
ADezii
8,834 Recognized Expert Expert
I'm not sure. I did it the way you told me, so if that would create a Bound Text Box, then that's what it is. (I went back to look at the properties, but didnt see any clear indication if it is or not.)

One thing I found out, that might make a difference, is where the problem is occurring is when I run a report that includes all records.

The application is for Work Orders, most that will have corresponding maps. If I open the report for a specific Work Order #, I get the correct image displayed, but if I run a report of all open Work Orders, the image for the first open Work Order displays on all the Work Orders.

Thanks!
The code must reside in the Format() Event of the Detail Section, is that where you placed it?
Feb 20 '08 #32
truthlover
107 New Member
Yes, it's in the On Format() Event in the Detail section of the report.

Something thing I just noticed is not only is first Work Order is the only one that displays the proper image, it's also the only one that displays the link to the file. The rest of the records it displays nothing (I'm guessing that's why the images arent updating)


The code must reside in the Format() Event of the Detail Section, is that where you placed it?
Feb 20 '08 #33
truthlover
107 New Member
Hi ADezii,

Any ideas on the solution yet? The database is going live today so I need to get this resolved soon.

Thanks!!

Yes, it's in the On Format() Event in the Detail section of the report.

Something thing I just noticed is not only is first Work Order is the only one that displays the proper image, it's also the only one that displays the link to the file. The rest of the records it displays nothing (I'm guessing that's why the images arent updating)
Feb 21 '08 #34
ADezii
8,834 Recognized Expert Expert
Hi ADezii,

Any ideas on the solution yet? The database is going live today so I need to get this resolved soon.

Thanks!!
Were valid Links created for the rest of the Records? The problem can't be that complicated, and I honestly cannot see how the DB can go live while this little bug still exists. Is there any chance that you can E-Mail the DB or a subset of it to me as an Attachment? If so, I'll send you my E-Mail Address in a Private Message, and then you can Upload it to me. II will look at it ASAP.
Feb 21 '08 #35
truthlover
107 New Member
Yes, I can upload the DB to you. It's about 3mb.

As for going live with it, though the bug definitely needs to be fixed asap, it does not adversely effect creating the work orders and monitoring everyone's workload, which is something we needed up and running two weeks ago. And where a hard copy of a work order is needed, as long as it's printed out as a single record, the image prints properly

I cant tell you how much I appreciate your help. I couldnt have completed it without you.

Were valid Links created for the rest of the Records? The problem can't be that complicated, and I honestly cannot see how the DB can go live while this little bug still exists. Is there any chance that you can E-Mail the DB or a subset of it to me as an Attachment? If so, I'll send you my E-Mail Address in a Private Message, and then you can Upload it to me. II will look at it ASAP.
Feb 21 '08 #36
truthlover
107 New Member
Thanks so much for the file. Havent had time to post response. Will get to it later this morning.

Yes, I can upload the DB to you. It's about 3mb.

As for going live with it, though the bug definitely needs to be fixed asap, it does not adversely effect creating the work orders and monitoring everyone's workload, which is something we needed up and running two weeks ago. And where a hard copy of a work order is needed, as long as it's printed out as a single record, the image prints properly

I cant tell you how much I appreciate your help. I couldnt have completed it without you.
Feb 22 '08 #37
truthlover
107 New Member
I've made several modifications to the Report including only restricting it to the Records which have a Link value entered into the Field ([Link] = Not Null). No sense to me displaying an Image Reports with no Images for certain Records. You can still play around with it, let me know what you think via TheScripts. Please see the attached Database which contains the corrections.
Ok, I looked at the file, and i see the report you created out of the Images table, but the reports I am having problems with are still doing the same thing.
The report I need fixed is "rpt_SurveyWorkOrder(Current)". Sorry, I should have been clearer about which report was the problem.

Thanks so much for the file. Havent had time to post response. Will get to it later this morning.
Feb 22 '08 #38
ADezii
8,834 Recognized Expert Expert
Ok, I looked at the file, and i see the report you created out of the Images table, but the reports I am having problems with are still doing the same thing.
The report I need fixed is "rpt_SurveyWorkOrder(Current)". Sorry, I should have been clearer about which report was the problem.
I sent a revised Database to you @ 2:15 P.M.
Feb 22 '08 #39
truthlover
107 New Member
Hi ADezi

Sorry I didnt post sooner, but I was a way from the computer for a while.

Anyway, all the images are displaying properly Thank you so much.

One question, though. The records with no links are properly not showing any image, but it appears that the space for the image is retained. Is there any way of getting rid of that so it doesnt print two pages unnecessarily?

And if you could tell me how to get rid of that process dialog that would be fantastic (will it also speed up the launching of the application?)

Thanks again and enjoy the rest of your weekend.

I sent a revised Database to you @ 2:15 P.M.
Feb 24 '08 #40
ADezii
8,834 Recognized Expert Expert
Hi ADezi

Sorry I didnt post sooner, but I was a way from the computer for a while.

Anyway, all the images are displaying properly Thank you so much.

One question, though. The records with no links are properly not showing any image, but it appears that the space for the image is retained. Is there any way of getting rid of that so it doesnt print two pages unnecessarily?

And if you could tell me how to get rid of that process dialog that would be fantastic (will it also speed up the launching of the application?)

Thanks again and enjoy the rest of your weekend.
One question, though. The records with no links are properly not showing any image, but it appears that the space for the image is retained. Is there any way of getting rid of that so it doesnt print two pages unnecessarily?
Not really sure, but when I get a chance, I'll see what I can do.

And if you could tell me how to get rid of that process dialog that would be fantastic (will it also speed up the launching of the application?)
It will speed up the opening of the opening of the Report and the Application itself when the *.jpgs are loaded into the Image Control, but be very careful since the fix does involve editing of the Registry.

'Reference the following Link, specifically the Post by me (ADezii) dated January 18, 2008 12:57 A.M.
The BLOB (not the Movie)
Feb 24 '08 #41
ADezii
8,834 Recognized Expert Expert
Hi ADezi

Sorry I didnt post sooner, but I was a way from the computer for a while.

Anyway, all the images are displaying properly Thank you so much.

One question, though. The records with no links are properly not showing any image, but it appears that the space for the image is retained. Is there any way of getting rid of that so it doesnt print two pages unnecessarily?

And if you could tell me how to get rid of that process dialog that would be fantastic (will it also speed up the launching of the application?)

Thanks again and enjoy the rest of your weekend.
Your problem with the blank 2nd Page can be easily solved by setting the Top and Bottom Margins of the Report to the absolute minimum (set both to 0, Access will re-adjust and Fix), and removing the Page Footer, and possibly reducing empty spaces between controls. Now, everything will fit on a single Page. I've tried this and it does work.
Feb 24 '08 #42
truthlover
107 New Member
That works as long as the image stays the size it is, but the size of the image actually should be bigger than what I have there now. I dont imagine there's a way to have the image control expand or contract with the size of the linked image, is there?

Thanks!

Your problem with the blank 2nd Page can be easily solved by setting the Top and Bottom Margins of the Report to the absolute minimum (set both to 0, Access will re-adjust and Fix), and removing the Page Footer, and possibly reducing empty spaces between controls. Now, everything will fit on a single Page. I've tried this and it does work.
Feb 24 '08 #43
ADezii
8,834 Recognized Expert Expert
That works as long as the image stays the size it is, but the size of the image actually should be bigger than what I have there now. I dont imagine there's a way to have the image control expand or contract with the size of the linked image, is there?

Thanks!
Modifying the Clip, Zoom, and Stretch Properties, you can vary how a Graphic Image is displayed within the Image Control. The Image Control, unfortunately, will not adjust to the size of the Image.
Feb 25 '08 #44
truthlover
107 New Member
I figured as much.

Thanks again for all your help. I know this wasnt anything like fighting a fire, but you're still a hero in my book!

Modifying the Clip, Zoom, and Stretch Properties, you can vary how a Graphic Image is displayed within the Image Control. The Image Control, unfortunately, will not adjust to the size of the Image.
Feb 25 '08 #45
ADezii
8,834 Recognized Expert Expert
I figured as much.

Thanks again for all your help. I know this wasnt anything like fighting a fire, but you're still a hero in my book!
Thanks, truthlover, the pleasure was all mine.
Feb 25 '08 #46
truthlover
107 New Member
Hi ADezii,

Sorry to bother you again, but is there any way to get this application to allow multiple files to be attached?

Thanks!

Thanks, truthlover, the pleasure was all mine.
Mar 7 '08 #47
ADezii
8,834 Recognized Expert Expert
Hi ADezii,

Sorry to bother you again, but is there any way to get this application to allow multiple files to be attached?

Thanks!
The AllowMultiSelect Property of the FileDialog determines if multiple files can be selected and you'll have to readjust your code to place these files into a Variant Array, but I do not see how this is relevant in your specific case.
Mar 8 '08 #48
truthlover
107 New Member
Actually, you're right. It doesnt directly apply to the control that allows the map to be displayed, but they did ask that multiple related files (of all types) could be "attached" so anyone referring to the work order could access the related files from one place.

So what would I do? Create a separate control that doesnt display anything? Would I store it in the same table as the images, or should i create a separate table?

Thanks!

The AllowMultiSelect Property of the FileDialog determines if multiple files can be selected and you'll have to readjust your code to place these files into a Variant Array, but I do not see how this is relevant in your specific case.
Mar 10 '08 #49
ADezii
8,834 Recognized Expert Expert
Actually, you're right. It doesnt directly apply to the control that allows the map to be displayed, but they did ask that multiple related files (of all types) could be "attached" so anyone referring to the work order could access the related files from one place.

So what would I do? Create a separate control that doesnt display anything? Would I store it in the same table as the images, or should i create a separate table?

Thanks!
Here is a code segment which will:
  1. Allow you to select Multiple Files.
  2. Check every Selected File, and if it is one of the specified Formats, dynamically loads its Path into an Array.
  3. The prior contents of the Array are Preserved and it is Re-dimensioned.
  4. All the Selected File Paths are now contained in the Array arrsGraphicFiles().
  5. List all these Files and their Paths to the Immediate Window.
  6. To test the code, I selected hundreds of Files in the Windows Directory, 6 of which were of a Graphic nature (*.bmp).
  7. The results are listed below, as well as the code.
Expand|Select|Wrap|Line Numbers
  1. Dim fdg As FileDialog, vrtSelectedItem As Variant
  2. Dim strSelectedFile As String, strImagePath As String
  3. Dim intCounter As Integer, arrsGraphicFiles() As String
  4.  
  5. Set fdg = Application.FileDialog(msoFileDialogFilePicker)
  6.  
  7. intCounter = 0
  8.  
  9. With fdg
  10.   .AllowMultiSelect = True
  11.   .InitialView = msoFileDialogViewDetails
  12.     If .Show = -1 Then
  13.       For Each vrtSelectedItem In .SelectedItems
  14.         Select Case Right$(vrtSelectedItem, 4)
  15.           Case ".wmf", ".emf", ".dib", ".bmp", ".ico", ".gif", ".jpg"
  16.             intCounter = intCounter + 1
  17.             ReDim Preserve arrsGraphicFiles(intCounter)     'Redimension and Preserve
  18.             arrsGraphicFiles(intCounter) = vrtSelectedItem
  19.           Case Else
  20.         End Select
  21.       Next vrtSelectedItem
  22.     Else    'The user pressed Cancel.
  23.     End If
  24. End With
  25.  
  26. Set fdg = Nothing
  27.  
  28. 'Display the Selected/Graphic Files
  29. For intCounter = 1 To UBound(arrsGraphicFiles)
  30.   Debug.Print arrsGraphicFiles(intCounter)
  31. Next
OUTPUT:
Expand|Select|Wrap|Line Numbers
  1. C:\WINDOWS\Prairie Wind.bmp
  2. C:\WINDOWS\Rhododendron.bmp
  3. C:\WINDOWS\River Sumida.bmp
  4. C:\WINDOWS\Santa Fe Stucco.bmp
  5. C:\WINDOWS\Soap Bubbles.bmp
  6. C:\WINDOWS\Zapotec.bmp
Mar 11 '08 #50

Sign in to post your reply or Sign up for a free account.

Similar topics

10
by: mike | last post by:
regards: I use Jtidy (api) to translate a HTML file into a "XHTML file". But The "XHTML file" cannot be identified by nokia 6600. Do I miss something important? Or this is Jtidy's weakness or...
0
by: Bill R via AccessMonster.com | last post by:
I have a procedure that runs when you dbl click in a txt box. It runs the docmd.acCmdHyperLink command. I am trying to find a way to have the "Insert Hyperlink" dialog box default to "Browse For"...
2
by: Be Learning | last post by:
How can we compile a entire website (includes "attachment" like *.zip, *.pdf, ...) to only one *.chm file (with index, search)? Please tell me if anyone know. Thanks
1
by: Nicolas B | last post by:
Hi under VS.Net 2003 how can I specify the parameter "Output File" of a library (see Project Property Pages \ Common Properties\General\Project\Output File) I want to change the default...
5
by: Mr Gordonz | last post by:
Hi all, I want to put a button on a page, and when the user clicks it, the standard Windows "Open File" dialogue box opens, and the user can browse/select a file on their PC. Having selected a...
4
by: Mark Rendle | last post by:
Hi I'm writing a page which outputs CSV data for download. It's all working fine, setting ContentType to "text/csv", except when the "Open/Save" dialog appears, the filename shown is...
3
by: Terry Olsen | last post by:
I followed the information in a previous thread, but i'm having problems. I have a couple dropdownlists and a submit button on my form. The user selects choices from the lists and clicks the...
1
by: coosa | last post by:
Hi all, As the topic describes, I'd like to run a batch file using sql server. How do i do it? Thanks in advance
0
by: Greg Larsen | last post by:
How add the "Active File" icon (down arrow), and the "Close" icon (X) next on TabPage in the gray space next to the tabs, so when I click on the X the active Tab closes, and and when I click on the...
3
by: anudu | last post by:
hi, I am developing a system with asp.net, c#, and ajax. I have an excel file in server in "Server.MapPath("ExcelFiles/Test.xls")". I want to make it available to save to the disk in client...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

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.