Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
任何可能以 VB 表单加载 TIF 图像,如果是这样,请分享代码
一种方法可能是使用网络控件。 在用户窗体设计器中,右键单击工具箱,然后选择其他控件...然后Microsoft Web Browser。 代码可能类似于:
Microsoft Web Browser
Private Sub CommandButton1_Click() WebBrowser1.Navigate2 _ "about:<body style=""background:url('F:\Test.tif')""> </body>" End Sub
它有效,但相当复杂,可能会很慢。