10/03/21 14:34:44
>>293
開いたときのイベントにマクロを割り当てて・・・
Sub SetRowHeight
sTableName = "Table1"
oDoc = ThisDatabaseDocument
oDataSource = oDoc.DataSource
oConnection = oDataSource.getConnection("", "")
oTable = oConnection.getTables().getByName(sTableName)
nRowHeight = oTable.RowHeight
If IsEmpty(nRowHeight) Then
oTable.RowHeight = 100
End If
End Sub