Is it possible to upload files to a server for example X:\tempnel by clicking on a button on an excel sheet and selecting the file as you normally would? It would then display the file name in the cell next to the button "S37".
Is it possible to upload files to a server for example X:\tempnel by clicking on a button on an excel sheet and selecting the file as you normally would? It would then display the file name in the cell next to the button "S37".
Last edited by mcinnes01; 10-20-2010 at 04:02 AM.
Can you use saveas?
Hope that helps.
RoyUK
--------
For Excel Tips & Solutions, free examples and tutorials why not check out my web site
Free DataBaseForm example
Hi Roy,
I have had a quick scan around about how to use the save as function but most of my findings refered to creating a new workbook and using saveas to choose where to save it. I want to upload pdfs and word docs is this possible and could you kindly point me in the right direction or explain how I go about doing this?
Many thanks,
Andy
I have code at home that might work, but I can't access it until this evening
In the SaveAs helpscreen you can select the folder in which to store a file. There you can add FTP-sites (option at the bottom of the folders' list). After having done so you can select the FTP-site as if it's a folder on your system. Then your file will be uploaded.
Sorry to sound daft but where or what is the saveas helpscreen?
I think he is referring to the SaveAs Dialog when manually saving as. There are options to save to My network places & My Site.
I have code at home to FTP from VBA, I'll check them out tonight.
thanks roy I will speak to you tomorrow.
Andy
I've actually found some code by Leith Ross
![]()
'Written: June 11, 2008 'Author: Leith Ross 'Open the Internet object Private Declare Function InternetOpen _ Lib "wininet.dll" _ Alias "InternetOpenA" _ (ByVal sAgent As String, _ ByVal lAccessType As Long, _ ByVal sProxyName As String, _ ByVal sProxyBypass As String, _ ByVal lFlags As Long) As Long 'Connect to the network Private Declare Function InternetConnect _ Lib "wininet.dll" _ Alias "InternetConnectA" _ (ByVal hInternetSession As Long, _ ByVal sServerName As String, _ ByVal nServerPort As Integer, _ ByVal sUsername As String, _ ByVal sPassword As String, _ ByVal lService As Long, _ ByVal lFlags As Long, _ ByVal lContext As Long) As Long 'Get a file using FTP Private Declare Function FtpGetFile _ Lib "wininet.dll" _ Alias "FtpGetFileA" _ (ByVal hFtpSession As Long, _ ByVal lpszRemoteFile As String, _ ByVal lpszNewFile As String, _ ByVal fFailIfExists As Boolean, _ ByVal dwFlagsAndAttributes As Long, _ ByVal dwFlags As Long, _ ByVal dwContext As Long) As Boolean 'Send a file using FTP Private Declare Function FtpPutFile _ Lib "wininet.dll" _ Alias "FtpPutFileA" _ (ByVal hFtpSession As Long, _ ByVal lpszLocalFile As String, _ ByVal lpszRemoteFile As String, _ ByVal dwFlags As Long, _ ByVal dwContext As Long) As Boolean 'Close the Internet object Private Declare Function InternetCloseHandle _ Lib "wininet.dll" _ (ByVal hInet As Long) As Integer Sub UploadFTP() 'When uploading a file, make sure you have permisson to create a file on the server. 'The size limit for a uploading a file is 4GB. Dim hostFile As String Dim INet As Long Dim INetConn As Long Dim hostFile As String Dim Password As String Dim RetVal As Long Dim ServerName As String Dim Success As Long Dim UserName As String Const ASCII_TRANSFER = 1 Const BINARY_TRANSFER = 2 ServerName = "myserver.some.company" UserName = "anonymous" Password = "MyEmail@somewhere.net" localFile = "C:\My Documents\Test.Txt" hostFile = "\\My Test File.txt" RetVal = False INet = InternetOpen("MyFTP Control", 1&, vbNullString, vbNullString, 0&) If INet > 0 Then INetConn = InternetConnect(INet, ServerName, 0&, UserName, Password, 1&, 0&, 0&) If INetConn > 0 Then Success = FtpPutFile(INetConn, localFile, hostFile, BINARY_TRANSFER, 0&) RetVal = InternetCloseHandle(INetConn) End If RetVal = InternetCloseHandle(INet) End If If Success <> 0 Then MsgBox ("Upload process completed") Else MsgBox "FTP File Error!" End If End Sub
I always use snb's code:
NB. - activate the reference to FTP ActiveX DLL (ASPFTP.DLL)![]()
Sub snb_FTP With New ASPFTP .sServerName = "ftp://www.excelforum.com" .sPassword = "adlibitum" .sUserID = "snb" .bConnect .bPutFile "E:\adressen.xls", "ftp://www.exelforum.com/httpdocs/ftptest.xls" End With End Sub
- adapt the sting in the code tot your own situation.
- this is only 1 of more than 4 different methods tot accomplish this.
Thanks for the options, I will try them out tomorrow and let you know how I get on.
cheers,
Andy
Right I have finally got round to doing this, I was wondering rather than uploading the file to a server or folder etc is there a way that people could click a button to upload a file and then select the file location as you would when saving a file normally.
BUT**** then just copy the string to the cell next to this button e.g. cell R20 and then when they click a button at the bottom which emails a csv file to HR it will also attach the file at the end of this string to the email?
Therefore I don't really need to upload it anywhere merely select a file to be attached to an email.
I found this and tweaked it and it works perfectly thanks to j-walk!
![]()
Option Explicit Public Type BROWSEINFO hOwner As Long pidlRoot As Long pszDisplayName As String lpszTitle As String ulFlags As Long lpfn As Long lParam As Long iImage As Long End Type '32-bit API declarations Declare Function SHGetPathFromIDList Lib "shell32.dll" _ Alias "SHGetPathFromIDListA" (ByVal pidl As Long, ByVal pszPath As String) _ As Long Declare Function SHBrowseForFolder Lib "shell32.dll" _ Alias "SHBrowseForFolderA" (lpBrowseInfo As BROWSEINFO) As Long Function GetDirectory(Optional Msg) As String Dim bInfo As BROWSEINFO Dim path As String Dim r As Long, x As Long, pos As Integer ' Root folder = Desktop bInfo.pidlRoot = 0& ' Title in the dialog If IsMissing(Msg) Then bInfo.lpszTitle = "Select a folder." Else bInfo.lpszTitle = Msg End If ' Type of directory to return bInfo.ulFlags = &H1 ' Display the dialog x = SHBrowseForFolder(bInfo) ' Parse the result path = Space$(512) r = SHGetPathFromIDList(ByVal x, ByVal path) If r Then pos = InStr(path, Chr$(0)) GetDirectory = Left(path, pos - 1) Else GetDirectory = "" End If End Function
![]()
Private Sub CommandButton5_Click() Dim Msg As String Msg = "Please select a location for the backup." Range("PDESC") = GetDirectory End Sub
one slight issue I have is that this code is only letting me select a folder, where as I need to select any type of file within that folder.
Does anyone know what I need to add / change / remove from the code?
That Function is browing for folders, why would you need to find a specific file. You can't upload to a file
What I want to do is allow users to select a file by clicking on a button then the file browser will popup. When they select a file it will return the file path to the cell "PDESC". Later on this file path will be used to attach the file to an email in the email script.
Currently as you said the code I have allows you to select a folder but not a file within a folder and so it only returns the directory path, I need to return the full file path.
Also to cofirm, in my email script if I use the cell "PDESC" as the file string for the attachment, will it work and attach the file? The file could be in any format.
Something like this
![]()
Option Explicit Dim fn Sub GetFile() fn = Application.GetOpenFilename 'can add parameters. See help for details. If fn = False Then MsgBox "Nothing Chosen" Else MsgBox "You chose " & fn 'Range("PDESC").Value=fn 'now that you have the name, you can open it or do something else End If End Sub
Hi Roy,
That works perfectly as I intended and is much more simple than the other solution I had.
All I did was remove the msgbox at the end and set the cell I needed to = fn
Why might you want to add parameters to the getopenfilename?
Also will I now be able to use that cell with file path in to attach a file to an email?
Thanks again roy!![]()
The parameteers would determine which type of files to show
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks