PC Review


Reply
Thread Tools Rate Thread

How add password to ZIP folder?

 
 
=?Utf-8?B?TGVlTA==?=
Guest
Posts: n/a
 
      5th Nov 2007
Hi, i have been using code below to zip files. Can someone help add a line
to add a password to the zip folder? I am zipping text files, so i cannot
password the files . . .
Thanks in advance!

Sub Zip_File()
Dim strDate As String, DefPath As String
Dim oApp As Object
Dim FName, FileNameZip

'********************************************************************
'These values are user inputs which can be loaded in a number of ways
DefPath = "H:\"
FName = "H:\Temp\PSR31M.TXT"
strDate = Format(Now, " dd-mmm-yy h-mm-ss")
FileNameZip = DefPath & "MyFilesZip " & strDate & ".zip"


If Right(DefPath, 1) <> "\" Then
DefPath = DefPath & "\"
End If

'Create empty Zip File
NewZip (FileNameZip)

Set oApp = CreateObject("Shell.Application")

oApp.Namespace(FileNameZip).CopyHere FName

MsgBox "You find the zipfile here: " & FileNameZip
Set oApp = Nothing
End Sub
Sub NewZip(sPath)
'Create empty Zip File
Dim oFSO, arrHex, sBin, i, Zip
Set oFSO = CreateObject("Scripting.FileSystemObject")
arrHex = Array(80, 75, 5, 6, 0, 0, 0, _
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)
For i = 0 To UBound(arrHex)
sBin = sBin & Chr(arrHex(i))
Next
With oFSO.CreateTextFile(sPath, True)
.Write sBin
.Close
End With
End Sub

Sub newone()
Dim strDate As String, DefPath As String
Dim oApp As Object
Dim FName, FileNameZip

'********************************************************************
'These values are user inputs which can be loaded in a number of ways
DefPath = "H:\"
FName = "H:\Temp\PSR31M.TXT"
strDate = Format(Now, " dd-mmm-yy h-mm-ss")
FileNameZip = DefPath & "MyFilesZip " & strDate & ".zip"


If Right(DefPath, 1) <> "\" Then
DefPath = DefPath & "\"
End If

'Create empty Zip File
NewZip (FileNameZip)

Set oApp = CreateObject("Shell.Application")

oApp.Namespace(FileNameZip).CopyHere FName

MsgBox "You find the zipfile here: " & FileNameZip
Set oApp = Nothing
End Sub

 
Reply With Quote
 
 
 
 
=?Utf-8?B?SkxHV2hpeg==?=
Guest
Posts: n/a
 
      5th Nov 2007
This site explains how to do it manually.

http://support.microsoft.com/kb/306531

"LeeL" wrote:

> Hi, i have been using code below to zip files. Can someone help add a line
> to add a password to the zip folder? I am zipping text files, so i cannot
> password the files . . .
> Thanks in advance!
>
> Sub Zip_File()
> Dim strDate As String, DefPath As String
> Dim oApp As Object
> Dim FName, FileNameZip
>
> '********************************************************************
> 'These values are user inputs which can be loaded in a number of ways
> DefPath = "H:\"
> FName = "H:\Temp\PSR31M.TXT"
> strDate = Format(Now, " dd-mmm-yy h-mm-ss")
> FileNameZip = DefPath & "MyFilesZip " & strDate & ".zip"
>
>
> If Right(DefPath, 1) <> "\" Then
> DefPath = DefPath & "\"
> End If
>
> 'Create empty Zip File
> NewZip (FileNameZip)
>
> Set oApp = CreateObject("Shell.Application")
>
> oApp.Namespace(FileNameZip).CopyHere FName
>
> MsgBox "You find the zipfile here: " & FileNameZip
> Set oApp = Nothing
> End Sub
> Sub NewZip(sPath)
> 'Create empty Zip File
> Dim oFSO, arrHex, sBin, i, Zip
> Set oFSO = CreateObject("Scripting.FileSystemObject")
> arrHex = Array(80, 75, 5, 6, 0, 0, 0, _
> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)
> For i = 0 To UBound(arrHex)
> sBin = sBin & Chr(arrHex(i))
> Next
> With oFSO.CreateTextFile(sPath, True)
> .Write sBin
> .Close
> End With
> End Sub
>
> Sub newone()
> Dim strDate As String, DefPath As String
> Dim oApp As Object
> Dim FName, FileNameZip
>
> '********************************************************************
> 'These values are user inputs which can be loaded in a number of ways
> DefPath = "H:\"
> FName = "H:\Temp\PSR31M.TXT"
> strDate = Format(Now, " dd-mmm-yy h-mm-ss")
> FileNameZip = DefPath & "MyFilesZip " & strDate & ".zip"
>
>
> If Right(DefPath, 1) <> "\" Then
> DefPath = DefPath & "\"
> End If
>
> 'Create empty Zip File
> NewZip (FileNameZip)
>
> Set oApp = CreateObject("Shell.Application")
>
> oApp.Namespace(FileNameZip).CopyHere FName
>
> MsgBox "You find the zipfile here: " & FileNameZip
> Set oApp = Nothing
> End Sub
>

 
Reply With Quote
 
