- 帖子
- 472
- 主題
- 5
- 精華
- 0
- 積分
- 485
- 點名
- 0
- 作業系統
- Windows
- 軟體版本
- MS Office
- 閱讀權限
- 100
- 性別
- 男
- 來自
- 香港
- 註冊時間
- 2010-7-4
- 最後登錄
- 2014-12-28
|
4#
發表於 2012-5-14 23:49
| 只看該作者
解決了,謝謝
不過我的JPG檔大小不一,是否有辦法列印成一樣大小的尺寸,PrintOut是否有一些參數可以下?感激
hbjang 發表於 2012-5-14 20:05
把長寬設為 400 x 300- Private Sub CommandButton1_Click()
- Dim pic
- Application.DisplayAlerts = False
- With Sheets.Add
- Set pic = .Pictures.Insert("C:\Users\kimbal\Pictures\28.png") '圖片檔目錄
- pic.Width = 400
- pic.Height = 300
- .PrintOut
- .Delete
- End With
- Application.DisplayAlerts = True
- End Sub
複製代碼 |
|