Futurebasic/Language/Reference/fbgetsystemname$
FBGetSystemNames$ function
edit
FBGetSystemNames$editFunctionedit✔ Appearance ✔ Standard ✔ Console Syntaxedit
RevisededitApril, 2003 (Release 8) DescriptioneditThis function returns the computer name or the user name according to the To make this routine available to your program, you must include the header file "Util_ComputerNames.Incl". ExampleeditInclude "Util_ComputerNames.Incl" Print "Computer Name:";;¬ Fn FBGetSystemName$ (_FBComputerName);"""" Print "Long User Name: """;¬ Fn FBGetSystemName$ (_FBLongUserName);"""" Print "Short User Name: """;¬ Fn FBGetSystemName$ (_FBShortUserName);"""" Do HandleEvents Until 0 |