=?Utf-8?B?TGVlTA==?=
Guest
Posts: n/a
 
      5th Nov 2007
Thanks, I familiar with the manual way to add, can anyone help with how to
get it done inside VBA code?

--
Thanks & Best Regards


"JLGWhiz" wrote:

> This site explains how to do it manually.
>
> http://support.microsoft.com/kb/306531
>
> "LeeL" wrote:
>
> > Hi, i have been using code below to zip files. Can someone help add a line
> > to add a password to the zip folder? I am zipping text files, so i cannot
> > password the files . . .
> > Thanks in advance!
> >
> > Sub Zip_File()
> > Dim strDate As String, DefPath As String
> > Dim oApp As Object
> > Dim FName, FileNameZip
> >
> > '********************************************************************
> > 'These values are user inputs which can be loaded in a number of ways
> > DefPath = "H:\"
> > FName = "H:\Temp\PSR31M.TXT"
> > strDate = Format(Now, " dd-mmm-yy h-mm-ss")
> > FileNameZip = DefPath & "MyFilesZip " & strDate & ".zip"
> >
> >
> > If Right(DefPath, 1) <> "\" Then
> > DefPath = DefPath & "\"
> > End If
> >
> > 'Create empty Zip File
> > NewZip (FileNameZip)
> >
> > Set oApp = CreateObject("Shell.Application")
> >
> > oApp.Namespace(FileNameZip).CopyHere FName
> >
> > MsgBox "You find the zipfile here: " & FileNameZip
> > Set oApp = Nothing
> > End Sub
> > Sub NewZip(sPath)
> > 'Create empty Zip File
> > Dim oFSO, arrHex, sBin, i, Zip
> > Set oFSO = CreateObject("Scripting.FileSystemObject")
> > arrHex = Array(80, 75, 5, 6, 0, 0, 0, _
> > 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)
> > For i = 0 To UBound(arrHex)
> > sBin = sBin & Chr(arrHex(i))
> > Next
> > With oFSO.CreateTextFile(sPath, True)
> > .Write sBin
> > .Close
> > End With
> > End Sub
> >
> > Sub newone()
> > Dim strDate As String, DefPath As String
> > Dim oApp As Object
> > Dim FName, FileNameZip
> >
> > '********************************************************************
> > 'These values are user inputs which can be loaded in a number of ways
> > DefPath = "H:\"
> > FName = "H:\Temp\PSR31M.TXT"
> > strDate = Format(Now, " dd-mmm-yy h-mm-ss")
> > FileNameZip = DefPath & "MyFilesZip " & strDate & ".zip"
> >
> >
> > If Right(DefPath, 1) <> "\" Then
> > DefPath = DefPath & "\"
> > End If
> >
> > 'Create empty Zip File
> > NewZip (FileNameZip)
> >
> > Set oApp = CreateObject("Shell.Application")
> >
> > oApp.Namespace(FileNameZip).CopyHere FName
> >
> > MsgBox "You find the zipfile here: " & FileNameZip
> > Set oApp = Nothing
> > End Sub
> >

 
Reply With Quote
 
=?Utf-8?B?SkxHV2hpeg==?=
Guest
Posts: n/a
 
      5th Nov 2007
This site might be more helpful.

http://www.developerfusion.co.uk/show/2043/

"LeeL" wrote:

