Excel VBA質問箱 IV

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

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


69072 / 76734 ←次へ | 前へ→

【12182】Re:テキストボックスの作成  別解
発言  ichinose  - 04/3/25(木) 21:15 -

引用なし
パスワード
   こんな方法もありました。
但し、両方マクロになってしまいますが・・・。
'======================================================
Sub 線なしTextbox()
  Dim shp As Shape
  Set shp = ActiveSheet.Shapes.AddTextbox(msoTextOrientationHorizontal, 0, 0, 10, 10)
  With shp
   .Line.Visible = msoFalse
   .SetShapesDefaultProperties
   .Delete
   End With
  Application.CommandBars("Drawing").Controls(9).Execute
  
End Sub
==========================================================================
Sub 線ありTextbox()
  Dim shp As Shape
  Set shp = ActiveSheet.Shapes.AddTextbox(msoTextOrientationHorizontal, 0, 0, 10, 10)
  With shp
   .Line.Visible = msoTrue
   .SetShapesDefaultProperties
   .Delete
   End With
  Application.CommandBars("Drawing").Controls(9).Execute
End Sub
0 hits

【12175】テキストボックスの作成 roki 04/3/25(木) 18:34 質問
【12177】Re:テキストボックスの作成 ichinose 04/3/25(木) 19:43 回答
【12178】Re:テキストボックスの作成  追伸 ichinose 04/3/25(木) 19:47 発言
【12182】Re:テキストボックスの作成  別解 ichinose 04/3/25(木) 21:15 発言
【12194】Re:テキストボックスの作成 roki 04/3/26(金) 13:02 お礼
【14692】Re:テキストボックスの作成 チロ 04/6/4(金) 22:44 質問
【14696】Re:テキストボックスの作成 ichinose 04/6/5(土) 9:37 回答
【14697】Re:テキストボックスの作成 チロ 04/6/5(土) 10:38 お礼

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