ID Card Workshop User Manual

Professional membership management and ID card software for businesses and organizations.

  
General
Video Tutorial
Create a new project
Card Designer
Card Issuing Center And Record Seeker
Script Engine
Records Manager
Project Manager
Others

Sample 1: Membership system with automatic membership level upgrading

Following is a example of membership management system with automatic membership level upgrading feature, it will it automatically upgrade the specified member's level after they spent a specified amount of money.

*Click here to download the project file of this sample.(you can import the project file in Project Manager of ID Card Workshop)

Database Structure:
Field NameData Type
IDNumber
First_NameText
Last_NameText
PhoneText
Email Text
State Text
City Text
AddressText
Postal_CodeText
Date_Of_BirthDateTime
Card_Start_DateDateTime
Card_Expiration_DateDateTime
Is_Card_ActiveYes/No
PhotoImage
Member_LevelText
Total_SpendingNumber

  Here is script that used for automatic membership level upgrading, the script will detect the amount of "Total_Spending" and adjust the Member_Level status.

if(Total_Spending>=0)
{
    Member_Level="Basic";
}
if(Total_Spending>=500)
{
    Member_Level="Bronze";
}
if(Total_Spending>=2000)
{
    Member_Level="Silver";
}
if(Total_Spending>=5000)
{
    Member_Level="Gold";
}
if(Total_Spending>=100000)
{
    Member_Level="Platinum";
}
if(Total_Spending>=200000)
{
    Member_Level="Diamond";
}


 
 Copyright © ID Card Workshop Team