> Thanks, I familiar with the manual way to add, can anyone help with how to
> get it done inside VBA code?
>
> --
> Thanks & Best Regards
>
>
> "JLGWhiz" wrote:
>
> > This site explains how to do it manually.
> >
> > http://support.microsoft.com/kb/306531
> >
> > "LeeL" wrote:
> >
> > > Hi, i have been using code below to zip files. Can someone help add a line
> > > to add a password to the zip folder? I am zipping text files, so i cannot
> > > password the files . . .
> > > Thanks in advance!
> > >
> > > Sub Zip_File()
> > > Dim strDate As String, DefPath As String
> > > Dim oApp As Object
> > > Dim FName, FileNameZip
> > >
> > > '********************************************************************
> > > 'These values are user inputs which can be loaded in a number of ways
> > > DefPath = "H:\"
> > > FName = "H:\Temp\PSR31M.TXT"
> > > strDate = Format(Now, " dd-mmm-yy h-mm-ss")
> > > FileNameZip = DefPath & "MyFilesZip " & strDate & ".zip"
> > >
> > >
> > > If Right(DefPath, 1) <> "\" Then
> > > DefPath = DefPath & "\"
> > > End If
> > >
> > > 'Create empty Zip File
> > > NewZip (FileNameZip)
> > >
> > > Set oApp = CreateObject("Shell.Application")
> > >
> > > oApp.Namespace(FileNameZip).CopyHere FName
> > >
> > > MsgBox "You find the zipfile here: " & FileNameZip
> > > Set oApp = Nothing
> > > End Sub
> > > Sub NewZip(sPath)
> > > 'Create empty Zip File
> > > Dim oFSO, arrHex, sBin, i, Zip
> > > Set oFSO = CreateObject("Scripting.FileSystemObject")
> > > arrHex = Array(80, 75, 5, 6, 0, 0, 0, _
> > > 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)
> > > For i = 0 To UBound(arrHex)
> > > sBin = sBin & Chr(arrHex(i))
> > > Next
> > > With oFSO.CreateTextFile(sPath, True)
> > > .Write sBin
> > > .Close
> > > End With
> > > End Sub
> > >
> > > Sub newone()
> > > Dim strDate As String, DefPath As String
> > > Dim oApp As Object
> > > Dim FName, FileNameZip
> > >
> > > '********************************************************************
> > > 'These values are user inputs which can be loaded in a number of ways
> > > DefPath = "H:\"
> > > FName = "H:\Temp\PSR31M.TXT"
> > > strDate = Format(Now, " dd-mmm-yy h-mm-ss")
> > > FileNameZip = DefPath & "MyFilesZip " & strDate & ".zip"
> > >
> > >
> > > If Right(DefPath, 1) <> "\" Then
> > > DefPath = DefPath & "\"
> > > End If
> > >
> > > 'Create empty Zip File
> > > NewZip (FileNameZip)
> > >
> > > Set oApp = CreateObject("Shell.Application")
> > >
> > > oApp.Namespace(FileNameZip).CopyHere FName
> > >
> > > MsgBox "You find the zipfile here: " & FileNameZip
> > > Set oApp = Nothing
> > > End Sub
> > >

 
Reply With Quote
 
=?Utf-8?B?TGVlTA==?=
Guest
Posts: n/a
 
      5th Nov 2007
Thanks, that one gets close, but it is calling a winzip application from c
drive. I am trying to run on my company network and cannot call wizip...,
below code in my first post does work, it seems like there should be a way
add a line for pasword ... ?
--
Thanks & Best Regards


"JLGWhiz" wrote:

