Excel VBA質問箱 IV

当質問箱は、有志のボランティア精神のおかげで成り立っています。
問題が解決したら、必ずお礼をしましょうね。
本サイトの基本方針をまとめました。こちら をご一読ください。

投稿種別の選択が必要です。ご注意ください。
迷惑投稿防止のため、URLの入力を制限しています。ご了承ください。


29325 / 76732 ←次へ | 前へ→

【52689】Re:画像の位置取得
発言  Lindy  - 07/11/26(月) 15:25 -

引用なし
パスワード
   ▼岳 さん:
すみません、1箇所ミスがあったので訂正します。

Sub トリミングTEST()

Dim slcRng As Range, intMsg As String
Dim strPic As Variant, myPic As Object

strPic = Application.GetOpenFilename(, , "画像ファイルを選択")
If VarType(strPic) = vbBoolean Then Exit Sub
With Workbooks.Add
 Application.ScreenUpdating = False
 With .ActiveSheet
  .Cells.ColumnWidth = 0.38
  .Cells.RowHeight = 3.75
  .SetBackgroundPicture strPic
  Set myPic = .Pictures.Insert(strPic)
  myPic.Visible = False
 End With
 ActiveWindow.DisplayGridlines = False
 Application.ScreenUpdating = True
 Set slcRng = Application.InputBox("切り取り範囲を選択", Type:=8)
 intMsg = InputBox("保存ファイル名は?")
 If intMsg = "" Or slcRng Is Nothing Then GoTo ErrHdl
 intMsg = "\" & intMsg
 myPic.Visible = True
 Application.ScreenUpdating = False
 slcRng.CopyPicture xlScreen, xlPicture
 With ActiveSheet.ChartObjects.Add(0, 0, slcRng.Width, slcRng.Height).Chart
  .Paste
  .Export Filename:=ThisWorkbook.Path & intMsg & ".gif", filtername:="GIF"
  .Parent.Delete
 End With
 MsgBox "ブックが保存されているフォルダに保存されました"
ErrHdl:
 .Close False
 Application.ScreenUpdating = True
End With
End Sub
1 hits

【52673】画像の位置取得 07/11/25(日) 20:42 質問
【52682】Re:画像の位置取得 n 07/11/26(月) 11:59 発言
【52687】Re:画像の位置取得 07/11/26(月) 14:14 お礼
【52691】Re:画像の位置取得 n 07/11/26(月) 17:42 発言
【52692】Re:画像の位置取得 n 07/11/26(月) 20:16 発言
【52696】Re:画像の位置取得 07/11/26(月) 21:21 お礼
【52688】Re:画像の位置取得 Lindy 07/11/26(月) 14:30 発言
【52689】Re:画像の位置取得 Lindy 07/11/26(月) 15:25 発言
【52690】Re:画像の位置取得 07/11/26(月) 16:06 お礼

29325 / 76732 ←次へ | 前へ→
ページ:  ┃  記事番号:
2610219
(SS)C-BOARD v3.8 is Free