VS 2008 : Copy Files Between 2 Computers Over LAN?

Mar 28, 2012

It is possible to copy on file (.txt) from a computer to another over LAN without using file sharing? Something like client-server app?

View 5 Replies


ADVERTISEMENT

How To Copy A Folder To Computers On A Subnet

Jun 8, 2011

I have a folder on my server(windows 2003) that I would like to copy to all computers running Windows XP on a particular subnet.

View 1 Replies

Copy All Files On Disk1 To Disk 2 / Copy Files That Are In Use By Another Process?

Mar 18, 2009

I have a backup class it copys every thing but the unmovable files witch in return when i test the dive that i just backed up all files to will not boot up missing win system32 config files??how would i add permission to my code??? or how do i over ride cant copy file because a nother process is useing it?

View 3 Replies

VS 2008 - Copy Files From One Place To Another?

Mar 15, 2010

How can i copy or cut a file from one place to another?

View 3 Replies

VS 2008 Copy Files From One Location To Another?

Oct 4, 2011

i am working on an application that would copy files from one location to another that is thru network, i already tried using File.IO and Webservice but still copying huge/large amount of files is veryslow. also, my boss asked me to save base64 strings to database and connect to the database and regenerate the file, but when i tried saving a total of 100Mb Files, when im querying it in the database it still takes atleast 10-15min just to query it..

View 3 Replies

VS 2008 Copy Files From Resources?

Mar 14, 2010

I have a file (only 280kb) added to My.Resources I want to copy this from My.Resources to, lets say, Application.StartupPath When i try:

System.IO.File.Copy(My.Resources.File, Application.StartupPath & "file.ext")but then i get this error:Value of type '1-dimensional array of Byte' cannot be converted to 'String'How can i do this?

View 3 Replies

VS 2008 Copy All The Subfolder & Files From One Location To Another

Feb 20, 2011

I have got the following code to copy all the subfolder & files from one location to another.

[Code]...

to access the code. However i want it to run asynchronously and the progress of the copy to be displayed on a progress bar however i have no clue how to do this.

View 9 Replies

Deploy Project To Other Computers And Transfer All Files That Need?

Oct 17, 2009

1.How can i deploy my project to other computers and transfer all the files that i need? I know i do publish, but do i need to change any of my files setings, or do anyting inparticular get the files to the automatically deploy.for example how MS Office suppliers all file you need to do templates and stuff.

2.How can i tell the other persons to create a folder if they havent got one? my locations to work from is here, but no one will have the rimless data sheets folder and the shapes folder.C:Program FilesRimless Data SheetsShapes.

View 4 Replies

Communications :: WinSocket - Transfer Recorded WAV Files Between Computers

Mar 27, 2012

I need to transfer Recorded WAV Files betwenn computers. Now I want to transfer C:/Rec/Record.wav from Client to Server, then back, without the client that sent it take it. I know how to do that, the only problem is sending it. How do I do file transfer in winsock vb 10-11?

View 1 Replies

Send And Receive Text Files Amgost Two Computers?

Apr 21, 2012

What code can I use to send a simple text file to someone else's computer and choosing a save location and vice versa from theirs and loading it into a rich text box in their application that they have open, and vice versa? Their application is the same as mine (sort of like how an instant messenger works-except it does not save, send, and load text files like I am aiming for)

View 3 Replies

Write App That Transfer Files And Folders To Others Computers In Network

Dec 20, 2010

I need to write an app that transfer files and folders to others computers in my network vb.net.

View 3 Replies

Sending Files/Data Directly To/From Multiple Computers Via Internet

Mar 3, 2009

I would like to develop a program (in VB2008) that can send files directly from one computer to another through the internet.

I figure there would be one program on the sending end and a separate on the receiving end. A server and client perhaps?

Anyway, I need to know how to send a file on the host machine in a simple method that is least likely to be blocked by anti-viruses and such. The fewer issues that result in a failed transfer, the better.

Also, note that my goal is to molulize this code (later) so it can be reused for multiple applications such as file sharing, gaming, etc.

View 1 Replies

VS 2010 - Keeping Files / Folders Synchronized Across Multiple Client Computers

Aug 10, 2011

(Currently using VB.NET 2010 Express) I'm trying to make a program, the main of which is file transfer. I'm trying to create a program that will keep files and folders synchronized across multiple client computers. I'm using a File system watcher to trigger events, and Using a simple System.Net.Sockets UDP client transfer (found via google) to transfer commands between it and itself on other computers.

Here's that code (this just sends from one textbox to another over the internet)
Imports System.Net.Sockets
Imports System.Net
Imports System.Text
Dim udpClient As New UdpClient(1024)
Dim RemoteIpEndPoint As New IPEndPoint(IPAddress.Any, 0)
[Code] .....

By this method, I can rename, move, or delete files. I want to implement file transfer, so that whenever a new file is created, or updated, my program will automatically transfer the file to the other computers and update them there.

View 3 Replies

.net - Why Setupper Created By Publish Feature Does Not Copy Files To C:/PROGRAM FILES

Jun 10, 2009

I have VB project and I tried to use PUBLISH feature.It seems to create nicely some kind of setup program, but the setup program does not ask where to copy files (it does not seem to copy filesto target machine "PROGRAM FILES".)Is this setup program somehow different from usual installers?

