Viewing 7 posts - 1 through 7 (of 7 total)
Also,
If you have a calculation in a field such as
Balance:Invoices-Payments
you can rewrite it like this in your client
Balance:if(isnull(Invoices),0,Invoices)-if(isnull(Payments),0,Payments)
May 10, 2005 at 7:24 am
Also,
I've put break points in my code before and then removed them only to have the code break at that exact point. Usually doing a compile on the project...
May 5, 2005 at 11:51 am
I've found the solution (workaround).
I explicitly defined a DAO recordset and then set it to the form's recordset
Dim rs As DAO.Recordset
Set rs = Me.Recordset
rs.Requery
Call rs.FindFirst("[ptyrfnbr] =...
April 22, 2005 at 9:01 pm
Thanks for the info. However, to make things more fun I took the bookmark out of it.
I'm using this in the combo box with the string explicitly set
Me.RecordSource =...
April 22, 2005 at 7:28 pm
Initially none.
e.g. select * from party where ptyrfnbr = 0
Then I have a public function call GetRecords that's called by another form.
This then does a "select * from party" and...
April 22, 2005 at 11:05 am
OK. It might be the bookmark bug as well. A little more info.
If i take my form and have a rowsource of "select * from party" and then do the...
April 21, 2005 at 10:47 pm
Thank's so much for the reply. Unfortunately I tried that (but forgot to mention it).
This form is just newly opened and no deletes have occured in the form or the...
April 21, 2005 at 7:53 pm
Viewing 7 posts - 1 through 7 (of 7 total)