> This site might be more helpful.
>
> http://www.developerfusion.co.uk/show/2043/
>
> "LeeL" wrote:
>
> > Thanks, I familiar with the manual way to add, can anyone help with how to
> > get it done inside VBA code?
> >
> > --
> > Thanks & Best Regards
> >
> >
> > "JLGWhiz" wrote:
> >
> > > This site explains how to do it manually.
> > >
> > > http://support.microsoft.com/kb/306531
> > >
> > > "LeeL" wrote:
> > >
> > > > Hi, i have been using code below to zip files. Can someone help add a line
> > > > to add a password to the zip folder? I am zipping text files, so i cannot
> > > > password the files . . .
> > > > Thanks in advance!
> > > >
> > > > Sub Zip_File()
> > > > Dim strDate As String, DefPath As String
> > > > Dim oApp As Object
> > > > Dim FName, FileNameZip
> > > >
> > > > '********************************************************************
> > > > 'These values are user inputs which can be loaded in a number of ways
> > > > DefPath = "H:\"
> > > > FName = "H:\Temp\PSR31M.TXT"
> > > > strDate = Format(Now, " dd-mmm-yy h-mm-ss")
> > > > FileNameZip = DefPath & "MyFilesZip " & strDate & ".zip"
> > > >
> > > >
> > > > If Right(DefPath, 1) <> "\" Then
> > > > DefPath = DefPath & "\"
> > > > End If
> > > >
> > > > 'Create empty Zip File
> > > > NewZip (FileNameZip)
> > > >
> > > > Set oApp = CreateObject("Shell.Application")
> > > >
> > > > oApp.Namespace(FileNameZip).CopyHere FName
> > > >
> > > > MsgBox "You find the zipfile here: " & FileNameZip
> > > > Set oApp = Nothing
> > > > End Sub
> > > > Sub NewZip(sPath)
> > > > 'Create empty Zip File
> > > > Dim oFSO, arrHex, sBin, i, Zip
> > > > Set oFSO = CreateObject("Scripting.FileSystemObject")
> > > > arrHex = Array(80, 75, 5, 6, 0, 0, 0, _
> > > > 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)
> > > > For i = 0 To UBound(arrHex)
> > > > sBin = sBin & Chr(arrHex(i))
> > > > Next
> > > > With oFSO.CreateTextFile(sPath, True)
> > > > .Write sBin
> > > > .Close
> > > > End With
> > > > End Sub
> > > >
> > > > Sub newone()
> > > > Dim strDate As String, DefPath As String
> > > > Dim oApp As Object
> > > > Dim FName, FileNameZip
> > > >
> > > > '********************************************************************
> > > > 'These values are user inputs which can be loaded in a number of ways
> > > > DefPath = "H:\"
> > > > FName = "H:\Temp\PSR31M.TXT"
> > > > strDate = Format(Now, " dd-mmm-yy h-mm-ss")
> > > > FileNameZip = DefPath & "MyFilesZip " & strDate & ".zip"
> > > >
> > > >
> > > > If Right(DefPath, 1) <> "\" Then
> > > > DefPath = DefPath & "\"
> > > > End If
> > > >
> > > > 'Create empty Zip File
> > > > NewZip (FileNameZip)
> > > >
> > > > Set oApp = CreateObject("Shell.Application")
> > > >
> > > > oApp.Namespace(FileNameZip).CopyHere FName
> > > >
> > > > MsgBox "You find the zipfile here: " & FileNameZip
> > > > Set oApp = Nothing
> > > > End Sub
> > > >

 
Reply With Quote
 
Ron de Bruin
Guest
Posts: n/a
 
      5th Nov 2007
Hi Leel

I never test it but ii will not be easy
When I update the site to my new site format I will try a few things

Btw there is a new NewZip macro on my site
http://www.rondebruin.nl/windowsxpzip.htm




