civilcalc Posted August 10, 2007 Posted August 10, 2007 Hey, Can someone tell me if its possible to include a picture in my gui that exists on the web? for example $pic = Guictrlcreatepic("www.google.com/img.jpg",10,10,200,200) ?? thanks
Zedna Posted August 10, 2007 Posted August 10, 2007 (edited) InetGet("www.google.com/img.jpg", @TempDir & '\img.jpg' ) $pic = Guictrlcreatepic(@TempDir & '\img.jpg' ,10,10,200,200) Edited August 10, 2007 by Zedna Resources UDF ResourcesEx UDF AutoIt Forum Search
PsaltyDS Posted August 10, 2007 Posted August 10, 2007 (edited) Can someone tell me if its possible to include a picture in my gui that exists on the web? for example $pic = Guictrlcreatepic("www.google.com/img.jpg",10,10,200,200) You were close. First you have to get the file, then create the control: $PicURL = "http://www.google.com/img.jpg" $PicFile = @ScriptDir & "\img.jpg" If InetGet($PicURL, $PicFile) Then $PicID = GUICtrlCreatePic($PicFile, 10, 10, 200, 200) Else MsgBox(16, "Error", "Error downloading file: " & $PicURL) EndIf Edited August 10, 2007 by PsaltyDS Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
civilcalc Posted August 10, 2007 Author Posted August 10, 2007 thanks both of you! you guys are excellent!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now