脳内がNotes/Domino系からASP.NETに移行しつつあるIT系情報ブログなつもり。
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
Dim session As New NotesSession
Dim db As NotesDatabase
'現在のDB
Set db = session.CurrentDatabase
'別DBの指定
Dim Tdb As NotesDatabase
Dim ServerName as string, DbPath as string
ServerName = "サーバを指定"
DbPath = "パスを指定"
Set Tdb = New NotesDatabase( ServerName, DbPath )
Dim collection As NotesDocumentCollection
Dim doc As NotesDocument
Set collection = db.UnprocessedDocuments
Set doc = collection.GetFirstDocument()
While Not(doc Is Nothing)
Call doc.CopyToDatabase( Tdb )'ここでコピー
Set doc = collection.GetNextDocument(doc)
Wend
@If(@IsDocBeingEdited;@True;@Return(""));
DBFile := "49256997:000BFDAA";
temp := @PickList([Custom]:[Single];DBFile;"TraderSelectView";"業者選択";"業者を選択してください";6);
FIELD GyousyaName := @Word(temp;",";1);
FIELD GyousyaLucas := @Word(temp;",";3);
FIELD GyousyaMail := @Word(temp;",";4);
@Command([ViewRefreshFields])
12 | 2025/01 | 02 |
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |