473,795 Members | 2,839 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Form1 to open Form2 with same records in form1?

46 New Member
Okay lets see if I can do this with out confusing myself or others. First I will give ALL the details then state my problem and request at the bottom.

Tables:

tblContacts
ID
Company
LastName
FirstName
Initial
E-MailAddress
JobTitle
BuisnessPhone
HomePhone
MobilePhone
faxNumber
Address
City
State/Province
Zip/PostalCode
UserName (PK)
ChargeCode (FK)
LocationCode (FK)

tblAssets
ID (PK)
AssetNumber
SerialNumber
ComputerName
DeploymentDate
Active
UserName (FK)
OfficeName (FK)
OSName (FK)
ModelName (FK)

tblModel
ModelID (PK)
ModelName

tblOSVersion
OSName (PK)

tblOfficeVersio n
OfficeID (PK)
OfficeName

tblLocation
LocationCode (PK)

tblChargeCode
ChargeCode (PK)

** Referential Integrity is Enforced on All tables**

Query1
Expand|Select|Wrap|Line Numbers
  1. SELECT IIf(IsNull([LastName]),IIf(IsNull([FirstName]),[Company],[FirstName]),IIf(IsNull([FirstName]),[LastName],[LastName] & ", " & [FirstName])) AS [File As], IIf(IsNull([LastName]),IIf(IsNull([FirstName]),[Company],[FirstName]),IIf(IsNull([FirstName]),[LastName],[FirstName] & " " & [LastName])) AS [Contact Name], tblContacts.*
  2. FROM tblContacts
  3. ORDER BY IIf(IsNull([LastName]),IIf(IsNull([FirstName]),[Company],[FirstName]),IIf(IsNull([FirstName]),[LastName],[LastName] & ", " & [FirstName])), IIf(IsNull([LastName]),IIf(IsNull([FirstName]),[Company],[FirstName]),IIf(IsNull([FirstName]),[LastName],[FirstName] & " " & [LastName]));
  4.  
Query5
Expand|Select|Wrap|Line Numbers
  1. SELECT tblContacts.LastName+' '+tblContacts.FirstName+', '+tblContacts.Initial AS Expr1, tblContacts.UserName, tblAssets.ComputerName, tblContacts.LocationCode, tblContacts.ChargeCode, tblAssets.AssetNumber, tblAssets.SerialNumber, tblContacts.[E-mailAddress], tblContacts.JobTitle, tblContacts.BusinessPhone, tblContacts.Address, tblContacts.City, tblContacts.[State/Province], tblContacts.[ZIP/Postal Code], tblOfficeVersion.OfficeName, tblAssets.OSName, tblModel.ModelName
  2. FROM tblOfficeVersion INNER JOIN (tblModel INNER JOIN (tblContacts INNER JOIN tblAssets ON tblContacts.UserName = tblAssets.UserName) ON tblModel.ModelID = tblAssets.ModelName) ON tblOfficeVersion.OfficeID = tblAssets.OfficeName;
  3.  
Forms (only listing three i am concerned with for question)

frmSearchUsers
Record Source: Query1
Fields:
txtFileAs
txtContactName
txtID
txtCompany
txtLastName
txtFirstName
txtInitial
txtE-MailAddress
txtJobTitle
txtBuisnessPhon e
txtHomePhone
txtMobilePhone
txtfaxNumber
txtAddress
txtCity
txtState/Province
txtZip/PostalCode
txtUserName (PK)
txtChargeCode (FK)
txtLocationCode (FK)

frmAssets
txtAssetNumber
txtSerialNumber
txtComputerName
txtDeploymentDa te
txtActive
txtUserName (FK)
txtOfficeName (FK)
txtOSName (FK)
txtModelName (FK)

frmSystemPrepCh ecklist
Record Source:
Expand|Select|Wrap|Line Numbers
  1. SELECT tblContacts.[LastName], tblContacts.[FirstName], tblContacts.[ChargeCode], tblContacts.[BusinessPhone], tblContacts.[UserName], tblAssets.[AssetNumber], tblAssets.[SerialNumber], tblAssets.[ModelName], tblAssets.[ComputerName] FROM tblContacts LEFT JOIN tblAssets ON tblContacts.UserName=tblAssets.[UserName]; 
  2.  
Fields:
txtLastName
txtFirstName
txtUserId
txtComputerName
cboModelName
txtAssetNumber
txtSerialNumber
txtBuisnessPhon e
txtChargeCode

Okay so here si the deal. The user will open "frmAssets and will enter in new data to the fileds and save form and return to switchboard then will open "frmSearchU ser" and either search for current user or will enter new user infor by using cmdAddFromOutlo ok button. Then pick user they want to add and push okay then search for user in list and then the text boxes are popualted with user info. There is a button "cmdSystemPrepC hecklist", upon clicking this it will open the frmSystemPrepCh ecklist.

