Click here to Skip to main content
15,893,814 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Features with LINQ and DLINQ please help ? Pin
ozzyrocsdbn17-Sep-07 22:29
ozzyrocsdbn17-Sep-07 22:29 
GeneralRe: Features with LINQ and DLINQ please help ? Pin
Dave Kreskowiak18-Sep-07 1:34
mveDave Kreskowiak18-Sep-07 1:34 
QuestionDeploying program question Pin
Cory Kimble17-Sep-07 7:03
Cory Kimble17-Sep-07 7:03 
AnswerRe: Deploying program question Pin
Dave Kreskowiak17-Sep-07 7:35
mveDave Kreskowiak17-Sep-07 7:35 
QuestionHow to Zip a folder Pin
Rupesh Kumar Swami17-Sep-07 5:31
Rupesh Kumar Swami17-Sep-07 5:31 
AnswerRe: How to Zip a folder Pin
Kschuler17-Sep-07 7:46
Kschuler17-Sep-07 7:46 
AnswerRe: How to Zip a folder Pin
Dave Kreskowiak17-Sep-07 7:48
mveDave Kreskowiak17-Sep-07 7:48 
AnswerRe: How to Zip a folder [modified] Pin
helelark12317-Sep-07 19:51
helelark12317-Sep-07 19:51 
First you have to install wzcline (winzip add-on).

Const pathWinZip = "C:\...\Wzzip.exe"
Shell(pathWinZip & " C:\1\1.zip " & "C:\1\*.*", vbHide)

OR

'This is better because until the zip is not totally completed the program 'will not continue to the next statement.
'The only problem is that a prompt command window popup for a few second and 'close itself. I don't know how to hide it.
Const pathWinZip = "C:\...\Wzzip.exe"
Dim WSHShell As Object = CreateObject("Wscript.Shell")
WSHShell.exec(pathWinZip & " C:\1\1.zip " & "C:\1\*.*")
'waiting for zip end task...
WSHShell = Nothing


explanation: all the files that are located in C:\1\ will be zipped into C:\1\1.zip

Hope it helps


-- modified at 2:15 Tuesday 18th September, 2007

Shay Noy

GeneralRe: How to Zip a folder Pin
Dave Kreskowiak19-Sep-07 2:01
mveDave Kreskowiak19-Sep-07 2:01 
GeneralRe: How to Zip a folder Pin
helelark12324-Sep-07 4:48
helelark12324-Sep-07 4:48 
QuestionSpeed up a VB.net project Pin
dcode2517-Sep-07 5:14
dcode2517-Sep-07 5:14 
AnswerRe: Speed up a VB.net project Pin
DigiOz Multimedia17-Sep-07 5:39
DigiOz Multimedia17-Sep-07 5:39 
AnswerRe: Speed up a VB.net project Pin
JamesS[C1]18-Sep-07 1:35
JamesS[C1]18-Sep-07 1:35 
AnswerRe: share windows folder Pin
Dave Kreskowiak17-Sep-07 7:50
mveDave Kreskowiak17-Sep-07 7:50 
GeneralRe: share windows folder Pin
helelark12317-Sep-07 19:30
helelark12317-Sep-07 19:30 
QuestionMigration issue in VS 2005 Pin
vikram reddy pullimamidi17-Sep-07 0:14
vikram reddy pullimamidi17-Sep-07 0:14 
AnswerRe: Migration issue in VS 2005 Pin
Dave Kreskowiak17-Sep-07 7:52
mveDave Kreskowiak17-Sep-07 7:52 
QuestionAnchor problem in VS2003 Pin
samerh16-Sep-07 23:39
samerh16-Sep-07 23:39 
AnswerRe: Anchor problem in VS2003 Pin
Dave Kreskowiak17-Sep-07 7:57
mveDave Kreskowiak17-Sep-07 7:57 
QuestionMail Function in vb.net Pin
manuo516-Sep-07 22:52
manuo516-Sep-07 22:52 
AnswerRe: Mail Function in vb.net Pin
Tom Deketelaere16-Sep-07 23:39
professionalTom Deketelaere16-Sep-07 23:39 
GeneralRe: Mail Function in vb.net Pin
manuo516-Sep-07 23:51
manuo516-Sep-07 23:51 
GeneralRe: Mail Function in vb.net Pin
samerh17-Sep-07 0:00
samerh17-Sep-07 0:00 
GeneralRe: Mail Function in vb.net Pin
Tom Deketelaere17-Sep-07 0:03
professionalTom Deketelaere17-Sep-07 0:03 
GeneralRe: Mail Function in vb.net Pin
manuo517-Sep-07 0:47
manuo517-Sep-07 0:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.