I Have A Program That Include Login Page And I Want Add A Login Count That Means If A user Logined i have A field In My Database Named count And Here I want To Add Count eg::if aru is logined first time iwant to add count as 0000000001,Then He logined Again Then The Next Count is 0000000002 Next is 0000000003
Yes, it is possible.
From the database you get LOGIN0000000001 in the variable LoginVal
Then LoginCounter=SubString(LoginVal,5,StrLength(LoginVal)-5) ' removes the 5 first characters to get the count number LoginCounter=LoginCounter+1 ' adds 1 LoginVal="LOGIN"&Format(LoginCounter,"D10") ' modifies the counter text