View Single Post
  #1  
Old April 26th, 2007, 07:46 AM posted to microsoft.public.access.forms
Abay
external usenet poster
 
Posts: 112
Default Passing data between forms Access 2000

Hello,

I have a master/detail form with a button which when clicked displays
summary data line by line in a different form, which contains a "More"
button which when pressed should display a copy of the Master/detail form
with all the data. I have done this in another data bases (Access 98 &
2003) with no problems, but I now get no data passed back when the "More"
button is pressed.

My code is as follows:

Dim stDocName As String
Dim stLinkCriteria As String

stDocName = "FClient_and_sub_more"

stLinkCriteria = "[Cname]=" & "'" & Me![Cname] & "'"

DoCmd.OpenForm stDocName, , , stLinkCriteria

"Cname" is the key on the Master/detail form and it is present on the
Summary form. For some reason I think it is blank .. don't know how to see
its value when the code is executing, my knowledge of access code is very
limited.

Any help would be much appreciated.

Abay