473,407 Members | 2,306 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,407 software developers and data experts.

How to change the RowSource in a SubReport

Dear reader,

The syntax for the VBA code to change the RowSource of a Master Report is:

Me.RowSource = "TableOrQueryName"

But now the syntax to change the RowSource of a SubReport:

I think it has to be something like this:

Reports.MasterReportName.SubReportName.RowSource =
"TableOrQueryName"

But this is not working.

Is there a working syntax for this?

Tanks for any help.

Kind regards,

Simon
Oct 7 '07 #1
11 7423
I assume you mean RecordSource, not RowSource. The syntax would be:

Reports!MasterReportName!SubReportControlName.Repo rt.Recordsource =
"asdfadsf"

You're actually referring to the "Report" property of the subreport control,
and then the RecordSource property of that report.
"Simon" <Sv********@Versatel.nlwrote in message
news:47***********************@news.tele2.nl...
Dear reader,

The syntax for the VBA code to change the RowSource of a Master Report is:

Me.RowSource = "TableOrQueryName"

But now the syntax to change the RowSource of a SubReport:

I think it has to be something like this:

Reports.MasterReportName.SubReportName.RowSource =
"TableOrQueryName"

But this is not working.

Is there a working syntax for this?

Tanks for any help.

Kind regards,

Simon


Oct 7 '07 #2
"Simon" <Sv********@Versatel.nlwrote in message
news:47***********************@news.tele2.nl...
Dear reader,

The syntax for the VBA code to change the RowSource of a Master Report is:

Me.RowSource = "TableOrQueryName"

But now the syntax to change the RowSource of a SubReport:

I think it has to be something like this:

Reports.MasterReportName.SubReportName.RowSource =
"TableOrQueryName"

But this is not working.

Is there a working syntax for this?

Tanks for any help.

Kind regards,

Simon
Reports!MasterReportName.SubReportName.Report.RowS ource ="TableOrQueryName"

Notice the addition of the word Report. This instructs Access to refer to
the report itself, not the subreport control that 'hosts' it.


Oct 7 '07 #3
If I use the syntax:
Reports!MasterReportName!SubReportControlName.Repo rt.Recordsource =
"asdfadsf"

I receive the Run-time error '2455'
You entered an expression that has an invalid reference to the property
Form/Report.

And I have checked the names of the master en sub for report several times
and they are correct.
What can by wrong?
"Neil" <no****@nospam.netschreef in bericht
news:QW*****************@newssvr19.news.prodigy.ne t...
I assume you mean RecordSource, not RowSource. The syntax would be:

Reports!MasterReportName!SubReportControlName.Repo rt.Recordsource =
"asdfadsf"

You're actually referring to the "Report" property of the subreport
control,
and then the RecordSource property of that report.
"Simon" <Sv********@Versatel.nlwrote in message
news:47***********************@news.tele2.nl...
Dear reader,

The syntax for the VBA code to change the RowSource of a Master Report
is:

Me.RowSource = "TableOrQueryName"

But now the syntax to change the RowSource of a SubReport:

I think it has to be something like this:

Reports.MasterReportName.SubReportName.RowSource =
"TableOrQueryName"

But this is not working.

Is there a working syntax for this?

Tanks for any help.

Kind regards,

Simon


Oct 7 '07 #4
The syntax is correct, but Access won't let you change the subreport's
recordsource after it's opened in the main report (was thinking of changing
other properties of a subreport when I wrote that).

So what you need to do is change the subreport's recordsource property from
within its own OnOpen event, rather than the parent report's OnOpen event.
You should be able to just go:

Me.Recordsource = "adfasdf"

in the subreport's OnOpen event.
"Simon" <Sv********@Versatel.nlwrote in message
news:47***********************@news.tele2.nl...
If I use the syntax:
Reports!MasterReportName!SubReportControlName.Repo rt.Recordsource =
"asdfadsf"

I receive the Run-time error '2455'
You entered an expression that has an invalid reference to the property
Form/Report.

And I have checked the names of the master en sub for report several times
and they are correct.
What can by wrong?
"Neil" <no****@nospam.netschreef in bericht
news:QW*****************@newssvr19.news.prodigy.ne t...
>I assume you mean RecordSource, not RowSource. The syntax would be:

Reports!MasterReportName!SubReportControlName.Rep ort.Recordsource =
"asdfadsf"

