Click here to Skip to main content
15,918,267 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: SQL and VB, Some tips/direction please. [modified] Pin
Henry Minute4-Jan-09 2:34
Henry Minute4-Jan-09 2:34 
GeneralRe: SQL and VB, Some tips/direction please. Pin
Colin Angus Mackay4-Jan-09 4:46
Colin Angus Mackay4-Jan-09 4:46 
GeneralRe: SQL and VB, Some tips/direction please. Pin
Henry Minute4-Jan-09 4:58
Henry Minute4-Jan-09 4:58 
GeneralRe: SQL and VB, Some tips/direction please. Pin
Colin Angus Mackay4-Jan-09 5:51
Colin Angus Mackay4-Jan-09 5:51 
GeneralRe: SQL and VB, Some tips/direction please. Pin
Henry Minute4-Jan-09 6:09
Henry Minute4-Jan-09 6:09 
GeneralRe: SQL and VB, Some tips/direction please. Pin
Colin Angus Mackay4-Jan-09 6:15
Colin Angus Mackay4-Jan-09 6:15 
AnswerThanks to all above Pin
Dalek Dave4-Jan-09 7:49
professionalDalek Dave4-Jan-09 7:49 
Questionitunes , get cover art , visual basic 2008 Pin
ls780h3-Jan-09 2:57
ls780h3-Jan-09 2:57 
im really stuck , i want to get the cover art of current song playing in itunes and simply display the image. using the itunes lib dll.

i been able to get the current track name and info like that(text) ...so my references are correct ect but i can get the cover image.

i have found this vb 6 script that doesnt work just gives errors






iTunes play event
Private Sub iTunes_OnPlayerPlayEvent(ByVal iTrack As Variant)

    ‘Find the current track
    Set Track = iTunes.CurrentTrack

        Dim Art1 As iTunesLib.IITArtworkCollection
        Dim Art2 As iTunesLib.IITArtwork
        Set Art1 = Track.Artwork

        If Art1.Count > 0 Then

        Set Art2 = Art1.Item(1)
        Art2.SaveArtworkToFile ("C:\art\" & Track.Artist & " - " & Track.Album & ".jpg")
        Open "C:\art\config.txt" For Output As #5
        Print #5, Track.Artist & " - " & Track.Album
        Close #5

    End If

End Sub


has anyone got this working , all i need is a simple example to help me get on . Any help would be great .


thanks

luke
QuestionRe: itunes , get cover art , visual basic 2008 Pin
ekuhner15-Jan-09 6:32
ekuhner15-Jan-09 6:32 
Questionhow can I make code for barcode Pin
semo12-Jan-09 21:41
semo12-Jan-09 21:41 
AnswerRe: how can I make code for barcode [modified] Pin
Wendelius3-Jan-09 0:24
mentorWendelius3-Jan-09 0:24 
Questionhow to display files that are not in directory? Pin
zaimah2-Jan-09 17:10
zaimah2-Jan-09 17:10 
GeneralRe: how to display files that are not in directory? Pin
Luc Pattyn2-Jan-09 17:30
sitebuilderLuc Pattyn2-Jan-09 17:30 
GeneralRe: how to display files that are not in directory? Pin
zaimah2-Jan-09 19:23
zaimah2-Jan-09 19:23 
GeneralRe: how to display files that are not in directory? Pin
Luc Pattyn3-Jan-09 1:40
sitebuilderLuc Pattyn3-Jan-09 1:40 
GeneralRe: how to display files that are not in directory? Pin
zaimah3-Jan-09 20:43
zaimah3-Jan-09 20:43 
GeneralRe: how to display files that are not in directory? Pin
Luc Pattyn4-Jan-09 0:39
sitebuilderLuc Pattyn4-Jan-09 0:39 
GeneralRe: how to display files that are not in directory? Pin
zaimah4-Jan-09 2:39
zaimah4-Jan-09 2:39 
GeneralRe: how to display files that are not in directory? Pin
Luc Pattyn4-Jan-09 6:03
sitebuilderLuc Pattyn4-Jan-09 6:03 
QuestionRe: how to display files that are not in directory? Pin
zaimah8-Jan-09 20:31
zaimah8-Jan-09 20:31 
AnswerRe: how to display files that are not in directory? Pin
Luc Pattyn9-Jan-09 1:21
sitebuilderLuc Pattyn9-Jan-09 1:21 
GeneralRe: how to display files that are not in directory? Pin
zaimah11-Jan-09 14:35
zaimah11-Jan-09 14:35 
GeneralRe: how to display files that are not in directory? Pin
Luc Pattyn11-Jan-09 15:22
sitebuilderLuc Pattyn11-Jan-09 15:22 
GeneralRe: how to display files that are not in directory? Pin
zaimah11-Jan-09 16:14
zaimah11-Jan-09 16:14 
GeneralRe: how to display files that are not in directory? Pin
Luc Pattyn11-Jan-09 16:45
sitebuilderLuc Pattyn11-Jan-09 16:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.