Skip to content

Instantly share code, notes, and snippets.

@strepicor
Last active April 2, 2024 02:22
Show Gist options
  • Save strepicor/bfe79749b39bbe6a77c60a4b47520010 to your computer and use it in GitHub Desktop.
Save strepicor/bfe79749b39bbe6a77c60a4b47520010 to your computer and use it in GitHub Desktop.
Company, PlantId, UserId
// Add a reference to Ice.Core.Session dll
private string company;
private string plantId;
private string userId;
public void InitializeCustomCode()
{
...
company = ((Ice.Core.Session)(<FormName>.Session)).CompanyID.ToString();
plantId = ((Ice.Core.Session)(<FormName>.Session)).PlantID.ToString();
userId = ((Ice.Core.Session)(<FormName>.Session)).UserID.ToString();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment