-
FlexPro
- At a Glance
- Features & Options
- Applications
- All Advantages
- What’s New in FlexPro 2021
- Try FlexPro For Free
- FlexPro View OEM Freeware
- Buying Guide
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
- Products
- News
- Support
- Company
- Contact
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
Einlesen vom Benutzername
Home > 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.