NOTE: I want that app files are installed to Hard disk( from USB stick source)Is the signing recommended or necessary? My App is pretty simple, its just using access DB + printer api, should I still sign?

View 2 Replies

Copy Files While The Source Files Are Variable?

Jan 26, 2011

how to copy files while the source files are variable?...I would say may source file size is 1mb and it continue increasing up to certain value let say 15mb.. i want to copy and append each bytes to complete the 15mb. I mean, copying while the source files are completing its size, that should it be. im using vb.net

View 5 Replies

Copy Files With Certain Files Extensions?

Mar 22, 2010

Is there a way in VB to copy certain file types comparable to the commnad line copy command

View 4 Replies

Copies Files From Folder(A) Into Folder (B) First It Checks If The Files Exists If Yes It Will Copy Them

Nov 3, 2011

I wrote an application that copies files from Folder(A) into Folder (B) First it checks if the files exists if yes it will copy them and it will over write the them in fodler (B) and is working great , but if I have a file in Folder(B)that is located in a subfolder the file inFolder (A) will not be copied to the new location.

belwo is the code to copy the files if they exist :[code..]

View 2 Replies

List All Computers On The Network With 2008?

Apr 11, 2010

I wonder how do I list all computers on the network with vb 2008?I know to do in vb6 I have no more sense in vb 2008.

View 2 Replies

Macbook-computers Run Programs From A Vb 2008?

Jun 6, 2009

Can Macbook-computers run programs from a vb 2008 .net, Windows Vista computer?

View 6 Replies

VB 2008 Express Published Exe Will Not Run On Other Computers

Mar 11, 2010

Application runs fine on the computer that I used to create it.The application has 3 functions:

Button1...locate and preview an image file.
Button2...creates an email with html link...creates an html page file...ftp's the image and html files to server...sends email.
Button3...ftps image file only.

Publish and install on another computer and I have problems.

Button 1...Will load and preview file correctly.
Button 3...ftp image file only.
Button 2...I get an error (my own 'failed' message)

I have the same net framework 3.5 sp1 on all computers.What am I missing?I am thinking now it is code, but why does it will work on one and not the other.Do I need to install VB 2008 express on every computer that will be running this app just to insure that the computers are the same?

View 4 Replies

VS 2008 Mute The Computers Volume

Feb 7, 2010

How can I make it so a command button or whatever you'd like to use can mute the computers volume, then unmute it?

View 2 Replies

Cannot Copy Certain Files

May 6, 2009

During the backup we sometimes get an error. IOExxception was unhandled[cod]e...

View 1 Replies

Copy All Txt Files?

Dec 15, 2011

Dim FilestoCopy As String
Dim NewCopies As String
FilestoCopy = "C:UsersDocuments*.txt"
NewCopies = "D:NewDocuments"

[code]....

I was wondering how to switch this to copy all .txt file from FilestoCopy to NewCopies

View 2 Replies

VS 2008 - Sending URL Saved In Textbox Between Computers

Nov 19, 2009

I am trying to create a program that will send a URL saved in a textbox between the program which will be on different computers. So one computer will be running the program and the URL they have will be sent to the program on the other program.

View 2 Replies

VS 2008 Get In A Listbox All Computers In A Workgroup, NOT In A Domain?

Mar 4, 2010

how to get in a listbox all computers in a workgroup, NOT in a domain?

View 3 Replies

VS 2008 Logged On User Name Error In Some Computers

Jun 9, 2010

I have this code that gives me the user logged on name of a remote computer, but if i run the program in certaing computers, it returns with the error "Not Available Due Restrictions" which is set if the scope cant connect...

why it connects fine in some computers and other not..is there something i have to add to the code for it to run fine in any computer

this is the code

vb.net
Dim connection As New ConnectionOptions
connection.Username = ("ADMIN")
connection.Password = ("something")

[Code]....

View 3 Replies

VS 2008 With Direct Show On Vista Computers

Apr 8, 2010

on good computers direct show works fine on vista computers that are a few years old; after playing a few (4 hours or so) videos my program crashes on this line:

[Code]....

when i say crashes it just stops responding ... i hit ctl+break and it has a green arrow on that line that means it's busy executing the constructor of the filter graph it seems to run fine on descent brand new vista machines, the memory usage is minimal on all occurrences. seems fairly constant on older machines.

View 2 Replies

VS 2008 - Design A Form It Isn't Displayed Properly On Certain Computers

Dec 28, 2009

How come when I design a form it isn't displayed properly on certain computers in the fact that buttons near the bottom go of the bottom of the window. I beleive this only happens with Windows XP however it might be due to screen resolution, I haven't troubleshooted it much.

View 7 Replies

Copy Files Using Wildcards

Jul 24, 2010

i want to copy all the files in a directory with an extension e.g .exe or maybe all them files *.*I searched on google and found this on MSDN But it doesn't work when i type *. or *.* or *.exe into the textbox and there is files in that folder.[code]

View 7 Replies

Can Not Copy Files From Resources

Oct 28, 2010

Can you not copy files from your resources? [code] I don't get any errors but I do get an exception saying it couldn't find the file. I want to do this other than supplying the directory that it is located on on my computer because I'm not sure it it will work on other peoples computers if i have the path of the file set as "C:UsersMike.Mike-PCDocumentsVisual Studio 2010ProjectsJava IDEJava IDEResourcesCompiler.bat".

View 19 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved