如何在MsgBox中顯示圖像?在VBScript中顯示圖像MsgBox
0
A
回答
0
你想要什麼稱爲超文本應用程序或HTA。您使用HTML來創建表單。
1
答案是:這是不可能的。 MsgBox
只能顯示字符串。
文檔: http://msdn.microsoft.com/en-us/library/sfw6660x%28v=vs.85%29.aspx
另一種方法是在一個小的Internet Explorer窗口來顯示圖像。下面是一個例子:
Set objExplorer = CreateObject("InternetExplorer.Application")
With objExplorer
.Navigate "about:blank"
.ToolBar = 0
.StatusBar = 0
.Left = 100
.Top = 100
.Width = 200
.Height = 200
.Visible = 1
.Document.Title = "Important image!"
.Document.Body.InnerHTML = _
"<img src='http://sstatic.net/stackoverflow/img/venn-diagram.png' height=100 width=100>"
End With
這應該顯示在堆棧溢出的about部分找到的文氏圖。
+0
好的,再次感謝。 – angel
相關問題
- 1. 在VBScript中如何顯示拉丁字符MSGBOX
- 2. MSGBOX VBscript的
- 3. 在vbscript中自動關閉MsgBox?
- 4. VBSCRIPT MsgBox VbYesNo倒計時
- 5. 正確使用vbScript MsgBox
- 6. Outlook VBA,在MsgBox中顯示標題
- 7. Dlookup超鏈接在MsgBox中顯示
- 8. Excel在msgbox中顯示可變數據
- 9. VBA Excel在MSGBOX中顯示值
- 10. VBScript中Msgbox的替代方案
- 11. base64圖像不在圖像中顯示
- 12. 在jsf中顯示圖像
- 13. 在EasyGUI中顯示圖像
- 14. 在JTextPane中顯示圖像
- 15. 在php中顯示圖像
- 16. 在QmessageBox中顯示圖像
- 17. 在div中顯示圖像
- 18. 在JTextArea中顯示圖像
- 19. 在UITableview中顯示圖像
- 20. 在ScrollView中顯示圖像
- 21. 在C++中顯示圖像
- 22. 在ScrollView中顯示圖像
- 23. 在gridview中顯示圖像
- 24. 在ASP.NET中顯示圖像
- 25. 在jsp中顯示圖像
- 26. 在SSRS中顯示圖像
- 27. 在awt中顯示圖像
- 28. 在QLabel中顯示圖像
- 29. 在Codeigniter中顯示圖像
- 30. 在GridView中顯示圖像
是的我已經提出了一個關於製作對話框的問題,並且有人提到了你所做的同樣的事情。感謝您的幫助,我一定會練習這種語言。 – angel