You're actually referring to the "Report" property of the subreport
control,
>and then the RecordSource property of that report.
"Simon" <Sv********@Versatel.nlwrote in message
news:47***********************@news.tele2.nl...
Dear reader,

The syntax for the VBA code to change the RowSource of a Master Report
is:
>
Me.RowSource = "TableOrQueryName"

But now the syntax to change the RowSource of a SubReport:

I think it has to be something like this:

Reports.MasterReportName.SubReportName.RowSource =
"TableOrQueryName"

But this is not working.

Is there a working syntax for this?

Tanks for any help.

Kind regards,

Simon




Oct 7 '07 #5
If I do so, change the subreport's recordsource in his own subreport's
recordsource in his own OnOpen event the next message pop's up:
"You can't set the record source property in print preview or after printing
has started."

And in case I change the query name to a not existing one the following
message pop's up:
"The record source "NotExistingQuery" specified on this form or report does
not exist."
So that means that the sytax is running.

But still a can't change the recordsource of the subreport.

"Neil" <no****@nospam.netschreef in bericht
news:fC*****************@newssvr19.news.prodigy.ne t...
The syntax is correct, but Access won't let you change the subreport's
recordsource after it's opened in the main report (was thinking of
changing
other properties of a subreport when I wrote that).

So what you need to do is change the subreport's recordsource property
from
within its own OnOpen event, rather than the parent report's OnOpen event.
You should be able to just go:

Me.Recordsource = "adfasdf"

in the subreport's OnOpen event.
"Simon" <Sv********@Versatel.nlwrote in message
news:47***********************@news.tele2.nl...
If I use the syntax:
Reports!MasterReportName!SubReportControlName.Repo rt.Recordsource =
"asdfadsf"

I receive the Run-time error '2455'
You entered an expression that has an invalid reference to the property
Form/Report.

And I have checked the names of the master en sub for report several
times
and they are correct.
What can by wrong?
"Neil" <no****@nospam.netschreef in bericht
news:QW*****************@newssvr19.news.prodigy.ne t...
I assume you mean RecordSource, not RowSource. The syntax would be:

Reports!MasterReportName!SubReportControlName.Repo rt.Recordsource =
"asdfadsf"

You're actually referring to the "Report" property of the subreport
control,
and then the RecordSource property of that report.
"Simon" <Sv********@Versatel.nlwrote in message
news:47***********************@news.tele2.nl...
Dear reader,

The syntax for the VBA code to change the RowSource of a Master
Report
is:

Me.RowSource = "TableOrQueryName"

But now the syntax to change the RowSource of a SubReport:

I think it has to be something like this:

Reports.MasterReportName.SubReportName.RowSource =
"TableOrQueryName"

But this is not working.

Is there a working syntax for this?

Tanks for any help.

Kind regards,

Simon





Oct 8 '07 #6
On Oct 8, 1:00 am, "Simon" <SvanBee...@Versatel.nlwrote:
If I do so, change the subreport's recordsource in his own subreport's
recordsource in his own OnOpen event the next message pop's up:
"You can't set the record source property in print preview or after printing
has started."
You might try setting the sub-report's RecordSource in its module to a
Public Function as:
*****************
Private Sub Report_Open(Cancel As Integer)
Me.RecordSource = ShippersRecordSource()
End Sub
*****************

To open specify the Sub_Reports RecordSource while opening the Parent
Report you could use code in a Standard Module such as:
*****************
Dim mShippersRecordSource$

Public Sub OpenShippersParentReport(ByVal vRecordSource$)
mShippersRecordSource = vRecordSource
DoCmd.OpenReport "ShippersParentReport", acViewPreview
End Sub

Public Function ShippersRecordSource$()
ShippersRecordSource = mShippersRecordSource
End Function
*****************

You could then call the code with
*****************
Public Sub TestOpenShippersParentReport()
OpenShippersParentReport "SELECT * FROM Shippers WHERE CompanyName
LIKE 'S*'"
End Sub
*****************

Oct 8 '07 #7
I don't experience that. I'm using Access 2000, and, changing the
recordsource in the subreport's OnOpen event with the syntax:

Me.Recordsource = "TableOrQueryName"

changes it to that table or query and doesn't produce an error.

What version of Access are you in?
"Simon" <Sv********@Versatel.nlwrote in message
news:47**********************@news.tele2.nl...
If I do so, change the subreport's recordsource in his own subreport's
recordsource in his own OnOpen event the next message pop's up:
"You can't set the record source property in print preview or after
printing
has started."