--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"LeeL" <(E-Mail Removed)> wrote in message news:402F86E8-0937-4BF2-842B-(E-Mail Removed)...
> Thanks, that one gets close, but it is calling a winzip application from c
> drive. I am trying to run on my company network and cannot call wizip...,
> below code in my first post does work, it seems like there should be a way
> add a line for pasword ... ?
> --
> Thanks & Best Regards
>
>
> "JLGWhiz" wrote:
>
>> This site might be more helpful.
>>
>> http://www.developerfusion.co.uk/show/2043/
>>
>> "LeeL" wrote:
>>
>> > Thanks, I familiar with the manual way to add, can anyone help with how to
>> > get it done inside VBA code?
>> >
>> > --
>> > Thanks & Best Regards
>> >
>> >
>> > "JLGWhiz" wrote:
>> >
>> > > This site explains how to do it manually.
>> > >
>> > > http://support.microsoft.com/kb/306531
>> > >
>> > > "LeeL" wrote:
>> > >
>> > > > Hi, i have been using code below to zip files. Can someone help add a line
>> > > > to add a password to the zip folder? I am zipping text files, so i cannot
>> > > > password the files . . .
>> > > > Thanks in advance!
>> > > >
>> > > > Sub Zip_File()
>> > > > Dim strDate As String, DefPath As String
>> > > > Dim oApp As Object
>> > > > Dim FName, FileNameZip
>> > > >
>> > > > '********************************************************************
>> > > > 'These values are user inputs which can be loaded in a number of ways
>> > > > DefPath = "H:\"
>> > > > FName = "H:\Temp\PSR31M.TXT"
>> > > > strDate = Format(Now, " dd-mmm-yy h-mm-ss")
>> > > > FileNameZip = DefPath & "MyFilesZip " & strDate & ".zip"
>> > > >
>> > > >
>> > > > If Right(DefPath, 1) <> "\" Then
>> > > > DefPath = DefPath & "\"
>> > > > End If
>> > > >
>> > > > 'Create empty Zip File
>> > > > NewZip (FileNameZip)
>> > > >
>> > > > Set oApp = CreateObject("Shell.Application")
>> > > >
>> > > > oApp.Namespace(FileNameZip).CopyHere FName
>> > > >
>> > > > MsgBox "You find the zipfile here: " & FileNameZip
>> > > > Set oApp = Nothing
>> > > > End Sub
>> > > > Sub NewZip(sPath)
>> > > > 'Create empty Zip File
>> > > > Dim oFSO, arrHex, sBin, i, Zip
>> > > > Set oFSO = CreateObject("Scripting.FileSystemObject")
>> > > > arrHex = Array(80, 75, 5, 6, 0, 0, 0, _
>> > > > 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)
>> > > > For i = 0 To UBound(arrHex)
>> > > > sBin = sBin & Chr(arrHex(i))
>> > > > Next
>> > > > With oFSO.CreateTextFile(sPath, True)
>> > > > .Write sBin
>> > > > .Close
>> > > > End With
>> > > > End Sub
>> > > >
>> > > > Sub newone()
>> > > > Dim strDate As String, DefPath As String
>> > > > Dim oApp As Object
>> > > > Dim FName, FileNameZip
>> > > >
>> > > > '********************************************************************
>> > > > 'These values are user inputs which can be loaded in a number of ways
>> > > > DefPath = "H:\"
>> > > > FName = "H:\Temp\PSR31M.TXT"
>> > > > strDate = Format(Now, " dd-mmm-yy h-mm-ss")
>> > > > FileNameZip = DefPath & "MyFilesZip " & strDate & ".zip"
>> > > >
>> > > >
>> > > > If Right(DefPath, 1) <> "\" Then
>> > > > DefPath = DefPath & "\"
>> > > > End If
>> > > >
>> > > > 'Create empty Zip File
>> > > > NewZip (FileNameZip)
>> > > >
>> > > > Set oApp = CreateObject("Shell.Application")
>> > > >
>> > > > oApp.Namespace(FileNameZip).CopyHere FName
>> > > >
>> > > > MsgBox "You find the zipfile here: " & FileNameZip
>> > > > Set oApp = Nothing
>> > > > End Sub
>> > > >

 
Reply With Quote
 
=?Utf-8?B?TGVlTA==?=
Guest
Posts: n/a
 
      6th Nov 2007
Thanks Ron ! I look out for updates to your website.


"Ron de Bruin" wrote:

