NotProfessional
Programmer
Ok I'll get right to the case. I have a Window that is designed for loging in. The window uses the table USER_PROFILE whose primary key is K_USER and it consists of 2 attributes : USR:NAME and USRASSWORD. The window is called by a menubar item. Another menubar item is calling a browse procedure that uses a table TRANSACTION_ACCOUNTS for File browsing list box and USER_PROFILE in Other tables. 1 USER_PROFILE can have multiple TRANSACTION_ACCOUNTS. Now how do I make it so that after i enter the NAME and PASSWORD in login window I can see the matching transaction accounts in the browse procedure? I would put the name and password in global variables through the login window and call that data from the browse procedure by:
USR:NAME = GLO:NAME
USRASSWORD = GLOASSWORD
GET(USER_PROFILE,KOR:K_KOR)
IF Errorcode()
message('Error')
.
I don't get an error message but when I insert a record It doesn't show on the browsebox but the record is inserted.
I know It's a noob question and I'm sorry. Please help
USR:NAME = GLO:NAME
USRASSWORD = GLOASSWORD
GET(USER_PROFILE,KOR:K_KOR)
IF Errorcode()
message('Error')
.
I don't get an error message but when I insert a record It doesn't show on the browsebox but the record is inserted.
I know It's a noob question and I'm sorry. Please help