And in case I change the query name to a not existing one the following
message pop's up:
"The record source "NotExistingQuery" specified on this form or report
does
not exist."
So that means that the sytax is running.

But still a can't change the recordsource of the subreport.

"Neil" <no****@nospam.netschreef in bericht
news:fC*****************@newssvr19.news.prodigy.ne t...
>The syntax is correct, but Access won't let you change the subreport's
recordsource after it's opened in the main report (was thinking of
changing
>other properties of a subreport when I wrote that).

So what you need to do is change the subreport's recordsource property
from
>within its own OnOpen event, rather than the parent report's OnOpen
event.
You should be able to just go:

Me.Recordsource = "adfasdf"

in the subreport's OnOpen event.
"Simon" <Sv********@Versatel.nlwrote in message
news:47***********************@news.tele2.nl...
If I use the syntax:
Reports!MasterReportName!SubReportControlName.Repo rt.Recordsource =
"asdfadsf"

I receive the Run-time error '2455'
You entered an expression that has an invalid reference to the property
Form/Report.

And I have checked the names of the master en sub for report several
times
and they are correct.
What can by wrong?
"Neil" <no****@nospam.netschreef in bericht
news:QW*****************@newssvr19.news.prodigy.ne t...
I assume you mean RecordSource, not RowSource. The syntax would be:

Reports!MasterReportName!SubReportControlName.Rep ort.Recordsource =
"asdfadsf"

You're actually referring to the "Report" property of the subreport
control,
and then the RecordSource property of that report.
"Simon" <Sv********@Versatel.nlwrote in message
news:47***********************@news.tele2.nl...
Dear reader,

The syntax for the VBA code to change the RowSource of a Master
Report
is:

Me.RowSource = "TableOrQueryName"

But now the syntax to change the RowSource of a SubReport:

I think it has to be something like this:

Reports.MasterReportName.SubReportName.RowSource =
"TableOrQueryName"

But this is not working.

Is there a working syntax for this?

Tanks for any help.

Kind regards,

Simon




Oct 8 '07 #8
My version of Access is 2003 (11.6566.6568) SP2

"Neil" <no****@nospam.netschreef in bericht
news:o3******************@newssvr13.news.prodigy.n et...
I don't experience that. I'm using Access 2000, and, changing the
recordsource in the subreport's OnOpen event with the syntax:

Me.Recordsource = "TableOrQueryName"

changes it to that table or query and doesn't produce an error.

What version of Access are you in?
"Simon" <Sv********@Versatel.nlwrote in message
news:47**********************@news.tele2.nl...
If I do so, change the subreport's recordsource in his own subreport's
recordsource in his own OnOpen event the next message pop's up:
"You can't set the record source property in print preview or after
printing
has started."

And in case I change the query name to a not existing one the following
message pop's up:
"The record source "NotExistingQuery" specified on this form or report
does
not exist."
So that means that the sytax is running.

But still a can't change the recordsource of the subreport.

"Neil" <no****@nospam.netschreef in bericht
news:fC*****************@newssvr19.news.prodigy.ne t...
The syntax is correct, but Access won't let you change the subreport's
recordsource after it's opened in the main report (was thinking of
changing
other properties of a subreport when I wrote that).

So what you need to do is change the subreport's recordsource property
from
within its own OnOpen event, rather than the parent report's OnOpen
event.
You should be able to just go:

Me.Recordsource = "adfasdf"

in the subreport's OnOpen event.
"Simon" <Sv********@Versatel.nlwrote in message
news:47***********************@news.tele2.nl...
If I use the syntax:
Reports!MasterReportName!SubReportControlName.Repo rt.Recordsource =
"asdfadsf"

I receive the Run-time error '2455'
You entered an expression that has an invalid reference to the
property
Form/Report.

And I have checked the names of the master en sub for report several
times
and they are correct.
What can by wrong?
"Neil" <no****@nospam.netschreef in bericht
news:QW*****************@newssvr19.news.prodigy.ne t...
I assume you mean RecordSource, not RowSource. The syntax would be:

Reports!MasterReportName!SubReportControlName.Repo rt.Recordsource =
"asdfadsf"

You're actually referring to the "Report" property of the subreport
control,
and then the RecordSource property of that report.
"Simon" <Sv********@Versatel.nlwrote in message
news:47***********************@news.tele2.nl...
Dear reader,

The syntax for the VBA code to change the RowSource of a Master
Report
is:

