-
Star Wars OST - Listing?
I need a listing of the Star Wars tracks from Episodes 4, 5 and 6.
The thing is, I've just ripped a bunch of SW tracks from a Game CD (Star Wars: X-wing vs Tie Fighter), but I don't know the titles given to them. If I get a listing for it, that would help a lot.
Thanks.
-
No Star Wars fans here? :confused:
-
I think you would use GetActiveWindow and then compare the result to your form's hWnd property
eg.
Code:
Private Declare Function GetActiveWindow Lib "user32" () As Long
Private Sub Timer1_Timer()
Dim h As Long
h = GetActiveWindow
If h = Form1.hWnd Then
Text1.Text = "Active"
Else
Text1.Text = "Not Active"
End If
End Sub
-
I wish you could swim, like dolphins can swim.