D
David W
I have got an issue with an mda/mde form.
Everything works fine on my pc, but when I install the mde(have tried the
mda also) on another pc I get the problem of ,
I have got a few forms that open another form to show the detail of the main
record. When I open any of the forms that open from another form ,I get a
blank record.
Before I was using
DoCmd.OpenForm "cview", , , "[po] = [Forms]![po1].[ppo1]![po]"
to open the second form
This morning I went back and changed it to
Docmd.OpenForm "cview"
Forms.cpurchase.Filter = "[po] = [Forms]![po1].[ppo1]![po]"
Forms.cpurchase.FilterOn = True
to open the second form
A little while ago, I changed to a query for the forms filter and used
criteria from the main form to set the query by. I used
Docmd.openform "cview"
forms!cview.recordsoucre = "myquery"
to open the second form
None of these will work on other pc's, but I have no problem on mine.
It is all of the forms that use a second popup to show any information
Can someone point me in the right direction?
Everything works fine on my pc, but when I install the mde(have tried the
mda also) on another pc I get the problem of ,
I have got a few forms that open another form to show the detail of the main
record. When I open any of the forms that open from another form ,I get a
blank record.
Before I was using
DoCmd.OpenForm "cview", , , "[po] = [Forms]![po1].[ppo1]![po]"
to open the second form
This morning I went back and changed it to
Docmd.OpenForm "cview"
Forms.cpurchase.Filter = "[po] = [Forms]![po1].[ppo1]![po]"
Forms.cpurchase.FilterOn = True
to open the second form
A little while ago, I changed to a query for the forms filter and used
criteria from the main form to set the query by. I used
Docmd.openform "cview"
forms!cview.recordsoucre = "myquery"
to open the second form
None of these will work on other pc's, but I have no problem on mine.
It is all of the forms that use a second popup to show any information
Can someone point me in the right direction?