Outlookサポートナビ! ≫≫≫ Outlookフォーム作成/VBSプログラミング
ビューコントロールに表示されるフォルダのビューを指定/取得します。
オブジェクト
プロパティ
View
記述例: ViewCtl1.View = "ビュー名"
→ ビューコントロール1に表示されるフォルダのビューを指定します。
記述例:
Set MyPage = Item.GetInspector.ModifiedFormPages("登録") Set MyDraftBox = Application.GetNameSpace("mapi").GetDefaultFolder(16) strPath = MyDraftBox.FolerPath MyPage.ViewCtl1.Folder = strPath MyPage.ViewCtl1.View = "一覧" ★アイテム内のページを取得 ★下書きフォルダを取得 ★下書きフォルダのパスを取得(strPath) ★ViewCtlに表示するフォルダパスを指定(strPath) ★ViewCtlに表示するフォルダのビューを指定
Set MyPage = Item.GetInspector.ModifiedFormPages("登録")
Set MyDraftBox = Application.GetNameSpace("mapi").GetDefaultFolder(16)
strPath = MyDraftBox.FolerPath
MyPage.ViewCtl1.Folder = strPath
MyPage.ViewCtl1.View = "一覧"
★アイテム内のページを取得
★下書きフォルダを取得
★下書きフォルダのパスを取得(strPath)
★ViewCtlに表示するフォルダパスを指定(strPath)
★ViewCtlに表示するフォルダのビューを指定
≫≫ Outlookフォーム作成/開発/VBSプログラミング ≫≫ Outlookオブジェクトモデルから学ぶ