-
カレントディレクトリの取得方法 --Access Club Access 初・中級者 FORUM--

http://www.accessclub.jp/bbs2/0013/
beginter04590.html 本文へ
Function Get_CurDir()
Dim MyPos As Integer
Dim SerachPos As Integer
Dim DirPath As String
Dim db As Database
Set db = CurrentDb()
DirPath = db.Name
MyPos = 1
Do
MyPos = InStr(MyPos + 1, DirPath, "●") ※●←¥
If MyPos = 0 Or IsNull(MyPos) Then
Exit Do
End If
SerachPos = MyPos
Loop
Get_CurDir = Mid(DirPath, 1, SerachPos - 1)
db.close: Set db = Nothing
End Function -
レポートの印刷プリンタ(ページ設定)をVBAで直接変更できないでしょうか? --Access Club VBA Tips フォーラム--

http://www.accessclub.jp/bbs5/0016/
vba4586.html 本文へ
http://office.microsoft.com/ja-jp/assistance/HA010345531041.aspx -
テーブルのフィールドサイズを取得したい --Access Club VBA Tips フォーラム--

http://www.accessclub.jp/bbs5/0035/
vba10981.html 本文へ
CurrentDb.TableDefs("テーブル名").Fields("フィールド名").Size -
ふりがな入力支援での文字数制限 --Access Club 超初心者 FORUM--

http://www.accessclub.jp/bbs3/0361/
superbeg108330.html 本文へ
Private Sub FuriW_Change()
If Len(FuriW.Value) <= 10 Then
ふりがな.Value = FuriW.Value
Else
ふりがな.Value = Left(FuriW.Value, 10)
End If
End Sub
+++++++++++++++++++++++
一旦入力したものを、途中入力したりすると妙なことになったり、追加しちゃうと重なってたり。。。 -
フォームでの小数点以下の表示・非表示 --Access Club Access 初・中級者 FORUM--

http://www.accessclub.jp/bbs2/0082/
beginter25522.html 本文へ
テキスト項目にしてformatで回避。
目からウロコ。。。





