Question : ipod music / itunes

hi,
Recently i have synched by ipad touch with my friends itunes store available in his laptop, now I have in my ipod all songs and movies from his itunes store.
Please advise how can i transfer all those items into my itune store in my PC

also,  my pc already have stored lots of itunes music and movies which I want to merge with the same store I updated from my friend laptop

please advise how can I do this task

Answer : ipod music / itunes

It isn't fully clear how presented but try the following which replaces serverx with servery for all hyperlinks on teh activesheet.

Obviously replace bothe strings in teh sub for the actual values required

Chris
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
Sub redirectLink()
Dim rng As Range

    For Each rng In ActiveSheet.UsedRange.Cells
        If rng.Hyperlinks.Count = 1 Then
            With rng.Hyperlinks(1)
                .Address = Replace(.Address, "ServerX", "ServerY", 1, , vbTextCompare)
                .TextToDisplay = Replace(.TextToDisplay, "ServerX", "ServerY", 1, , vbTextCompare)
            End With
        End If
    Next
End Sub
Random Solutions  
 
programming4us programming4us