![]() |
![]() |
|
|
#1 |
|
MrExcel MVP
Join Date: Sep 2004
Location: New Zealand
Posts: 4,721
|
__________________
~ >*()))><( I'd rather have a full bottle in front of me than a full frontal lobotomy. |
|
|
|
|
|
#2 |
|
MrExcel MVP
Join Date: Mar 2004
Location: Belgium 3272 Testelt
Posts: 16,775
|
Yes, surely.
I hope he will always stay "simple". That's his main beauty to my sense.
__________________
I love Jesus calm down piano improvisation email Erik founder of DRAFT my free Addins Table-It download & info Formula Translator 03 |
|
|
|
|
|
#3 |
|
Join Date: Oct 2006
Location: Meadville, PA
Posts: 353
|
That was awesome!!
__________________
Joe -Office 2003 & 2007 -If you always do what you've always done, you'll always get what you always got. |
|
|
|
|
|
#4 |
|
MrExcel MVP
Join Date: Aug 2003
Location: Sydney, Australia
Posts: 9,000
|
Blew me away. And it looks like he did a pretty good job with the judges too!
EDIT: He won the final. Denis
__________________
"I've only ever had two good ideas" -- Albert Einstein ------------------------------------------------------- My site contains a number of Excel and Access Resources |
|
|
|
|
|
#5 |
|
Join Date: Dec 2004
Location: PA
Posts: 860
|
__________________
Hence, we fail to reject the null hypothesis that there is no relationship |
|
|
|
|
|
#6 |
|
Join Date: Mar 2005
Posts: 2,055
|
Andrew... That was the coolest thing I have ever seen.
iknowu99... That was just wrong.
__________________
|
|
|
|
|
|
#7 |
|
Join Date: Dec 2004
Location: PA
Posts: 860
|
Yea a lot of great talent out there!
__________________
Hence, we fail to reject the null hypothesis that there is no relationship |
|
|
|
|
|
#8 |
|
Join Date: Oct 2005
Posts: 1,542
|
That was GREAT.
This little 6 year old girl is terrific too. http://www.youtube.com/watch?v=En0A8...elated&search=
__________________
"A real friend is one who walks in when the rest of the world walks out. Don't walk in front of me, I may not follow. Don't walk behind me, I may not lead. Walk beside me and be my friend." - Charles Caleb Colton |
|
|
|
|
|
#9 |
|
MrExcel MVP, Administrator
Join Date: Feb 2002
Location: The act or process of locating.
Posts: 13,282
|
Between the two, I would rather listen to that 'polka' than the opera dude.
|
|
|
|
|
|
#10 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Auckland, New Zealand
Posts: 4,208
|
Andrew, that was truely g8, WOW what talent.
It was so good I wanted to download it ... P.ssed me off that you can't. Looked into my IE Tmp files, found it BUT was locked and removed ?? when the session was closed. SO I got some tools together and found how to get the file. So for any one wanting to Download off YouTube here is some code. There are other ways BUT I'll leave that for my site. Just change strYouTubeURL to the YouTube address of the Video eg http://www.youtube.com/watch?v=En0A8KGMgq8 EDIT: Code over here should work now http://www.xcelfiles.com/YouTube.html Disregard the code below........ Code:
Option Explicit
Private Declare Function DoFileDownload _
Lib "shdocvw.dll" ( _
ByVal lpszFile As String) _
As Long
Sub DownLoadYouTubeVideo()
'///////////////////////////////////////////////////////////////////////////////////////
'// Routine to download Video from YouTube
'// Requires: This project needs a reference to "Microsoft Internet Controls" and
'// "Microsoft HTML Object Library"
'// Inputs: Valid YouTube address of Viewing Video
'// : eg. Paul Potts, 'Britains Got Talent * Paul Potts WOWS with Nessun Dorma!'
'// : http://www.youtube.com/watch?v=exyJ2CSfrHo
'// : Must be in abov format..just copy from address Bar
'// By Ivan F Moala
'// http://www.xcelfiles.com
'// 18th Aug 2007
'///////////////////////////////////////////////////////////////////////////////////////
Dim strVideoUrl As String
Dim strCode As String
Dim objIE As Object
Dim PosLastID As Long, PosVideoID As Long
'// "Microsoft HTML Object Library"
Dim HtmlDoc As New HTMLDocument
Dim strYouTubeURL As String
Set objIE = New InternetExplorer
'// Paul Potts - change here as required
strYouTubeURL = "http://www.youtube.com/watch?v=exyJ2CSfrHo"
'// 720 Dunk
'strYouTubeURL = "http://www.youtube.com/watch?v=9Xpcgthwdp0"
'// Goto YouTube Site specified
With objIE
.navigate strYouTubeURL
'// Remove IF you want it visible, you may hear the audio
'.Visible = True
'// Wait for the page to load
Do While .Busy Or .readyState <> READYSTATE_COMPLETE
DoEvents
Loop
End With
'// Set Document object
Set HtmlDoc = objIE.Document
'// Set new IE Document into variable
Set HtmlDoc = objIE.Document
'// Extract HTML code from page whch contains OBJECT id = movie_player
strCode = HtmlDoc.Body.innerHTML
'// Find position of LastID
PosLastID = InStr(1, strCode, "&sk=")
'// Find position of VideoID
PosVideoID = InStr(1, strCode, "amp;video_id")
'// Get FileID
strVideoUrl = Mid(strCode, PosVideoID + 13, PosLastID - PosVideoID - 13)
'// Replace amp; as the 1st PARAM does NOT have Ctrl char and apend to URL_GET_VIDEO
strVideoUrl = "http://youtube.com/get_video?video_id=" & Replace(strVideoUrl, "amp;", "", 1)
'// Prompt user to Name with FLV extension
MsgBox "The File Download Dialog box will appear shortly." & vbCrLf & _
"When it prompts you to download, ensure you" & vbCrLf & _
"name the file with an .flv extension.", vbInformation, "Name file convention"
Dim Ret As Long
'// Try downloading via Windows Download dialog
Ret = DoFileDownload(StrConv(strVideoUrl, vbUnicode))
'// Close site properly
objIE.Quit
Set objIE = Nothing
Set HtmlDoc = Nothing
End Sub
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|