Jump to content

Is this possible?


Recommended Posts

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 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
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...