> Hi, I have a table "Value".
> Sometime it has zeros and sometimes ones.
[quoted text clipped - 19 lines]
>
> Thank you for your help as usual!!
By the way, "Value" is a sql reserved word, so maybe you ought to name your
table "tblValue". Early on, I got in the habit of adopting naming
conventions on all the objects in my dbs, like frm for frm, rpt for report,
qry for queries, etc.
Damon
> dim ct as integer
> ct= nz(dcount("yourfield","Value","yourfield= 1"),0)
[quoted text clipped - 27 lines]
>>
>> Thank you for your help as usual!!
magickarle - 29 May 2008 15:44 GMT
> By the way, "Value" is a sql reserved word, so maybe you ought to name your
> table "tblValue". Early on, I got in the habit of adopting naming
[quoted text clipped - 36 lines]
>
> - Show quoted text -
Thank you for your reply!
Working A1.
thanks a bunch.
I got another question with the same previous example:
Would it be possible to rename the buttons based on the items value.
Ex:I got buton1 named buton1 and buton2 named buton2
I got item 0 and 1 (in the same table "Value" as previous example)
Thank you again