English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I need a way that if the user click ok it copies say test.exe to a directory on there computer such as C:/Programs and Settings/Test/
Can anyone tell me the code or have a link?
Im using Visual Basic(.Net) for this project

2007-02-01 04:49:30 · 4 answers · asked by sbraidley 3 in Computers & Internet Programming & Design

4 answers

Not sure if VB.NET has it, but in VB-6 there was an object called the File System Object, available from the reference of Microsoft Scripting Runtime (available in the References window in the IDE). Check if VB.NET has it.

2007-02-01 05:24:34 · answer #1 · answered by Richard H 7 · 0 0

Are you asking approximately becoming an msi installer on your application? if so then while your carried out which includes your code and your answer document is open then % build and then submit. Assuming you're utilising VB exhibit or seen Studio

2016-11-02 01:33:13 · answer #2 · answered by ? 4 · 0 0

system.IO.File.Copy

There's loads of useful functions there, like move, create, exists, Append text, etc...

Cheers

2007-02-01 04:58:30 · answer #3 · answered by Julio M 3 · 1 0

imports System.IO

' to copy a file:
File.Copy(src, dest)

2007-02-01 04:57:51 · answer #4 · answered by Pfo 7 · 1 0

fedest.com, questions and answers