Click here to Skip to main content
15,896,207 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How to add combo box in datagrid to Visual Basic 6
2-how to transfer file from computer to another computer by Internet from desktop to desktop automatically after five minute
Posted
Comments
Jibesh 21-Jan-13 16:26pm    
any effort on this?

1 solution

1) You can't add the combo to the grid itself, but you can try this[^] workaround.
2) To automatically send a file from one machine to another is a little more sticky.
- If you were going to send the file from one machine to another on the same network you would simply need to create a share on the receiving machine so that the application pushing the file on the sending machine has permissions to write to it. I personally would prefer it the other way around where the destination machine pulls the file from a share on the sender instead.
- If you are going to attempt to push the file from the sender over the internet to a server, then you'll need to provide some form of sending interface that will reside on the sender and then an interface on the server that can accept the file and write it to disk. I would suggest looking into web services for the receiving server and a windows service or an application running with a Windows Task Scheduler profile that can hit the web service.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900