NilovSerge
Posts: 16
|
| Posted: 11/27/2006, 10:32 AM |
|
Hallo!
I have a form with report and several params in search for.
How can I do that on loading page report is not loading datas but only when I select
some params in search form and push button "Search"?
_________________
With respect,
Nilov Serge. |
 |
 |
wkempees
|
| Posted: 11/27/2006, 3:36 PM |
|
If you mean:
Search Form presented, initialy Grid or Report is showing No Records.
If any search parameter entered, Grid/Report wiil show data.
Then set the search parameters default values to "impossible values"
For instance: a search form containing OrderNumber set to default -1
Walter
"NilovSerge" <NilovSerge@forum.codecharge> schreef in bericht
news:2456b2f2f54b53@news.codecharge.com...
> Hallo!
> I have a form with report and several params in search for.
> How can I do that on loading page report is not loading datas but only
> when I
> select
> some params in search form and push button "Search"?
>
> _________________
> With respect,
> Nilov Serge.
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
Edd
Posts: 547
|
| Posted: 11/27/2006, 5:02 PM |
|
Nilov ,
You may also want to hide the report if no records are found
See Help for example (eg in ASP)
Function NameOfControl_BeforeShow()
If NameOfControl.Recordset.EOF Then
NameOfControl.Visible = False
End If
End Function
Edd
_________________
Accepting and instigating change are life's challenges.
http://www.syntech.com.au |
 |
 |
|