Carlosdl
32725 pts. | Nov 20 2009 6:50PM GMT
I have never worked with access, but it seems to me that your message boxes are not helping at all, because you are displaying information from the combos the procedure receives as parameters, but in the rest of your code you are not using them.
In other words, inside the procedure:
frmName!cboLast <> cboLast
If you are going to use the combos this way (in the case that that is possible, which I don’t really know) inside the procedure:
frmName!cboLast
Then you should not need to send them as parameters to the procedure (and vice versa).
McNitro
190 pts. | Nov 20 2009 9:20PM GMT
But I think the message boxes are showing me the information I want to use. When I run the code the message boxes provide me with the following:
MsgBox <a href="http://cboFirst.Name" title="http://cboFirst. " target="_blank">cboFirst.Name</a> = cboFirstName
MsgBox <a href="http://cboLast.Name" title="http://cboLast. " target="_blank">cboLast.Name</a> = cboLastName
MsgBox <a href="http://cboFull.Name" title="http://cboFull. " target="_blank">cboFull.Name</a> = cboContactName
MsgBox <a href="http://frmName.Name" title="http://frmName. " target="_blank">frmName.Name</a> = ProjectLogin
So…
Shouldn’t frmName!cboLast = Form(ProjectLogin)!cboLastName ????
McNitro
190 pts. | Nov 20 2009 9:24PM GMT
Sorry…forgot to use the text editor. One of those days. ![]()
My message boxes give me the following:
MsgBox <a href="http://cboFirst.Name" title="http://cboFirst. " target="_blank">cboFirst.Name</a> = cboFirstName MsgBox <a href="http://cboLast.Name" title="http://cboLast. " target="_blank">cboLast.Name</a> = cboLastName MsgBox <a href="http://cboFull.Name" title="http://cboFull. " target="_blank">cboFull.Name</a> = cboContactName MsgBox <a href="http://frmName.Name" title="http://frmName. " target="_blank">frmName.Name</a> = ProjectLogin
McNitro
190 pts. | Nov 20 2009 9:25PM GMT
Ugh…still trying to figure out these message boards. Sorry
Carlosdl
32725 pts. | Nov 20 2009 9:47PM GMT
Shouldn’t frmName!cboLast = Form(ProjectLogin)!cboLastName ????
I don’t think so.
cboLast = Form(ProjectLogin)!cboLastName
and
frmName!cboLastName = Form(ProjectLogin)!cboLastName
But I guess frmName!cboLast doesn’t exist.






