access code to TP page

HI ALL
i need to make login button to TP page this button didnot flip to the secured page without entering the right pin code.

please help

Thanks

Comments

  • ericmedley
    ericmedley Senior Member - 3709 Posts
    You can do it in either TPbDesign by making the button do a page flip and then setting that button's security settling to ask for a password or perform thevfunction from code.
  • kfahmy
    kfahmy Junior Member
    is this the code do the required function??


    DEFINE_START

    CREATE_BUFFER TP1, TP1_BUFFER

    .

    .

    DEFINE_EVENT

    ..

    DATA_EVENT[TP1](* EVALUATE TP1 DATA *)

    {

    STRING:

    {

    SELECT

    {

    ACTIVE (FIND_STRING (DATA.TEXT,'PAGE-',1)):

    {

    JUNK = REMOVE_STRING (DATA.TEXT,'PAGE-',1)

    CUR_PAGE = DATA.TEXT

    }

    ACTIVE (FIND_STRING (DATA.TEXT,'KEYP-',1)):

    {

    xxxx (* keypad code *)

    }

    ACTIVE (FIND_STRING (DATA.TEXT,'KEYB-',1)):

    {

    1234 (* keyboard code *)

    }

    ACTIVE (1):

    {

    1988 (* default code *)

    }

    }

    CLEAR_BUFFER TP1_BUFFER

    }

    ONLINE:

    {

    SEND_COMMAND TP1, 'TPAGEON'

    }

    }
  • ericmedley
    ericmedley Senior Member - 3709 Posts
    This code will get you the current page or whether or not the user has entered a strung from either the keyboard or key pad.. You still need some code to do something with that information. It's pretty basic string parsing, however.