File Transfer over ip in vb [closed] - vb.net

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
in Visual basic there is a function called file copy
filecopy(source,destination)
is it possible to copy from my computer to another over ip?
ex:
filecopy("C:\User\name\Desktop\test.txt",//192.168.x.x)
if yes what is the correct syntax?

You need to specify the UNC path correctly, for example:
filecopy("C:\User\name\Desktop\test.txt","\\192.168.x.x\c$\User\name\Desktop")
Also it's better to use File.IO.Copy instead of the old VB6 syntax.

Related

Create custom server [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
love the data and how sorted and process, and how can controlled.
I wanna to know if can build own server, and how can upload the data in it.
That depends on the type of data that you want to store.
Assuming you simply want to upload and store files on a server, then you can consider using minio. You can run it locally by following the instructions described here.

Reads a Txt file on a webserver on Raspbian (Linux) [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I've a txt file working like a Database, and want to store that information on a webserver (a few people wants to access this data), someone have suggest about it ? Btw I'm using linux.
What's the problem? You can install any web server like nginx.

How to run a vb program from first from [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
When I run my Visual Basic program it opens the fourth form, not the first. How can I Make it run from the first form?
You need to set the project's 'Startup form'.
See this article for explicit details:
https://msdn.microsoft.com/en-us/library/aa984318%28v=vs.71%29.aspx?f=255&MSPPError=-2147217396

how to direct the out put of a SQL query to pane instead of a text file [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
What is the setting for out putting the query result to pane, instead of text file. I set output to text file a long time ago. But I forgot how to turn it back. Please advise.
Thanksa
I'm not sure any further comment is needed.
If you are not using SSMS then push your particular data management tool's equivalent button.

2003 MS Access Visual Basic Workflow [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
Does anyone know how to program a database to function as a workflow? I would like it to identify the user as they open the database and then open up their 'queue' of work. Any ideas?
Read Remou's answer to this Stack Overflow question: How do I make an Access Form automatically open to a user's data?
It may help to describe your concept of a user's queue of work.