Hi.
My work expects me to build a contacts and companies database. I have never touched Access or anything similar before, and even though my general computer and tech skills are good, my programming skills are inexistent. I have lots of dumb questions, so I'm just going to spam them in here, hoping to understand at least some of it after a while. Please explain as detailed as possible as i find some stuff really hard to grasp.
What are relations and relationships?
What does one to many mean and what is it?
How do you make a search box that works properly, where you can search for multiple details about different things all in one search field?
What are macros?
Why does the right hand side bar in Access disappear all the time?
What does unbound and bound mean?
What is a calculation and a query and what is the difference between those?
Why do you need forms for things and why can't you just go into the table and edit it directly?
How do you output data into a report, and why would you want to do that?
what does lookup mean?
What does this not do a search:
And what do the above words mean? explain line by line, word by word, sign by sign.Private Sub cmdSaveupdate_Click()
If Not IsNull([tblCompanyID]) Then
Forms![frmContact].tblCompanyID = Me.tblCompanyID
End If
DoCmd.Close
End Sub
What is this and why does it not work?
Sorry for the mess.