Jump to content

Siteden Jpg Çekmesi


DarkLenoX
 Share

Recommended Posts

mesela arkaplan yaptım yanındaki anti klasöründen okuyor ben bunu sitemdeki bi klasörden okumasını istiyorum
[quote]$Pic1 = GUICtrlCreatePic("anti/arkaplan.jpg", 0, 0, 393, 341, 0)[/quote]

Böyle Yapıyorum Ama Okumuyor Acaba Başka Bi Kod Dahamı Girmek Lazım
[quote]$Pic1 = GUICtrlCreatePic("http://www.frmoz.com/anti/arkaplan.jpg", 0, 0, 393, 341, 0)[/quote]
Link to comment
Share on other sites

@DarkLenoX

Gibi bir şey olabilir...

[codebox]#include <File.au3>
Local $Get_Jpg = _TempFile()
Local $Form1 = GUICreate("Form1", 393, 341)
InetGet("http://www.frmoz.com/anti/arkaplan.jpg", $Get_Jpg)
Local $Pic1 = GUICtrlCreatePic($Get_Jpg, 0, 0, 393, 341, 0)
FileDelete($Get_Jpg)

GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case -3
Exit

EndSwitch
WEnd[/codebox]

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...