Me.RowSource = "TableOrQueryName"

But now the syntax to change the RowSource of a SubReport:

I think it has to be something like this:

Reports.MasterReportName.SubReportName.RowSource =
"TableOrQueryName"

But this is not working.

Is there a working syntax for this?

Tanks for any help.

Kind regards,

Simon







Oct 8 '07 #9
I really don't understand then. Thought perhaps you had an older version of
Access.

Do you have anything else going on in the Open events in the main report or
subreport? If so, then please post that code.

Other than that, I'm not sure why it would be doing that.
"Simon" <Sv********@Versatel.nlwrote in message
news:47***********************@news.tele2.nl...
My version of Access is 2003 (11.6566.6568) SP2

"Neil" <no****@nospam.netschreef in bericht
news:o3******************@newssvr13.news.prodigy.n et...
>I don't experience that. I'm using Access 2000, and, changing the
recordsource in the subreport's OnOpen event with the syntax:

Me.Recordsource = "TableOrQueryName"

changes it to that table or query and doesn't produce an error.

What version of Access are you in?
"Simon" <Sv********@Versatel.nlwrote in message
news:47**********************@news.tele2.nl...
If I do so, change the subreport's recordsource in his own subreport's
recordsource in his own OnOpen event the next message pop's up:
"You can't set the record source property in print preview or after
printing
has started."

And in case I change the query name to a not existing one the following
message pop's up:
"The record source "NotExistingQuery" specified on this form or report
does
not exist."
So that means that the sytax is running.

But still a can't change the recordsource of the subreport.

"Neil" <no****@nospam.netschreef in bericht
news:fC*****************@newssvr19.news.prodigy.ne t...
The syntax is correct, but Access won't let you change the subreport's
recordsource after it's opened in the main report (was thinking of
changing
other properties of a subreport when I wrote that).

So what you need to do is change the subreport's recordsource property
from
within its own OnOpen event, rather than the parent report's OnOpen
event.
You should be able to just go:

Me.Recordsource = "adfasdf"

in the subreport's OnOpen event.
"Simon" <Sv********@Versatel.nlwrote in message
news:47***********************@news.tele2.nl...
If I use the syntax:
Reports!MasterReportName!SubReportControlName.Repo rt.Recordsource =
"asdfadsf"

I receive the Run-time error '2455'
You entered an expression that has an invalid reference to the
property
Form/Report.

And I have checked the names of the master en sub for report several
times
and they are correct.
What can by wrong?
"Neil" <no****@nospam.netschreef in bericht
news:QW*****************@newssvr19.news.prodigy.ne t...
I assume you mean RecordSource, not RowSource. The syntax would be:

Reports!MasterReportName!SubReportControlName.Rep ort.Recordsource =
"asdfadsf"

You're actually referring to the "Report" property of the subreport
control,
and then the RecordSource property of that report.
"Simon" <Sv********@Versatel.nlwrote in message
news:47***********************@news.tele2.nl...
Dear reader,

The syntax for the VBA code to change the RowSource of a Master
Report
is:

Me.RowSource = "TableOrQueryName"

But now the syntax to change the RowSource of a SubReport:

I think it has to be something like this:

Reports.MasterReportName.SubReportName.RowSource =
"TableOrQueryName"

But this is not working.

Is there a working syntax for this?

Tanks for any help.

Kind regards,

Simon






Oct 9 '07 #10
I had no other code in the main and sub report as the

Me.RecourdSource = "QueryX" in OnOpen event of the MainReport

And

Me.RecourdSource = "QueryY" in OnOpen event of the SubReport

My coal was to avoid the situation that I need for each filter (query with
selection criteria) a different report.

So I have to change the RecordSource of the main and SubReport by checking
which query has to be filled out as RecordSource. But before I write this
code in the OnOpen of the MainReport I did a test of it works to change the
RecordSource in the MainReport and SubReport. And it came out that it works
in the Main Report and it dos not work in the SubReport. And because of this
I have now 6 the same reports with different selection queries as
RecordSource.

"Neil" <no****@nospam.netschreef in bericht
news:3w*******************@newssvr29.news.prodigy. net...
I really don't understand then. Thought perhaps you had an older version
of
Access.

Do you have anything else going on in the Open events in the main report
or
subreport? If so, then please post that code.

Other than that, I'm not sure why it would be doing that.
"Simon" <Sv********@Versatel.nlwrote in message
news:47***********************@news.tele2.nl...
My version of Access is 2003 (11.6566.6568) SP2

