หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
Gets the current company name.
Syntax
Name := COMPANYNAME
Property Value/Return Value
Type: Text constant or code
The name of the company, or an empty string if no company has been selected.
Example
This example requires that you create the following variables and text constants.
| Variable name | DataType | Length |
|---|---|---|
| CompName | Text | 1024 |
| Name | ConstValue |
|---|---|
| Text000 | The name is %1. |
CompName := COMPANYNAME;
MESSAGE(Text000, CompName);