MackMan
Registered User.
- Local time
- Today, 23:40
- Joined
- Nov 25, 2014
- Messages
- 174
Hi Guys...
I've hit a wall in regards to the Error, Method or data member not found. yet when I wrote the code, intellisense saw it, I added it , and all was well.
image attached.
What I want to happen, is click a button , btnsplit in this instance, and pass some piped open args to another form...
me.txtamount is where the error is occurring.
the odd thing is, if I play around with the openargs, and move me.txtamount to the last open args (moving it last in the receiving form too) the error then occurs at me.txtcallingform.
I've never experienced this error before, so it's a new one on me.
I've decompiled the database from run.
I've deleted the control on the form and put it back.
I've rewritten the code from scratch.
yet it still appears..
am I right in thinking the form is corrupt and needs redoing?
As always, appreciate your help.
I've hit a wall in regards to the Error, Method or data member not found. yet when I wrote the code, intellisense saw it, I added it , and all was well.
image attached.
What I want to happen, is click a button , btnsplit in this instance, and pass some piped open args to another form...
Code:
Private Sub btnSplit_Click()
Me.Dirty = False
Me.cboCategorySelect.value = "Split"
Me.cboSubCategorySelect.value = "Multiple Categories"
Me.ExpenseGroupID.Value = Me.cboSubCategorySelect.Column(1)
DoCmd.OpenForm "frmBILLS_SplitENTER", acNormal, , , acFormAdd, , Me.BillDetailTopLineID & "|" & Me.TransDate & "|" & [COLOR=darkred]Me.txtAmount[/COLOR] & "|" & Me.txtCallingForm & "|" & Me.PayeeID & "|" & Me.AccountID
End Sub
the odd thing is, if I play around with the openargs, and move me.txtamount to the last open args (moving it last in the receiving form too) the error then occurs at me.txtcallingform.
I've never experienced this error before, so it's a new one on me.
I've decompiled the database from run.
I've deleted the control on the form and put it back.
I've rewritten the code from scratch.
yet it still appears..
am I right in thinking the form is corrupt and needs redoing?
As always, appreciate your help.