Faced this problem recently, from what I coudl find in an ASP .net app crysatl cannot prompt for parameters.
You have to set the paramters at run tim before seeing the report . Try to bind your report after getting values from the user using a regular asp page with text boxes etc. when they...
Hi all.
I was trying to rename a column in a datagrid so I could pull data from different tables but use the same form/datagrid for it.
the only way that I could find to do this was at this link:
http://www.c-sharpcorner.com/Code/2003/Feb/DynamicDataGrid.asp
It describes how to add...
create a textbox (make it invisible) called (say rMonth and rYear ) in your last report.
I n both of your queries substitute the part where it asks for user input with rmonth.value and rYear.value respectively, it should just ask you once then.
I also have a question from your post: how did...
that was pretty helpfull!!
It took me a while to find it on the ms site, so
heres the direct link if anyone needs it
http://support.microsoft.com/default.aspx?scid=kb;[LN];278379
IN combo box on the subform for the ID field (USER_OBJ)
set the vllue by refereing to the value that is on the main form like so
(where Me refers to subform)
me.<idFldName>.value = Forms!["MainformName"].Forms.<objectname>.value
let me know if I havent answered your question
MrMajik: with regard to this post I have a question: you said you are creating a report entirely in code.
I am trying to do something similer but am having trouble setting the recordsource of this new report.
can you tell me how you did that?
Thanks
hi I am guessing you are trying to add new entries to a combo box and want them to show up in the drop down list.
in the after_update event of your combo box add this
Call FunctiontoInsertNewFeildInDB
Me.<comboboxname>.requery
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.