Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.55K
~977 People Reached
Favorite Forums
1 Posted Topic
Re: this worked for me in free pascal and in extended pascal (changing unit to include of course): program logname ; uses windows; var buffer: array[0..255] of char; size: dword; begin size := 256; GetUserName(buffer, size); write(buffer); readln; end. |
The End.