*目次 [#ma3953e9]
#contents

*趣旨 [#rab278c5]
とりあえず必要かと思う情報をまとめ中

*情報検索リンク [#f064c825]
http://www.oooforum.org/forum/search.phtml


*OpenOffice/Calcでエクセルの様に日付、時刻を自動入力するマクロ [#qff66df5]
http://zze128.blog9.fc2.com/blog-entry-175.html

*Macでキャプチャした画像を貼付けるまで [#z9319136]

**参考URL [#hd06ab03]
http://www.tohoho-web.com/lng/199911/99110324.htm

>MACの場合はシフトキー+コマンド+4の同時押しで
>バッテンカーソルが出るので取り込みたい画面を
>ドラッグすればハードディスクにSimpletextのPICT画像として
>保存されます。
>普通にダブルクリックすれば Simpletextで開けますし
>編集したければフォトショップでも何でもで開いて下さい。

一応Macにはキャプチャソフトとして

Jingというのがある

**Jing [#yd3d2d99]

***URL [#f2b5c3c5]
http://www.techsmith.com/download/jing/thankyou.asp?type=mac

*「選択中の結合セルからサイズを取得する方法」 [#ca10813e]
セルカーソルというものを使うことでOOoBasicで実現できるようです。

 '-------------------------------------------
 Sub mergedArea_Size 
 Dim oSheet As Object
 Dim oCursor As Object
 Dim oSelection As Object
 oSheet =ThisComponent.CurrentController.ActiveSheet
 oSelection = ThisComponent.CurrentSelection
 oCursor = oSheet.createCursorByRange( oSelection )
 oCursor.collapseToMergedArea()
 Dim w_len As Long
 Dim h_len As Long
 w_len = oCursor.Size.Width
 h_len = oCursor.Size.Height
 MsgBox "Width:" & w_len & " Height:" & h_len
 End Sub
 '-------------------------------------------

**参考URL [#d6f786ea]
http://oshiete.goo.ne.jp/qa/5720685.html
トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS