Help??? PLs PLs PLS I beg u all(Just Learn VB.net) help help

h0t

Newcomer
Joined
Jun 18, 2004
Messages
8
Hi everyone.. i'm dennis..
When User selects a guest name, display the fields from the guest table(alreadi created but i havent do the codin yet) in text boxes with the readonly property set to true.
Allow updates(add,delete and edit) capability for the guest information. include buttons or menu options for navigation. display the current record number and the number of records in the status bar.

My Question is this.. (1)how to display the number of record in status bar??
(2)How to display the guest table in text boxes with the readonly property set to true..
(3) wat is the main context menu do??
 
1... What's the guest table? Do you store the current record somewhere? If so, then you can just convert it to string and add it to the Statusbar's .Text property.
yourstatusbarname.Text = yourrecordnumber.ToString()

2... select the textboxes and go over to the properties window and set their ReadOnly property to True. :)

3... The Main Menu is the one that goes up on the top of the form. The Context Menu is the one that appears when you right click.
 
Iceplug said:
1... What's the guest table? Do you store the current record somewhere? If so, then you can just convert it to string and add it to the Statusbar's .Text property.
yourstatusbarname.Text = yourrecordnumber.ToString()

2... select the textboxes and go over to the properties window and set their ReadOnly property to True. :)

3... The Main Menu is the one that goes up on the top of the form. The Context Menu is the one that appears when you right click.


first i want to say thankzz iceplug..for the help again but can u see my question first??. i am havin a big headache now...
 

Attachments

We do not write your homework solution for you.
I answered the specific questions that you presented in the first post, but you need to actually work on your assignment and then ask questions if you get stumped somewhere... specific questions.
 
oh k sorry n thankz i'm doin it right now ... if dont understand i will ask again... ;)
 
Back
Top