Files
MBS/WEBSERVICES/shoppingcart/client/User.per
T

39 lines
786 B
Plaintext

--
-- FOURJS_START_COPYRIGHT(U,2011)
-- Property of Four Js*
-- (c) Copyright Four Js 2011, 2019. All Rights Reserved.
-- * Trademark of Four Js Development Tools Europe Ltd
-- in the United States and elsewhere
--
-- Four Js and its suppliers do not warrant or guarantee that these samples
-- are accurate and suitable for your purposes. Their inclusion is purely for
-- information purposes only.
-- FOURJS_END_COPYRIGHT
--
SCHEMA FORMONLY
LAYOUT
HBOX
GROUP ( TEXT = "User")
GRID
{
Login [user ]
[ok ] [cancel]
}
END
END
END -- hbox
END -- layout
ATTRIBUTES
user = formonly.user, NOT NULL,REQUIRED;
BUTTON ok : accept;
BUTTON cancel : cancel;
END