Oct 18, 2022 #1 KK_ MIS Joined Oct 18, 2022 Messages 2 Location IN Is there any way to get machine ID or machine serial number into a field named Device_ID by clicking a button.
Is there any way to get machine ID or machine serial number into a field named Device_ID by clicking a button.
Oct 19, 2022 #2 pmonett Programmer Joined Sep 5, 2002 Messages 2,636 Location FR Create a Formula agent with the following code : Code: data := @Prompt([OkCancelEdit];"Machine ID";"Please enter the machine ID : ";""); FIELD Device_ID := data; "" If you select a document, you can go to Actions and launch the agent. I've got nothing to hide, and I demand that you justify what right you have to ask. Upvote 0 Downvote
Create a Formula agent with the following code : Code: data := @Prompt([OkCancelEdit];"Machine ID";"Please enter the machine ID : ";""); FIELD Device_ID := data; "" If you select a document, you can go to Actions and launch the agent. I've got nothing to hide, and I demand that you justify what right you have to ask.