Forum FlexPro – Discuss your topic!

Einlesen vom Benutzername

Accueil > Community > Automation and VBA > Einlesen vom Benutzername

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #12724
    Markus FrankMarkus Frank
    Member

    Hallo,
    Ich habe ein Makro geschrieben um den benutzername einzulesen.
    Wie kann ich den eingelesenen Benutzername in einem Dokument-Objekt eintragen

    Code:
    Dim MyName
    Sub MyuserName()
    MyName = Environ(“UserName”)

    End Sub

    Vielen danke im Voraus
    Gruß K

    #8387
    Markus FrankMarkus Frank
    Member

    Hallo,
    Ich habe ein Makro geschrieben um den benutzername einzulesen.
    Wie kann ich den eingelesenen Benutzername in einem Dokument-Objekt eintragen

    Code:
    Dim MyName
    Sub MyuserName()
    MyName = Environ(“UserName”)

    End Sub

    Vielen danke im Voraus
    Gruß K

    #9183
    Bernhard KantzBernhard Kantz
    Participant

    You could add a drawing object “Label” into the document with the text %{ThisFPObject.Comments} to show the document comment.

    With VBA you could add a document comment. In this example there is a document object with the name document in the rootfolder of the current project database.

    
    Dim myName
    myName = Environ("UserName")
    With ThisDatabase.RootFolder.Object("Document", fpObjectTypeDocument)
    	.Comments = myName
    End With
    

    support@weisang.com

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.