Solved Upload the Path Auto from the TABLE path (1 Viewer)

smtazulislam

Member
Local time
Today, 12:04
Joined
Mar 27, 2020
Messages
806
I have 1675 records in my table of tblEMPLOYEEs. Every single items like Image, Passport, Contract etc. is separated folder and In the folder have two kinds of file type is like Image, pdf.

I need a function call in my every(Where needed) textbox in Datasource filed like
'For Employee Image (.jpg)
Code:
=fncIsLoadLoc("Image", EmployeeID)                   ' Folder Name and Employee ID numbers

'For Employee Passport (pdf)
Code:
=fncIsLoadLoc(Passport, EmployeeID)                 ' Folder Name and Employee ID numbers

Code:
Public Function fncIsLoadLoc(sFolderName As Control, sEmployeeID As String)

Dim rst As DAO.Recordset
Dim strFullPath As String

    Set rst = CurrentDb.OpenRecordset("tblFolderPathSyncing")

'I dont know how to call below twice variable. Help me here. 
    sFolderName = rst2!Locations & "\" & rst2!SubFolderName & "\"
    sEmployeeID = 

    strFullPath = sFolderName & "\" & sEmployeeID
' Result
    fncIsLoadLoc = strfullPath 
    rst.Close
End Function

Then a button to open this Image or Pdf
Code:
Private Sub CmdViewImage_Click()
Dim strPath As String
'Setting path
    strPath = Me.txtEmployeePicture & ""
    If Dir(strPath) = "" Then 
        MsgBox "Your Image folder is not available same numbers of employee picture !" & vbCrLf & "Check and try again !", vbExclamation, "Open Picture"
        Exit Sub
    End If
' Oppening file
    Application.FollowHyperlink strPath

End Sub
Advanced thanks any help.
 

Attachments

  • Capture.PNG
    Capture.PNG
    33.9 KB · Views: 85

CJ_London

Super Moderator
Staff member
Local time
Today, 10:04
Joined
Feb 19, 2013
Messages
16,612
somewhat confused about what you are trying to do. I presume you get an error message - so what is it? I also presume the image is of your tblFolderPathSyncing

Do you have Option Explicit at the top of your module?

you are using

Set rst = CurrentDb.OpenRecordset("tblFolderPathSyncing")

then later you use

sFolderName = rst2!Locations & "\" & rst2!SubFolderName & "\"

but rst2 is not declared and not created

you don't appear to be searching for a specific fid? or dbid?

I don't see fields called Locations or subfoldername

Please provide a much clearer explanation of the requirement. Provide relevant data and examples of the outcome required from that data
 

smtazulislam

Member
Local time
Today, 12:04
Joined
Mar 27, 2020
Messages
806
somewhat confused about what you are trying to do. I presume you get an error message - so what is it? I also presume the image is of your tblFolderPathSyncing
tblFolderPathSyncing is my folder path for including database. See that attached picture.
Do you have Option Explicit at the top of your module?
Yes,
Option Compare Database
Option Explicit

you are using

Set rst = CurrentDb.OpenRecordset("tblFolderPathSyncing")

then later you use

sFolderName = rst2!Locations & "\" & rst2!SubFolderName & "\"
this is mistake. because before I using two table and call openrecordset "2". forget to delete second recordset variable.

Edit :

Code:
Public Function fncIsLoadLoc(sFolderName As Control, sEmployeeID As String)

Dim rst As DAO.Recordset
Dim strFullPath As String

    Set rst = CurrentDb.OpenRecordset("tblFolderPathSyncing")

'I dont know how to call below twice variable. Help me here.
    sFolderName = rst!Locations & "\" & rst!SubFolderName & "\"
    sEmployeeID =

    strFullPath = sFolderName & "\" & sEmployeeID
' Result
    fncIsLoadLoc = strfullPath
    rst.Close
End Function
 

smtazulislam

Member
Local time
Today, 12:04
Joined
Mar 27, 2020
Messages
806
Actually, I would like to do,
if I open my frmEmployee then path of Image textbox display like : "E:\TEST LOCATION\EMPLOYEE FOLDER\IMAGE\1.jpg"
And path of pdf textbox display like : "E:\TEST LOCATION\EMPLOYEE FOLDER\PASSPORT\1.pdf"

My Ideas is something like that, fncIsLoadLoc "Collect Main Path from tblFolderPathSyncing" "folder Name want to syncing" "Collect EmpoyeeID from tblEmployee "
 

