Hallo Leute,
ich möchte meine Anwendung konfigurierbar machen
und frage zur Laufzeit Werte aus einem Profildokument
ab. Nur bei Kontrollkästchen fehlt mir wohl noch eine Information.
Dim Session As New NotesSession
Dim db As NotesDatabase
Dim workspace As New NotesUIWorkspace
Dim uidoc As NotesUIDocument
Dim profildoc As NotesDocument
Dim TEST As Variant
Dim User As String
User = Session.Username
Set db = session.CurrentDatabase
Set profildoc = db.GetProfileDocument( "e4frm_Profil", user )
TEST = profildoc.e4fld_CLOSE_AFTER_VIEW(0)
Messagebox TEST(0)
Das Feld e4fld_CLOSE_AFTER_VIEW ist
hat als Typ Kontrollkästchen. Ansonsten
habe ich keinerlei Eingaben gemacht.
Was benötige ich noch ?
Ciao
Don Pasquale