sql - Filter/Parameter in VB -
i once search on google on how make parameter report viewer in vb , got this.
so, followed step-by-step process on how it. seems fine after make parameter on 1 value has money data type on sql database.
without having value(one money data type) result :

but error if add :

this codes used parameter:

and did can apply parameter make print using report viewer :
private sub button1_click(byval sender system.object, byval e system.eventargs) handles button1.click printall.show() printall.txtid.text = txtid.text printall.txtfname.text = txtpfname.text printall.txtlname.text = txtplname.text printall.txtmi.text = txtmi.text printall.txtsex.text = txtsex.text printall.txtstatus.text = txtstatus.text printall.txttelno.text = txttel.text printall.txtdocid.text = txtpdoc.text printall.txtstreetno.text = txtstreetno.text printall.txtstreetname.text = txtstreetname.text printall.txtprovince.text = txtprovince.text printall.txtcity.text = txtcity.text printall.txtbrgy.text = txtbrgy.text printall.txtfnamekin.text = txtfnamekin.text printall.txtlnamekin.text = txtlnamekin.text printall.txtmikin.text = txtmikin.text printall.txtrelation.text = txtrelationkin.text printall.txttotaldue.text = txttotaldue.text end sub how fix it? how add totaldue report viewer? can me one?
Comments
Post a Comment