Make subform visible or not in report?

T

TKM

I have a subform in my report list all the comments associated with a loan
number. I am looking for a why (in my query?) to hve the Comments print or
not print depending what the user wants. I dont not have a Y/N box set up for
this. Is there a way in my query I can do this?
 
T

TKM

I messed up. I need to make the comment either print or not print. As I
stated it is embedded as a subform in the report based off its own query. Any
help would be appreciated.
 
K

Klatuu

You can use the Open event of the report to read the value in a control on
the form from which you launch the report and make the sub report control on
the report visible or not. This example uses a check box where checking the
box makes the comments visible.

Me.subComments.Visible = Forms!FormName!chkShowComments
 
T

TKM

Thanks however it is a little more complicated than that. The form has a
subform also. There is no Y/N field and the developers wont add one to the
table. There is a print form button on the main form that does a ton of stuff
that I could add in the code but need the Y/N to make it work? Maybe add
another button or?
 
K

Klatuu

You don't need a Y/N field in your table. You just need a checkbox on the
form. That way when a user checks the checkbox, the comments will show.

Step two:
Slap the crap out of your lazy developer.
 
T

TKM

Wish I could but he died last year!

Klatuu said:
You don't need a Y/N field in your table. You just need a checkbox on the
form. That way when a user checks the checkbox, the comments will show.

Step two:
Slap the crap out of your lazy developer.
 
T

TKM

I am tired as heck as I have 11 tickts I am trying to clear up. Dont mean to
sound so dumb about this but here is how it goes. The user selects the report
he wants from a cbo. the report then opens and the user will print the report
in front of her directly using the menu. Now all want is some way for the
user to have an option to print or not print the comeent section on the
report. Your past answers will they take care of this? I am very tired 12
hours and pushing it. Thanks for all your help!
 
T

TKM

They have someone coming in next week. Yea! however this one is a thorn in my
side. You would not believe it if I told you. What a mess. I just thought
someone could inform me of an easier way?
 
K

Klatuu

I understand.
The solution I proposed will work. To recap:
1. Add a checkbox control to the form the combo is on that the report is run
from.
2. Add the following code to the Open event of the report. (you will have to
use the correct names)

If Forms!MyFormName!MyCheckBoxName = True Then
Me.MySubReportControlName.Visible = True
Else
Me.MySubReportControlName.Visible = True
End If

Or more simply stated:
Me.MySubReportControlName.Visible = Forms!MyFormName!MyCheckBoxName

Now one thing to note. You don't use the name of the report that is the
subreport. You use the name of the control on the report that contains the
report object that is the Source Object of the the control. If you let
Access do it, they are likely the same. You just need to look at the report
in Design View and open the properties dialog for the subreport control to
get the correct name.

Get some rest and hit it tomorrow.
 
T

TKM

OK thank you very much. Here is one more question for you if you dont mind?
The developer named the sub report this way:
rsubClosers-InProcess

How do I get it to recondnize the "-" inbetween closers and INprocess?
 
T

TKM

Yes but pretty simple however the fool made ths Source Object this name:
Report.rsubClosers-InProcess

How dop I get the code to work with the dash and the period in there?

Thanks again for your help I am almost there
 
T

TKM

NIGHTMARE. Yes I dont that but the error reads cant find the field "i"
referred to in your expression. I have the the code attached to my subform
however I am using the Source Object name in my code and not the actual
subform name. This is correct?

Klatuu said:
surround it with square brackets.
[Report.rsubClosers-InProcess]
--
Dave Hargis, Microsoft Access MVP


TKM said:
Yes but pretty simple however the fool made ths Source Object this name:
Report.rsubClosers-InProcess

How dop I get the code to work with the dash and the period in there?

Thanks again for your help I am almost there
 
K

Klatuu

That is correct. It should be
Me.[Report.rsubClosers-InProcess].Visible =

It may be that the name is actually
rsubClosers-InProcess

You may need to try
Me.[rsubClosers-InProcess].Visible =

--
Dave Hargis, Microsoft Access MVP


TKM said:
NIGHTMARE. Yes I dont that but the error reads cant find the field "i"
referred to in your expression. I have the the code attached to my subform
however I am using the Source Object name in my code and not the actual
subform name. This is correct?

Klatuu said:
surround it with square brackets.
[Report.rsubClosers-InProcess]
--
Dave Hargis, Microsoft Access MVP


TKM said:
Yes but pretty simple however the fool made ths Source Object this name:
Report.rsubClosers-InProcess

How dop I get the code to work with the dash and the period in there?

Thanks again for your help I am almost there

:

This is really the easiest way there is. It shouldn't take but a few minutes
to do it.
--
Dave Hargis, Microsoft Access MVP


:

They have someone coming in next week. Yea! however this one is a thorn in my
side. You would not believe it if I told you. What a mess. I just thought
someone could inform me of an easier way?

:

I am tired as heck as I have 11 tickts I am trying to clear up. Dont mean to
sound so dumb about this but here is how it goes. The user selects the report
he wants from a cbo. the report then opens and the user will print the report
in front of her directly using the menu. Now all want is some way for the
user to have an option to print or not print the comeent section on the
report. Your past answers will they take care of this? I am very tired 12
hours and pushing it. Thanks for all your help!

:

You don't need a Y/N field in your table. You just need a checkbox on the
form. That way when a user checks the checkbox, the comments will show.

Step two:
Slap the crap out of your lazy developer.
--
Dave Hargis, Microsoft Access MVP


:

Thanks however it is a little more complicated than that. The form has a
subform also. There is no Y/N field and the developers wont add one to the
table. There is a print form button on the main form that does a ton of stuff
that I could add in the code but need the Y/N to make it work? Maybe add
another button or?

:

You can use the Open event of the report to read the value in a control on
the form from which you launch the report and make the sub report control on
the report visible or not. This example uses a check box where checking the
box makes the comments visible.

Me.subComments.Visible = Forms!FormName!chkShowComments
--
Dave Hargis, Microsoft Access MVP


:

I messed up. I need to make the comment either print or not print. As I
stated it is embedded as a subform in the report based off its own query. Any
help would be appreciated.

:

I have a subform in my report list all the comments associated with a loan
number. I am looking for a why (in my query?) to hve the Comments print or
not print depending what the user wants. I dont not have a Y/N box set up for
this. Is there a way in my query I can do this?
 
T

TKM

Got it with a lot of re writing. however you put me on the right track.
thanks for everything!
 
K

Klatuu

I got an e-mail that there was a post, but it is not showing up.
--
Dave Hargis, Microsoft Access MVP


TKM said:
NIGHTMARE. Yes I dont that but the error reads cant find the field "i"
referred to in your expression. I have the the code attached to my subform
however I am using the Source Object name in my code and not the actual
subform name. This is correct?

Klatuu said:
surround it with square brackets.
[Report.rsubClosers-InProcess]
--
Dave Hargis, Microsoft Access MVP


TKM said:
Yes but pretty simple however the fool made ths Source Object this name:
Report.rsubClosers-InProcess

How dop I get the code to work with the dash and the period in there?

Thanks again for your help I am almost there

:

This is really the easiest way there is. It shouldn't take but a few minutes
to do it.
--
Dave Hargis, Microsoft Access MVP


:

They have someone coming in next week. Yea! however this one is a thorn in my
side. You would not believe it if I told you. What a mess. I just thought
someone could inform me of an easier way?

:

I am tired as heck as I have 11 tickts I am trying to clear up. Dont mean to
sound so dumb about this but here is how it goes. The user selects the report
he wants from a cbo. the report then opens and the user will print the report
in front of her directly using the menu. Now all want is some way for the
user to have an option to print or not print the comeent section on the
report. Your past answers will they take care of this? I am very tired 12
hours and pushing it. Thanks for all your help!

:

You don't need a Y/N field in your table. You just need a checkbox on the
form. That way when a user checks the checkbox, the comments will show.

Step two:
Slap the crap out of your lazy developer.
--
Dave Hargis, Microsoft Access MVP


:

Thanks however it is a little more complicated than that. The form has a
subform also. There is no Y/N field and the developers wont add one to the
table. There is a print form button on the main form that does a ton of stuff
that I could add in the code but need the Y/N to make it work? Maybe add
another button or?

:

You can use the Open event of the report to read the value in a control on
the form from which you launch the report and make the sub report control on
the report visible or not. This example uses a check box where checking the
box makes the comments visible.

Me.subComments.Visible = Forms!FormName!chkShowComments
--
Dave Hargis, Microsoft Access MVP


:

I messed up. I need to make the comment either print or not print. As I
stated it is embedded as a subform in the report based off its own query. Any
help would be appreciated.

:

I have a subform in my report list all the comments associated with a loan
number. I am looking for a why (in my query?) to hve the Comments print or
not print depending what the user wants. I dont not have a Y/N box set up for
this. Is there a way in my query I can do this?
 
T

TKM

Your not going to believe this. It works perfectly however the report shows
either a blank page or 1/2 of a blank page where the comments use to be. The
comments subform is in the middle of the main form and the company will not
let me move it to the end. What next? My last step!

Thanks again
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top