VFP如何通过图片控件调用远程图片
各位大虾:VFP如何通过图片控件调用远程图片
我在表单,init 事件写入如下代码,可他不起作用
thisform.imgad1.Picture="http://www.XXXX.com/images/ogmaster/hy/ad1.gif"
希望各们高手指正
[解决办法]
Local cUrl, cHtml* cUrl = "http://www.XXXX.com/images/ogmaster/hy/ad1.gif"cUrl = "http://www.baidu.com/img/baidu_sylogo1.gif"Text to cHtml Textmerge noshow <html> <head> <style type="text/css">body {border:0px; overflow:hidden}</style> </head> <body><img src="<<cUrl>>" width="100%" height="100%"></body> </html>EndTextThis.Navigate('about:blank')This.Document.write(cHtml)