ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Inserting Images from certain File Folder Take2 (https://www.excelbanter.com/excel-programming/430549-inserting-images-certain-file-folder-take2.html)

ironhydroxide

Inserting Images from certain File Folder Take2
 

Previously i asked about inserting all images from a folder, Now my problem
is that when i run the code, it pops up a window, not at the specific folder
i defined, but at the My Documents folder. How does one fix this problem?
below is a snippet of my code

------------------------------------------------------------------------------------------------
Picturestring = Application _
.GetOpenFilename("D:\AAA Elder Zornes Documents\01 To Be Processed\CSM
Process Folder\All Files (*.jpg),*.jpg", , , , True)
------------------------------------------------------------------------------------------------

Thanks for any and all suggestions/replies

Ironhydroxide

joel

Inserting Images from certain File Folder Take2
 

You need to perform a chdrive and then ad chdir like below. You can
automatically get each of the filename in the code below rather than use
getopenfilename. If you use getopenfilename you cna modify your code to
allow multiselect so you can select more than one file at a time.

Drive = "D"
chdrive Drive
Folder = "D:\AAA Elder Zornes Documents\01 To Be Processed\" & _
CSM Process Folder\"
chdir = Folder

Picturestring = dir(Folder & "*.jpg")
do while FName < ""
'add your code here
'the filename for each picture is Folder & FName

Picturestring = dir()
loop


"ironhydroxide" wrote:

Previously i asked about inserting all images from a folder, Now my problem
is that when i run the code, it pops up a window, not at the specific folder
i defined, but at the My Documents folder. How does one fix this problem?
below is a snippet of my code

------------------------------------------------------------------------------------------------
Picturestring = Application _
.GetOpenFilename("D:\AAA Elder Zornes Documents\01 To Be Processed\CSM
Process Folder\All Files (*.jpg),*.jpg", , , , True)
------------------------------------------------------------------------------------------------

Thanks for any and all suggestions/replies

Ironhydroxide



All times are GMT +1. The time now is 05:31 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com