Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Microsoft Access 2013 Developent

Status
Not open for further replies.

InspectorHound

Programmer
Nov 21, 2014
48
US
Hi,
I need to develop an Access application and I have not done this in about 10 years. I am using Microsoft Access 2013 and developong a desktop application since I do not have a SharePoint server. I would like to open with a search form where the user can enter three pieces of information. After he presses the search button, a dataset is returned. From this dataset, the user can select one item and get more detailed information on this item. What kind of form do I use to return the dataset (a query). And in the dataset, do I put in a link so I can call up the detailed information?

Thanks.
 
Here is the Query SQL View:
##
SELECT User_profile.[traveler last name], user_profile.[traveler SSN], Trvl_plng_athrztn.[LinkedProfileID], Trvl_plng_athrztn.[Authorized Destination City1], Trvl_plng_athrztn.[Depart Date1]
FROM Trvl_plng_athrztn INNER JOIN User_profile ON RIGHT(Trvl_plng_athrztn.LinkedProfileID, 9) = User_profile.[Traveler SSN];
##

I aslo copied my old form to create the new form that I am using. Could that be a problem? Should I delete the old form from my project? I am really getting frustrated an need to hand this in.
 
Oh -- it works! The only time I am having a problem is when I type in the last name field.
 
Why the SPACES before and after the asterisk?

Like "" * " & Me.txtLastName & " *
 
Thanks so much for your help. Now -- lets move on to the next step.Should I start a new thread or continue with this one? After the rows are returned in the detail section, I need to select one and return information from another table. what is the best way of doing that?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top