CrystalReports で、数値をカンマ区切りするときなどに、 ###### と表示されてしまうことがあります。
All posts by Kenji
eclipse で JavaDoc を生成する方法
eclipse で JavaDoc を自動生成する方法について説明します。
Javadoc というのは Javaプロジェクト についての HTMLファイル のことです。 要するに、クラスやそのメソッドなどをまとめたドキュメントです。
Continue reading eclipse で JavaDoc を生成する方法Java: eclipse で APIリファレンスを見る方法
Eclipse Platform API Specification にアクセスすれば、ブラウザからAPIリファレンスを見ることができます。
eclipse で見たい場合は、見たいライブラリをパッケージエクスプローラで選択して右クリックし、プロパティを開きます。 javadoc と左側にあるのを選択して、http://help.eclipse.org/helios/nftopic/org.eclipse.platform.doc.isv/reference/api/ と入力します。
ここで注意が必要なのは、 最後の部分です。 ブラウザからだと index.html と入力しますが、 eclipse ではそこまで書きません。 api/ で終わります。
そして eclipse 上で、 調べたいメソッドの上にカーソルを持っていき、 Shift + F2 を押すとリファレンスが表示されます。
さらに、たとえば SWT というライブラリで定義されている SelectionAdapter のソースを見ようと思ったら、 Ctrl を押しながら マウスで左クリックします。 そして、出てきたウインドウ内の、「ソースの添付」ボタンを押して、アーカイブファイル(.zip)のロケーションを入力します。 すると次回から、 Ctrl + 左クリック で ソースを見ることができます。
VBA: How to List Table Definitions in Access File
In this article, we will introduce code that converts a list of table definitions within Microsoft Office Access (.mdb) files into Oracle-compatible table definitions and outputs them as a list.
Overview
- We will use Excel and VBA for this process.
- By running the VBA function
GetTableDefinitions, you can output a list of table definitions from an Access file to the open Excel sheet. - We will create text data intended to be pasted into a table definition document (.xls).
- For Access tables converted to Oracle, text columns, for example, will be displayed as
VARCHAR2. - We won’t output system tables (you can modify the code to include them if needed).
- Link tables will display the contents of the links. The definitions of linked destination tables will not be output.
How to Use
- Open Excel.
- Open the Visual Basic Editor from the development tools.
- Add a module.
- Check Microsoft DAO in the Tools > References settings.
- Paste the code below.
- Execute the
GetTableDefinitionsfunction.
Letter and Email: Seasonal Greeting
時候のあいさつのメモを整理しました。
Continue reading Letter and Email: Seasonal Greeting