"Neil" <no****@nospam.netschreef in bericht
news:o3******************@newssvr13.news.prodigy.n et...
I don't experience that. I'm using Access 2000, and, changing the
recordsource in the subreport's OnOpen event with the syntax:

Me.Recordsource = "TableOrQueryName"

changes it to that table or query and doesn't produce an error.

What version of Access are you in?
"Simon" <Sv********@Versatel.nlwrote in message
news:47**********************@news.tele2.nl...
If I do so, change the subreport's recordsource in his own
subreport's
recordsource in his own OnOpen event the next message pop's up:
"You can't set the record source property in print preview or after
printing
has started."

And in case I change the query name to a not existing one the
following
message pop's up:
"The record source "NotExistingQuery" specified on this form or
report
does
not exist."
So that means that the sytax is running.

But still a can't change the recordsource of the subreport.

"Neil" <no****@nospam.netschreef in bericht
news:fC*****************@newssvr19.news.prodigy.ne t...
The syntax is correct, but Access won't let you change the
subreport's
recordsource after it's opened in the main report (was thinking of
changing
other properties of a subreport when I wrote that).

So what you need to do is change the subreport's recordsource
property
from
within its own OnOpen event, rather than the parent report's OnOpen
event.
You should be able to just go:

Me.Recordsource = "adfasdf"

in the subreport's OnOpen event.
"Simon" <Sv********@Versatel.nlwrote in message
news:47***********************@news.tele2.nl...
If I use the syntax:
Reports!MasterReportName!SubReportControlName.Repo rt.Recordsource
=
"asdfadsf"

I receive the Run-time error '2455'
You entered an expression that has an invalid reference to the
property
Form/Report.

And I have checked the names of the master en sub for report
several
times
and they are correct.
What can by wrong?
"Neil" <no****@nospam.netschreef in bericht
news:QW*****************@newssvr19.news.prodigy.ne t...
I assume you mean RecordSource, not RowSource. The syntax would
be:
>
Reports!MasterReportName!SubReportControlName.Repo rt.Recordsource
=
"asdfadsf"

You're actually referring to the "Report" property of the
subreport
control,
and then the RecordSource property of that report.
"Simon" <Sv********@Versatel.nlwrote in message
news:47***********************@news.tele2.nl...
Dear reader,

The syntax for the VBA code to change the RowSource of a Master
Report
is:

Me.RowSource = "TableOrQueryName"

But now the syntax to change the RowSource of a SubReport:

I think it has to be something like this:

Reports.MasterReportName.SubReportName.RowSource =
"TableOrQueryName"

But this is not working.

Is there a working syntax for this?

Tanks for any help.

Kind regards,

Simon









Oct 9 '07 #11
OK, let's back up a second. You say that you're just trying to apply query
with selection criteria to your report? You should be able to do that
without changing the recordsource. Just place criteria in your query which
refers to the form that you are using for your selection criteria.

Post a description of the form you're using for selection criteria, along
with the form name and the names of the controls on the form, and I'll show
you how to set that up. You shouldn't have to change the recordsource at
all.

But...... if you did want to change the recordsource, and it's not working
in the On Open event, you could always open the report in Design mode,
change the recordsource, and then open in Preview mode. But I don't think
that's the best way to go. Better is just to apply your criteria on the fly.

So, post the above info, and we'll go from there.

"Simon" <Sv********@Versatel.nlwrote in message
news:47***********************@news.tele2.nl...
>I had no other code in the main and sub report as the

Me.RecourdSource = "QueryX" in OnOpen event of the
MainReport

And

Me.RecourdSource = "QueryY" in OnOpen event of the SubReport

My coal was to avoid the situation that I need for each filter (query with
selection criteria) a different report.

So I have to change the RecordSource of the main and SubReport by checking
which query has to be filled out as RecordSource. But before I write this
code in the OnOpen of the MainReport I did a test of it works to change
the
RecordSource in the MainReport and SubReport. And it came out that it
works
in the Main Report and it dos not work in the SubReport. And because of
this
I have now 6 the same reports with different selection queries as
RecordSource.

"Neil" <no****@nospam.netschreef in bericht
news:3w*******************@newssvr29.news.prodigy. net...
>I really don't understand then. Thought perhaps you had an older version
of
>Access.

Do you have anything else going on in the Open events in the main report
or
>subreport? If so, then please post that code.