> Hi Leel
>
> I never test it but ii will not be easy
> When I update the site to my new site format I will try a few things
>
> Btw there is a new NewZip macro on my site
> http://www.rondebruin.nl/windowsxpzip.htm
>
>
>
>
> --
>
> Regards Ron de Bruin
> http://www.rondebruin.nl/tips.htm
>
>
> "LeeL" <(E-Mail Removed)> wrote in message news:402F86E8-0937-4BF2-842B-(E-Mail Removed)...
> > Thanks, that one gets close, but it is calling a winzip application from c
> > drive. I am trying to run on my company network and cannot call wizip...,
> > below code in my first post does work, it seems like there should be a way
> > add a line for pasword ... ?
> > --
> > Thanks & Best Regards
> >
> >
> > "JLGWhiz" wrote:
> >
> >> This site might be more helpful.
> >>
> >> http://www.developerfusion.co.uk/show/2043/
> >>
> >> "LeeL" wrote:
> >>
> >> > Thanks, I familiar with the manual way to add, can anyone help with how to
> >> > get it done inside VBA code?
> >> >
> >> > --
> >> > Thanks & Best Regards
> >> >
> >> >
> >> > "JLGWhiz" wrote:
> >> >
> >> > > This site explains how to do it manually.
> >> > >
> >> > > http://support.microsoft.com/kb/306531
> >> > >
> >> > > "LeeL" wrote:
> >> > >
> >> > > > Hi, i have been using code below to zip files. Can someone help add a line
> >> > > > to add a password to the zip folder? I am zipping text files, so i cannot
> >> > > > password the files . . .
> >> > > > Thanks in advance!
> >> > > >
> >> > > > Sub Zip_File()
> >> > > > Dim strDate As String, DefPath As String
> >> > > > Dim oApp As Object
> >> > > > Dim FName, FileNameZip
> >> > > >
> >> > > > '********************************************************************
> >> > > > 'These values are user inputs which can be loaded in a number of ways
> >> > > > DefPath = "H:\"
> >> > > > FName = "H:\Temp\PSR31M.TXT"
> >> > > > strDate = Format(Now, " dd-mmm-yy h-mm-ss")
> >> > > > FileNameZip = DefPath & "MyFilesZip " & strDate & ".zip"
> >> > > >
> >> > > >
> >> > > > If Right(DefPath, 1) <> "\" Then
> >> > > > DefPath = DefPath & "\"
> >> > > > End If
> >> > > >
> >> > > > 'Create empty Zip File
> >> > > > NewZip (FileNameZip)
> >> > > >
> >> > > > Set oApp = CreateObject("Shell.Application")
> >> > > >
> >> > > > oApp.Namespace(FileNameZip).CopyHere FName
> >> > > >
> >> > > > MsgBox "You find the zipfile here: " & FileNameZip
> >> > > > Set oApp = Nothing
> >> > > > End Sub
> >> > > > Sub NewZip(sPath)
> >> > > > 'Create empty Zip File
> >> > > > Dim oFSO, arrHex, sBin, i, Zip
> >> > > > Set oFSO = CreateObject("Scripting.FileSystemObject")
> >> > > > arrHex = Array(80, 75, 5, 6, 0, 0, 0, _
> >> > > > 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)
> >> > > > For i = 0 To UBound(arrHex)
> >> > > > sBin = sBin & Chr(arrHex(i))
> >> > > > Next
> >> > > > With oFSO.CreateTextFile(sPath, True)
> >> > > > .Write sBin
> >> > > > .Close
> >> > > > End With
> >> > > > End Sub
> >> > > >
> >> > > > Sub newone()
> >> > > > Dim strDate As String, DefPath As String
> >> > > > Dim oApp As Object
> >> > > > Dim FName, FileNameZip
> >> > > >
> >> > > > '********************************************************************
> >> > > > 'These values are user inputs which can be loaded in a number of ways
> >> > > > DefPath = "H:\"
> >> > > > FName = "H:\Temp\PSR31M.TXT"
> >> > > > strDate = Format(Now, " dd-mmm-yy h-mm-ss")
> >> > > > FileNameZip = DefPath & "MyFilesZip " & strDate & ".zip"
> >> > > >
> >> > > >
> >> > > > If Right(DefPath, 1) <> "\" Then
> >> > > > DefPath = DefPath & "\"
> >> > > > End If
> >> > > >
> >> > > > 'Create empty Zip File
> >> > > > NewZip (FileNameZip)
> >> > > >
> >> > > > Set oApp = CreateObject("Shell.Application")
> >> > > >
> >> > > > oApp.Namespace(FileNameZip).CopyHere FName
> >> > > >
> >> > > > MsgBox "You find the zipfile here: " & FileNameZip
> >> > > > Set oApp = Nothing
> >> > > > End Sub
> >> > > >

>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Folder Password DJ Bing Windows XP General 3 16th Jun 2008 12:07 AM
Password Protected Folder - I do not remember the password and ... Georgew6 Windows XP General 0 28th Nov 2007 08:07 AM
RE: lost password to password-protected personal folder =?Utf-8?B?Sy4gT3JsYW5k?= Microsoft Outlook Discussion 1 19th Sep 2005 10:50 PM
I have a folder with a password and cannot remember the password?. =?Utf-8?B?QmVsbGVsYWR5?= Microsoft Access 1 24th Apr 2005 05:47 PM
Password for Folder Jomas Microsoft Word Document Management 2 12th Sep 2003 04:59 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:58 AM.