-
FlexPro
- Zoom sur FlexPro
- Fonctionnalités & Options
- Domaines d’application
- Tous les avantages
- Nouveau dans FlexPro 2021
- Testez FlexPro gratuitement
- FlexPro View OEM Freeware
- Conseils d’achat
- Login
- Langue
- +49 6894 929600
- infoweisang.com
- Google Maps
- Produits
- News
- Support
- Société
- Emplois
- Contact
- Login
- Langue
- +49 6894 929600
- infoweisang.com
- Google Maps
Einlesen vom Benutzername
Accueil > Community > Automation and VBA > Einlesen vom Benutzername
- This topic has 2 replies, 2 voices, and was last updated 13 years, 5 months ago by Markus Frank.
-
AuthorPosts
-
June 6, 2011 at 11:29 am #12724Markus FrankMember
Hallo,
Ich habe ein Makro geschrieben um den benutzername einzulesen.
Wie kann ich den eingelesenen Benutzername in einem Dokument-Objekt eintragenCode:
Dim MyName
Sub MyuserName()
MyName = Environ(“UserName”)End Sub
Vielen danke im Voraus
Gruß KJune 6, 2011 at 11:29 am #8387Markus FrankMemberHallo,
Ich habe ein Makro geschrieben um den benutzername einzulesen.
Wie kann ich den eingelesenen Benutzername in einem Dokument-Objekt eintragenCode:
Dim MyName
Sub MyuserName()
MyName = Environ(“UserName”)End Sub
Vielen danke im Voraus
Gruß KJune 6, 2011 at 12:47 pm #9183Bernhard KantzParticipantYou 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
-
AuthorPosts
- You must be logged in to reply to this topic.