Other than that, I'm not sure why it would be doing that.
"Simon" <Sv********@Versatel.nlwrote in message
news:47***********************@news.tele2.nl...
My version of Access is 2003 (11.6566.6568) SP2

"Neil" <no****@nospam.netschreef in bericht
news:o3******************@newssvr13.news.prodigy.n et...
I don't experience that. I'm using Access 2000, and, changing the
recordsource in the subreport's OnOpen event with the syntax:

Me.Recordsource = "TableOrQueryName"

changes it to that table or query and doesn't produce an error.

What version of Access are you in?
"Simon" <Sv********@Versatel.nlwrote in message
news:47**********************@news.tele2.nl...
If I do so, change the subreport's recordsource in his own
subreport's
recordsource in his own OnOpen event the next message pop's up:
"You can't set the record source property in print preview or after
printing
has started."

And in case I change the query name to a not existing one the
following
message pop's up:
"The record source "NotExistingQuery" specified on this form or
report
does
not exist."
So that means that the sytax is running.

But still a can't change the recordsource of the subreport.

"Neil" <no****@nospam.netschreef in bericht
news:fC*****************@newssvr19.news.prodigy.ne t...
The syntax is correct, but Access won't let you change the
subreport's
>recordsource after it's opened in the main report (was thinking of
changing
other properties of a subreport when I wrote that).

So what you need to do is change the subreport's recordsource
property
from
within its own OnOpen event, rather than the parent report's OnOpen
event.
You should be able to just go:

Me.Recordsource = "adfasdf"

in the subreport's OnOpen event.
"Simon" <Sv********@Versatel.nlwrote in message
news:47***********************@news.tele2.nl...
If I use the syntax:
Reports!MasterReportName!SubReportControlName.Repo rt.Recordsource
=
"asdfadsf"

I receive the Run-time error '2455'
You entered an expression that has an invalid reference to the
property
Form/Report.

And I have checked the names of the master en sub for report
several
times
and they are correct.
What can by wrong?
"Neil" <no****@nospam.netschreef in bericht
news:QW*****************@newssvr19.news.prodigy.ne t...
I assume you mean RecordSource, not RowSource. The syntax would
be:
>>
Reports!MasterReportName!SubReportControlName.Rep ort.Recordsource
=
>"asdfadsf"

You're actually referring to the "Report" property of the
subreport
control,
and then the RecordSource property of that report.
"Simon" <Sv********@Versatel.nlwrote in message
news:47***********************@news.tele2.nl...
Dear reader,

The syntax for the VBA code to change the RowSource of a
Master
Report
is:

Me.RowSource = "TableOrQueryName"

But now the syntax to change the RowSource of a SubReport:

I think it has to be something like this:

Reports.MasterReportName.SubReportName.RowSource =
"TableOrQueryName"

But this is not working.

Is there a working syntax for this?

Tanks for any help.

Kind regards,

Simon








Oct 10 '07 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: dixie | last post by:
I have a report with a subreport. The source object for this subreport varies according to the value of a field in a table. I am trying to programmatically set the object source for the subreport...
7
by: Nicolae Fieraru | last post by:
Hi All, I am trying to change the rowsource of a combobox when I click on it. I played with many events, associated with the form and the combobox, but still haven't figured out what is the way...
8
by: bbdata | last post by:
ok i have a problem here and not much time to play round. have a form bound to a table. one of the combos is bound to a field Agents. i have active and retired agents. thing is, i want to be able...
3
by: lorirobn | last post by:
Hello, I have a report which uses a subreport. When I run the report, I get "Enter Parameter Value" error message for "tblGuestRoom". I click ok and the report seems to work fine. I...
8
by: | last post by:
hi, i have a form on which a user can choose specific criteria such as dates etc, in order to filter the report that is called from the form. i do this by using the Where section of the...
8
by: Maxi | last post by:
Hello, i'm sorry my bad english :( I have CR9 Webservice, how to change databadse name and User_name into Webservice method? (not Viewer Control) Tks!! -- --------------------------
8
by: Simon | last post by:
Dear reader, The syntax for the VBA code to change the RowSource of a Form is: Forms!FormName..RowSource = "TableOrQueryName"
3
by: Simon | last post by:
Dear reader, The syntax for the VBA code to change the RecordSource of a Master Report is: Me.RecordSource = "TableOrQueryName"
3
by: Simon van Beek | last post by:
Dear reader, How to change the RecordSource for a subReport. For forms the syntaxes is:
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.