I'm sorry for asking but they don't tech us females about techie stuff but I’m trying my best. I have been working on this one problem for 3 days and I read about half a library.
I'm trying to build a client database that stores their info and all their notes that they make over time (notes are under Time and Date)
My database consist of (Table Clients - entryid, FirstName, LastName, and so on.
And (Table TimeDate – entryid, LastName, FirstName, Time, Date, Notes.
I have the Client side working great but I can’t get the TimeDate working.
When I enter the info it fills in the Client and TimeDate at the same time but if I’m working under a existing client and make a new note it will add a new entry to the TimeDate.
I just need it to populate the box on the left with all the notes that corresponds with that client. The right side populates the clients when opening the program. I can get the entryid of the client![]()
But i don't understand how to take the ID of the client and get all there notes in TimeDate to populate the box on the left.-- get selected item(s)
tSelected = ListBox.GetSelected(this);
-- check that there was something selected
if tSelected then
-- set nSelected to first (only) selected item
nSelected = tSelected[1];
-- Get the entry id of the current item (Data)
nEntryID = ListBox.GetItemData(this, nSelected);
end
I attached a zip of a database and .am6 as it might help. LOL
Thanks for any help.

