Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using code on the net in your own app, then Copyright your own app

Status
Not open for further replies.

rmoyes02

IS-IT--Management
Dec 4, 2002
53
US
Just wondering how far you can go by using code found on the net...

For example, I found the following code on the net to map a drive...

Sub MapDrive(strDrive,strShare)
On Error Resume Next
WSHNetwork.MapNetworkDrive strDrive, strShare

If Err.Number Then
WSHNetwork.RemoveNetworkDrive strDrive
WSHNetwork.MapNetworkDrive strDrive, strShare
End If
End Sub


Now, I know that I can't copy & paste this code, but if I were to remember this code, and use it in my app (code being slightly different), is that copyright infringment?

If so, then it seems to me that everything that i remember from text books will be infringing on copyright...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top