What happens is when the frmSystemPrepCh ecklist opens it automatically open to the first record, then you have to go down to the record selector at the bottom of the form and run a search for who you are looking for. What I want it to do is, I want the frmSystemPrepCh ecklist to open with the same user information that was in the prevous form, frmSearchUsers.
I tried the following code:
Expand|Select|Wrap|Line Numbers
  1. Private Sub Command57_Click()
  2. Dim stDocName As String
  3. Dim strLastName, strUserName, strFirstName, strModelName, strComputerName As String
  4. Dim strChargeCode, strBusinessPhone, strAssetNumber, strSerialNumber As String
  5. stDocName = "frmSystemPrepChecklist"
  6.  
  7. 'Store the calling form's (frmSearchUsers) Lastname, FirstName and
  8. 'UserName, ModelName, ComputerName, AssetNumber, SerialNumber
  9. 'and ChargeCode, to add to new reocrd in 'frmSystemPrepChecklist', if needed
  10. strLastName = Me!LastName
  11. strUserName = Me!UserName
  12. strFirstName = Me!FirstName
  13. strModelName = Me!ModelName
  14. strComputerName = Me!ComputerName
  15. strChargeCode = Me!ChargeCode
  16. strBusinessPhone = Me!BusinessPhone
  17. strAssetNumber = Me!AssetNumber
  18. strSerialNumber = Me!SerialNumber
  19.  
  20. 'Open "frmSystemPrepChecklist", goto the matching UserName field, and set the focus to it.
  21. 'Note: the strUserName at the end of the following line is the OpenArgs property.
  22. 'It is the UserNmae I wish to locate in 'frmSystemPrepChecklist' and is by the DoCmd.FindRecord
  23. DoCmd.OpenForm stDocName, , , , acFormEdit, , strUserName
  24. Forms!frmSystemPrepChecklist!mainUserName.SetFocus
  25.  
  26. 'Assign frmSystemPrepChecklist mainUserName to a temp variable
  27. strmainUserName = Forms!frmSystemPrepChecklist!mainUserName
  28.  
  29. 'Find the first record in table2 (frmSystemPrepChecklist,
  30. 'that matches the UserName
  31. DoCmd.FindRecord strUserName, , True, , True, , True
  32.  
  33. 'If the UserName's do not match (not found in tabel2, then
  34. 'this must be a new record so add a new record and
  35. 'populate the listed fields of 'frmSystemPrepChecklist
  36.  
  37. If strmainUserName <> strUserName Then
  38. DoCmd.GoToRecord , , acNewRec
  39. Forms!frmSystemPrepChecklist!LastName = strLastName
  40. Forms!frmSystemPrepChecklist!FirstName = strFirstName
  41. Forms!frmSystemPrepChecklist!UserName = strUserName
  42. Forms!frmSystemPrepChecklist!BusinessPhone = strBusinessPhone
  43. Forms!frmSystemPrepChecklist!ModelName = strModelName
  44. Forms!frmSystemPrepChecklist!ChargeCode = strChargeCode
  45. Forms!frmSystemPrepChecklist!ComputerName = strComputerName
  46. Forms!frmSystemPrepChecklist!AssetNumber = strAssetNumber
  47. Forms!frmSystemPrepChecklist!SerialNumber = strSerialNumber
  48. End If
  49. End Sub
  50.  
But couldn't get it to work


Help please!
Thanks,
Mar 6 '09 #1
9 3407
maxamis4
295 Recognized Expert Contributor
So let me get this correct. You want to use the first and last name to populate your data in your data base from outlook? I am getting this correct.?
Mar 9 '09 #2
vanlanjl
46 New Member
Hmm not sure if I understand your question as simple as it is. Lets see if i can clarify for you. When I push the cmdAdFromOutloo k button it opens the search window in outlook. I type in the users name I looking for then click add and it automatically adds it to my tblContacts. BUT on my form frmSearchUsers, instead of populating the fields with the NEW user that was just added it goes to the first user in the table. I want it to be populated with the user i just added.

There ia a macro running. The first one is the AddFromOutlook macro wich is built in to Access.

As it stands now the user has to go to acombo box on the form and search for the new user. When the name is selected it then fills in the fields with the correct data.


Then the user will push a button titled cmdSystemPrepCH ecklist wich will open the frmSystemPrepCh ecklist. But again the frm opens to the first record in the tblCOntacts instead of the record that is displayed in the prior form frmSearchUsers. I want the second form to open to the information displyed in the prior form.

Does that help explain it? I hopeso. Thanks for interest and resposne!
Mar 9 '09 #3
puppydogbuddy
1,923 Recognized Expert Top Contributor
If I understand you correctly, I think you made it way more complicated then you needed to. You don't want to add a new record, you just want the second form to display the same info as the search form. The openform command has an argument that allows you to place the equivalent of a where clause, so here is all you need to do. I am assuming UserName is the key to the records in both Table1 and Table2; if it isn't substitute the record key for UserName.

Don't close frmSearchUsers until you have opened the frmSystemPrepCh ecklist in your cmdSystemPrepCh ecklist_Click() event.
Expand|Select|Wrap|Line Numbers
  1. Private Sub cmdSystemPrepChecklist_Click()
  2. DoCmd.OpenForm "frmSystemPrepChecklist", , ,"[UserName] = "' & Forms!frmSearchUsers!UserName & "'"
  3. DoCmd.Close acForm, "frmSearchUsers"
  4. End Sub
  5.  
Mar 9 '09 #4
vanlanjl
46 New Member
Run-time error '3075':
Syntax error (missing operator) in Query expression '[UserName]='.

Would it be because UserName is not a field on the frmSystemPrepCh ecklist?

Doo i need to add it? and make it invisable to the user?
Mar 9 '09 #5
puppydogbuddy
1,923 Recognized Expert Top Contributor
No, I think the problem is that I have a single and double quote in the wrong order.

Change this part of line 2:
"[UserName] = "' >>> double quote, then double quote/single quote

To this: "[UserName] = '" s/b double quote, then single quote/double quote
Mar 9 '09 #6
vanlanjl
46 New Member
Expand|Select|Wrap|Line Numbers
  1. Private Sub cmdSystemPrepCheck_Click()
  2. DoCmd.OpenForm "frmSystemPrepChecklist", , , "[UserName] = "" & Forms!frmSearchUsers!UserName & """
  3. DoCmd.Close acForm, "frmSearchUsers"
  4. End Sub
  5.  
Above code will open the new form but it opens blank
Mar 9 '09 #7
puppydogbuddy
1,923 Recognized Expert Top Contributor
You did not follow the instructions I gave you.

Change this part of line 2 in the code:
>>>>>>"[UserName] = "" & Forms!frmSearch Users!UserName & """
To This:
>>>>>>"[UserName] = '" & Forms!frmSearch Users!UserName & "'"

If the above correction does not fix it, make sure UserName is a control on the form frmSearchUsers. If UserName is on the form, it should work whether the control is visible or not visible.
Mar 9 '09 #8
vanlanjl
46 New Member
ITS ALIVE!!!
lol
It works - Thanks PuppyDogBuddy!
Mar 9 '09 #9
puppydogbuddy
1,923 Recognized Expert Top Contributor
You're welcome. Glad you got it working!
Mar 9 '09 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

5
3802
by: nadir b | last post by:
hi I don't know how to change for exemple a form1 caption text from form2 don't forget that form2 has created from form1 I want sample code with c# *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it!
5
1854
by: PAPutzback | last post by:
Form2 has one purpose to open and list some names and ids. I want to handle the list box click event on form2 so I can get the selected value onto a field in form1. I changed this Dim MyForm2 As New PHfx.Form2 to With Events MyForm2 As New PHfx.Form2 and tried adding an event handler but intellisense will not show form2s objects, just the methods.
1
1909
by: Richard | last post by:
Hello there, I have a form that is called from a Sub Main procedure using application.run(Form1). On my main form there is a button to open an instance of Form2 and then at the same time hide Form1. So far so good.
5
14180
by: John | last post by:
Hi, I can't find a simple example for a simple(?) problem. I am working on an application with a variable in form1, that variable is needed in form2 for a calculation but i can't get that variable in form2. Is there a simple method (in VSexpress2005) to get that specific variable in form2? TIA,
3
5947
by: Karan | last post by:
I am calling finalize when form2 loads and deactivates form1 which closes form1. However, same thing is not happening in form2 because finalize is already called. Does anybody has solution to it. This code works well for splash screen. I searched alot on net for codes but they don't work. for example- (1) Public Sub CloseForm(formType As System.Type) For Each oForm as System.Windows.Forms.Form in me.MdiParent.MdiChildren If...
3
2482
by: R. Harris | last post by:
Hi. I have 2 forms: form1 form2 On Form2 I have a listbox and a button. When I click the button it calls a function from form1 and within that function it updates the listbox on form2. My problem is I don't see the items added to the listbox unless I use
3
3087
by: Luvin lunch | last post by:
Hi All, I have a grid (i.e. continuous form) on Form1, that opens a second form (not a subform) Form2 when the user double clicks on it. On form2 the user can save information. When the user selects Save, I want to reload Form1 because the changes in Form2 will change the order that records should appear on Form1. I have implemented this functionality as follows: Private Sub cmdSave_Click()
5
2217
by: GoGs | last post by:
HEEEELLLLLPP I hawe two Open form... Form1 and Form2 How I can from Form2 send text to textbox of Form1 //public System.Windows.Forms.TextBox textBox1; //Form1 fo = new Form1(); //fo.textbox1.Text = "something"; --Don't work
0
9673
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9522
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10443
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10216
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
7543
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6783
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5565
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3728
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2921
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.