moke123

AWF VIP
Local time
Today, 05:04
Joined
Jan 11, 2013
Messages
3,920
There are a number of ways to do what we think you want to do.
We need to know more about your folder structure. Is there one image folder for all or is there a folder for each employee with subfolders for image, passport, etc. How are you relating each item to each employee?
 

smtazulislam

Member
Local time
Today, 12:04
Joined
Mar 27, 2020
Messages
806
There are a number of ways to do what we think you want to do.
We need to know more about your folder structure. Is there one image folder for all or is there a folder for each employee with subfolders for image, passport, etc.
There is ONE folder for ALL employees, as same EACH items for ONE FOLDER, but its distributed by employee ID
 

CJ_London

Super Moderator
Staff member
Local time
Today, 10:04
Joined
Feb 19, 2013
Messages
16,612
Sorry, I'm going to drop out., not getting answers to questions, in particular

Provide relevant data and examples of the outcome required from that data

All we are getting is more descriptions of what you want
 

smtazulislam

Member
Local time
Today, 12:04
Joined
Mar 27, 2020
Messages
806
i also tried this module link do it. But its just display Path and do including the Employee ID
 

Attachments

  • Single Folder Create_picture.accdb
    896 KB · Views: 99

smtazulislam

Member
Local time
Today, 12:04
Joined
Mar 27, 2020
Messages
806
Its work! :) .
Code:
Private Sub CallDisplayImage()
Me.txtEmployeePicture = DLookup("FolderPath", "tblFolderPathSyncing", "FID = 1") & "\" & Me.EmployeeID & ".jpg"
Me!txtImageNote = DisplayImage(Me!ImgEmployeePicture, Me!txtEmployeePicture)
End Sub

EDIT :
can someone help me to displaying PDF file in the form ?
I tried it like -
Code:
Private Sub CallDisplayImage()
 Me.txtEmployeePicture = DLookup("FolderPath", "tblFolderPathSyncing", "FID = 1") & "\" & Me.EmployeeID & ".jpg"
 Me!txtImageNote = DisplayImage(Me!ImgEmployeePicture, Me!txtEmployeePicture)
 
 Me.txtPassportPDF = DLookup("FolderPath", "tblFolderPathSyncing", "FID = 2") & "\" & Me.EmployeeID & ".pdf"
 Me!txtImageNote = DisplayImage(Me!ImgEmployeePicture, Me!txtEmployeePicture)
End Sub

See error attached.
 

Attachments

  • Capture111.PNG
    Capture111.PNG
    78.3 KB · Views: 77
Last edited:

moke123

AWF VIP
Local time
Today, 05:04
Joined
Jan 11, 2013
Messages
3,920
Could you post a couple examples of the paths to the files of 2 employees . What are you naming the files?
 

smtazulislam

Member
Local time
Today, 12:04
Joined
Mar 27, 2020
Messages
806
Could you post a couple examples of the paths to the files of 2 employees . What are you naming the files?
My file name is EmployeeID . See the red marked.
Me.txtEmployeePicture = DLookup("FolderPath", "tblFolderPathSyncing", "FID = 1") & "\" & Me.EmployeeID & ".jpg"
Me.txtPassportPDF = DLookup("FolderPath", "tblFolderPathSyncing", "FID = 2") & "\" & Me.EmployeeID & ".pdf"
 

moke123

AWF VIP
Local time
Today, 05:04
Joined
Jan 11, 2013
Messages
3,920
Never mind. Seems like your overcomplicating it.
 

smtazulislam

Member
Local time
Today, 12:04
Joined
Mar 27, 2020
Messages
806
Never mind. Seems like your overcomplicating it.
You maybe not get my explanation. my path is displayed in the textbox as like : "E:\TEST LOCATION\EMPLOYEE FOLDER\PASSPORT\1630.pdf "
But the problem is not displayed in the Form within " WebBrowser1".
Capture.PNG
 

CJ_London

Super Moderator
Staff member
Local time
Today, 10:04
Joined
Feb 19, 2013
Messages
16,612
But the problem is not displayed in the Form within " WebBrowser1".

so what code are you using to populate the webbrowser control? what is the webbrowser control controlsource value?
 

smtazulislam

Member
Local time
Today, 12:04
Joined
Mar 27, 2020
Messages
806
Thank you @CJ_London & @moke123 .
Its work now. :)

Its problem with my pdf READER, when I re-installed and Installed new version then form displayed pdf file .
 
Last edited:

