It will take me a while to figure out what is being said in these... thanks for the suggestions! I did some testing myself and found that really what I'm trying to do is create a set of vba instructions that I can call in a form OnLoad event. I tested it on the individual form and I can put the...
sounds like it save more time to just go through every form and assign each macro accordingly :( If I try something that works I'll definitely post it!
Thanks for the reply
Hi Everyone!,
I'm not even sure if this is possible but I'll ask anyways. I have built an access application that contains a set of buttons along the top of every form that serve as navigation.* These buttons each perform the same function on every form they are on. (menu opens the main menu...
eeek! Thank you Thank you Plog!!!! Clearly I should not doubt SQL language so hastily. This has seriously opened my eyes to the coolness of queries. I really want to go through all of the other reports now haha. Sadly, I'm the only data nerd in my office so it will have to be a cyber...
Hi All,
I have a survey that I'm building in Access. This survey is intended to be sent to all employees. Where can I find information on options to share the ONE survey form with the floor, even if they don't have access to the shared drive that the back end tables are stored on. Is this...
You were right! It was the last quotation mark. It also doesn't help that I constantly misspell the word 'response'. :confused:
Thanks very much for your help!
K
Hi Everyone,
I am having trouble opening Form 2 to the same record as the record in Form 1. Form 1 is a continuous form of questions. When certain response is given, I want to be able to add more information to the "additionalcomments" column for that record. I want to have the additional...
UPDATE:
INSERT INTO tblassignment ( AnalystassignmentID )
SELECT refanalyst.AnalystID
FROM refanalyst LEFT JOIN tblassignment ON refanalyst.AnalystID = tblassignment.AnalystassignmentID
WHERE (((tblassignment.AnalystassignmentID) Is Null));
does the trick. It was giving me errors originally...
Hi All,
I'm stumped. I have a database used to manage teaching assignments (which kid is assigned to which teacher so to speak). I have this relationship defined through three tables, a teacher table, a student table, both with unique ID's. The third table is used to define the...
I was able to work it out using the following code. Thanks for both of your suggestions!
Dim strSQL As String
strSQL = "DELETE * FROM reftblform " & _
"WHERE (reftblform.FormID=" & Forms!frmformmgt.cbofrmfilter & ")"
DoCmd.RunSQL strSQL
Me.subfrmformmgt.Requery
End If
Alright. I give...
I have combed through these forums and tried a very simple delete query in VBA a couple different ways. I can't seem to get it. I have an unbound combobox on my form whose source is a two column form name and form ID (form id is the bound column). I have a button that I...
Thanks for the reply, Steve. I've spoken to the tech mgr and his worry was that utilizing SQL Server Express would leave the data open. Is it that the data is stored on Microsoft's server(s) and accessed through a personalized account? (similar to a photobucket account?) I've researched the...