The form 'Client Records' has this record source:
SELECT [Client Record].[Client RecordID], [Client Record].LastName,
[Client Record].FirstName, [Client Record].Company, [Client
Record].Address, [Client Record].City, [Client Record].[Zip Code],
[Client Record].State, [Client Record].Country, [Client
Record].WorkPhone, [Client Record].FaxNumber, [Client
Record].EmailAddress, [Client Record].Business, [Client Record].Origin,
[Client Record].[Date Of Entry], [Client Record].Interest, [Client
Record].Other, [Client Record].[2nd Interest], [Client Record].Notes
FROM [Client Record]
WHERE ((([Client Record].Origin)=Nz([Forms]![Client
Records].[OpenArgs],"")));
When I call the form 'Client Records' from another form with
DoCmd.OpenForm "Client Records", , , , , , "Miami 2004"
I get the clients for Miami 2004 listedas I should.
When I call it with
DoCmd.OpenForm "Client Records"
I get no records. I wanted to get all the records, but I don't.
I use Winxp and Access 2003.
Regards,
Jan Nordgreen
---
My sites:
jan's diary (my diary) -
think again! (seductive math problems for the modern mind) -
mumnet (mathematical ulterior motives) -
sharealink (my favourite links) -
my bloglines (favourite rss feeds):
my other sites: http://simpler-solutions.net/jansdiary/mysites.htm
SELECT [Client Record].[Client RecordID], [Client Record].LastName,
[Client Record].FirstName, [Client Record].Company, [Client
Record].Address, [Client Record].City, [Client Record].[Zip Code],
[Client Record].State, [Client Record].Country, [Client
Record].WorkPhone, [Client Record].FaxNumber, [Client
Record].EmailAddress, [Client Record].Business, [Client Record].Origin,
[Client Record].[Date Of Entry], [Client Record].Interest, [Client
Record].Other, [Client Record].[2nd Interest], [Client Record].Notes
FROM [Client Record]
WHERE ((([Client Record].Origin)=Nz([Forms]![Client
Records].[OpenArgs],"")));
When I call the form 'Client Records' from another form with
DoCmd.OpenForm "Client Records", , , , , , "Miami 2004"
I get the clients for Miami 2004 listedas I should.
When I call it with
DoCmd.OpenForm "Client Records"
I get no records. I wanted to get all the records, but I don't.
I use Winxp and Access 2003.
Regards,
Jan Nordgreen
---
My sites:
jan's diary (my diary) -
think again! (seductive math problems for the modern mind) -
mumnet (mathematical ulterior motives) -
sharealink (my favourite links) -
my bloglines (favourite rss feeds):
my other sites: http://simpler-solutions.net/jansdiary/mysites.htm
Comment