smtazulislam

Member
Local time
Today, 12:04
Joined
Mar 27, 2020
Messages
806
My file name is EmployeeID . See the red marked.
Me.txtEmployeePicture = DLookup("FolderPath", "tblFolderPathSyncing", "FID = 1") & "\" & Me.EmployeeID & ".jpg"
Me.txtPassportPDF = DLookup("FolderPath", "tblFolderPathSyncing", "FID = 2") & "\" & Me.EmployeeID & ".pdf"
need a little help..
my some file format is " .png and .jpeg " And VBA there can added ONLY ONE.
How can I added multi EXTENSION for image in same a line.
 

moke123

AWF VIP
Local time
Today, 05:04
Joined
Jan 11, 2013
Messages
3,920
Still too many unanswered questions. Do you have 1600+ records in your employee table as your initial post implies?
Out of the 9 different employee folders, 8 of them would seem to contain just one file for each employee while the documents folder may hold one or more for each employee, or maybe none.

The simplest way would be to store the file name or the fullpath in a table.
Another way would be to loop through the extensions and test if the file exists.
Yet another way would be using fso to match the fso.GetBaseName() to the EmployeeID .

If you go the fso way you could do something like this
(Note that a base name is the file name without the extension)

In a standard module:
Code:
Function GetPathWithExt(CheckFolder As String, FileBaseName As String) As String

    Dim fso As New FileSystemObject
    Dim fol As Folder, fil As File

    Set fol = fso.GetFolder(CheckFolder)

    For Each fil In fol.Files
        If fso.GetBaseName(fil.Path) = FileBaseName Then
            GetPathWithExt = fil.Path
            Exit For
        End If

    Next
    
End Function

In your form module's CallDisplayImage procedure:

Code:
Private Sub CallDisplayImage()

    Dim IFolder As String, PPFolder As String

    IFolder = DLookup("FolderPath", "tblFolderPathSyncing", "FID = 1")
    PPFolder = DLookup("FolderPath", "tblFolderPathSyncing", "FID = 2")

    Me.ImgEmployeePicture.Picture = GetPathWithExt(IFolder, Me.EmployeeID)
    Me.txtPassportPDF = GetPathWithExt(PPFolder, Me.EmployeeID)

End Sub
 

smtazulislam

Member
Local time
Today, 12:04
Joined
Mar 27, 2020
Messages
806
Still too many unanswered questions. Do you have 1600+ records in your employee table as your initial post implies?
Out of the 9 different employee folders, 8 of them would seem to contain just one file for each employee while the documents folder may hold one or more for each employee, or maybe none.
I have total 8 sub-folder under of EMPLOYEE FOLDER. now here I added ONE more folder for VEHICLE LICENSE.
EACH folder MANAGED add picture or pdf file by EMPLOYEE ID.
in DOCUMENT is various file download from database pdf or word or excel.
Example : Report for Vacation or Absent : its arranged by report Name & Employee ID & Date()
Result : rptVACATION- 1600 - 20230124 Or rptAbsent- 1600 - 20230124

The simplest way would be to store the file name or the fullpath in a table.
Another way would be to loop through the extensions and test if the file exists.
Yet another way would be using fso to match the fso.GetBaseName() to the EmployeeID .

If you go the fso way you could do something like this
(Note that a base name is the file name without the extension)

In a standard module:
Code:
Function GetPathWithExt(CheckFolder As String, FileBaseName As String) As String

    Dim fso As New FileSystemObject
    Dim fol As Folder, fil As File

    Set fol = fso.GetFolder(CheckFolder)

    For Each fil In fol.Files
        If fso.GetBaseName(fil.Path) = FileBaseName Then
            GetPathWithExt = fil.Path
            Exit For
        End If

    Next
   
End Function

In your form module's CallDisplayImage procedure:

Code:
Private Sub CallDisplayImage()

    Dim IFolder As String, PPFolder As String

    IFolder = DLookup("FolderPath", "tblFolderPathSyncing", "FID = 1")
    PPFolder = DLookup("FolderPath", "tblFolderPathSyncing", "FID = 2")

    Me.ImgEmployeePicture.Picture = GetPathWithExt(IFolder, Me.EmployeeID)
    Me.txtPassportPDF = GetPathWithExt(PPFolder, Me.EmployeeID)

End Sub
It is same result given me with before code. I would looking there 3 or 4 extensions file work Like .jpeg .jpg .png .bmp format
 

Users who are viewing this thread

Top Bottom