473,796 Members | 2,476 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to control the Access Title Bar

Hello

I'm using Access2000, SplitDB, ALL MenuBars are Off. The
AccessTitleBar( BlueBar) displays at the top with its (Min/Max/[X])
Controlbox.

I have a MainMenuForm (Modal-On), that Calls a ReportMenuForm
(Modal-On) that lets me select a REPORT. If I set the ReportMenuForm
(Popup-On) and I select a REPORT, the AccessTitleBar becomes disable (a
good thing), however the REPORT displays underneath the ReportMenuForm
(a bad thing). If I set the ReportMenuForm (Popup-Off) and I select a
REPORT, the REPORT displays OnTop (a good thing). However, a new
problem emerges. If the user maximizes the REPORT, the REPORTS TitleBar
disappears under the AccessTitleBar confusing the user. The user will
then press the Close[X] button, and the whole application shuts down (a
bad thing). I found unconventional code on the MS Web site, and was
able to shut off the [X] button of the AccessTitleBar, but the Min/Max
stays on.
Access2000 does not support the PopUp option in REPORTS. This would be
my solution. This MUST be a common frustration to many developers!

I need to display the REPORT OnTop, without the AccessTitleBar
concerns!

How do I disable the AccessTitleBar, or its (Min/Max[X]) Controlbox ?

Jul 6 '06 #1
15 3555
go to
http://home.bendbroadband.com/conrad...osebutton.html
and scroll down to #10. there is complete code there to "turn off/on" the
Minimize, Maximize, and X buttons all at the same time, on the Access title
bar. it works like a charm!

hth
<Ap******@gmail .comwrote in message
news:11******** **************@ v61g2000cwv.goo glegroups.com.. .
Hello

I'm using Access2000, SplitDB, ALL MenuBars are Off. The
AccessTitleBar( BlueBar) displays at the top with its (Min/Max/[X])
Controlbox.

I have a MainMenuForm (Modal-On), that Calls a ReportMenuForm
(Modal-On) that lets me select a REPORT. If I set the ReportMenuForm
(Popup-On) and I select a REPORT, the AccessTitleBar becomes disable (a
good thing), however the REPORT displays underneath the ReportMenuForm
(a bad thing). If I set the ReportMenuForm (Popup-Off) and I select a
REPORT, the REPORT displays OnTop (a good thing). However, a new
problem emerges. If the user maximizes the REPORT, the REPORTS TitleBar
disappears under the AccessTitleBar confusing the user. The user will
then press the Close[X] button, and the whole application shuts down (a
bad thing). I found unconventional code on the MS Web site, and was
able to shut off the [X] button of the AccessTitleBar, but the Min/Max
stays on.
Access2000 does not support the PopUp option in REPORTS. This would be
my solution. This MUST be a common frustration to many developers!

I need to display the REPORT OnTop, without the AccessTitleBar
concerns!

How do I disable the AccessTitleBar, or its (Min/Max[X]) Controlbox ?

Jul 6 '06 #2
ThankYou Tina

The Code for AccessTitleBar (Min/Max/[X]) controlbox worked Perfectly!

Unfortunately, my problem did not resolve. If a Report gets Maximized
by the user, the REPORTS (Min/Max/[X]) controlbox disappears instead of
displaying at the top of the page over the AccessTitleBar. It may be
going underneath, but not sure. Anybody have
any ideas ?

Greg

tina wrote:
go to
http://home.bendbroadband.com/conrad...osebutton.html
and scroll down to #10. there is complete code there to "turn off/on" the
Minimize, Maximize, and X buttons all at the same time, on the Access title
bar. it works like a charm!

hth
<Ap******@gmail .comwrote in message
news:11******** **************@ v61g2000cwv.goo glegroups.com.. .
Hello

I'm using Access2000, SplitDB, ALL MenuBars are Off. The
AccessTitleBar( BlueBar) displays at the top with its (Min/Max/[X])
Controlbox.

I have a MainMenuForm (Modal-On), that Calls a ReportMenuForm
(Modal-On) that lets me select a REPORT. If I set the ReportMenuForm
(Popup-On) and I select a REPORT, the AccessTitleBar becomes disable (a
good thing), however the REPORT displays underneath the ReportMenuForm
(a bad thing). If I set the ReportMenuForm (Popup-Off) and I select a
REPORT, the REPORT displays OnTop (a good thing). However, a new
problem emerges. If the user maximizes the REPORT, the REPORTS TitleBar
disappears under the AccessTitleBar confusing the user. The user will
then press the Close[X] button, and the whole application shuts down (a
bad thing). I found unconventional code on the MS Web site, and was
able to shut off the [X] button of the AccessTitleBar, but the Min/Max
stays on.
Access2000 does not support the PopUp option in REPORTS. This would be
my solution. This MUST be a common frustration to many developers!

I need to display the REPORT OnTop, without the AccessTitleBar
concerns!

How do I disable the AccessTitleBar, or its (Min/Max[X]) Controlbox ?
Jul 6 '06 #3
try putting a custom toolbar or menu bar on your report, or a shortcut
(right-click pop-up) menu, to allow the user to Print and Close.

hth
<Ap******@gmail .comwrote in message
news:11******** **************@ b68g2000cwa.goo glegroups.com.. .
ThankYou Tina

The Code for AccessTitleBar (Min/Max/[X]) controlbox worked Perfectly!

Unfortunately, my problem did not resolve. If a Report gets Maximized
by the user, the REPORTS (Min/Max/[X]) controlbox disappears instead of
displaying at the top of the page over the AccessTitleBar. It may be
going underneath, but not sure. Anybody have
any ideas ?

Greg

tina wrote:
go to
http://home.bendbroadband.com/conrad...osebutton.html
and scroll down to #10. there is complete code there to "turn off/on"
the
Minimize, Maximize, and X buttons all at the same time, on the Access
title
bar. it works like a charm!

hth
<Ap******@gmail .comwrote in message
news:11******** **************@ v61g2000cwv.goo glegroups.com.. .
Hello
>
I'm using Access2000, SplitDB, ALL MenuBars are Off. The
AccessTitleBar( BlueBar) displays at the top with its (Min/Max/[X])
Controlbox.
>
I have a MainMenuForm (Modal-On), that Calls a ReportMenuForm
(Modal-On) that lets me select a REPORT. If I set the ReportMenuForm
(Popup-On) and I select a REPORT, the AccessTitleBar becomes disable
(a
good thing), however the REPORT displays underneath the ReportMenuForm
(a bad thing). If I set the ReportMenuForm (Popup-Off) and I select a
REPORT, the REPORT displays OnTop (a good thing). However, a new
problem emerges. If the user maximizes the REPORT, the REPORTS
TitleBar
disappears under the AccessTitleBar confusing the user. The user will
then press the Close[X] button, and the whole application shuts down
(a
bad thing). I found unconventional code on the MS Web site, and was
able to shut off the [X] button of the AccessTitleBar, but the Min/Max
stays on.
Access2000 does not support the PopUp option in REPORTS. This would
be
my solution. This MUST be a common frustration to many developers!
>
I need to display the REPORT OnTop, without the AccessTitleBar
concerns!
>
How do I disable the AccessTitleBar, or its (Min/Max[X]) Controlbox ?
>

Jul 6 '06 #4
Thankyou for the quick response, and the interesting suggestions.
I'll give it a try!

Greg
tina wrote:
try putting a custom toolbar or menu bar on your report, or a shortcut
(right-click pop-up) menu, to allow the user to Print and Close.

hth
<Ap******@gmail .comwrote in message
news:11******** **************@ b68g2000cwa.goo glegroups.com.. .
ThankYou Tina

The Code for AccessTitleBar (Min/Max/[X]) controlbox worked Perfectly!

Unfortunately, my problem did not resolve. If a Report gets Maximized
by the user, the REPORTS (Min/Max/[X]) controlbox disappears instead of
displaying at the top of the page over the AccessTitleBar. It may be
going underneath, but not sure. Anybody have
any ideas ?

Greg

tina wrote:
go to
>
http://home.bendbroadband.com/conrad...osebutton.html
and scroll down to #10. there is complete code there to "turn off/on"
the
Minimize, Maximize, and X buttons all at the same time, on the Access
title
bar. it works like a charm!
>
hth
>
>
<Ap******@gmail .comwrote in message
news:11******** **************@ v61g2000cwv.goo glegroups.com.. .
Hello

I'm using Access2000, SplitDB, ALL MenuBars are Off. The
AccessTitleBar( BlueBar) displays at the top with its (Min/Max/[X])
Controlbox.

I have a MainMenuForm (Modal-On), that Calls a ReportMenuForm
(Modal-On) that lets me select a REPORT. If I set the ReportMenuForm
(Popup-On) and I select a REPORT, the AccessTitleBar becomes disable
(a
good thing), however the REPORT displays underneath the ReportMenuForm
(a bad thing). If I set the ReportMenuForm (Popup-Off) and I select a
REPORT, the REPORT displays OnTop (a good thing). However, a new
problem emerges. If the user maximizes the REPORT, the REPORTS
TitleBar
disappears under the AccessTitleBar confusing the user. The user will
then press the Close[X] button, and the whole application shuts down
(a
bad thing). I found unconventional code on the MS Web site, and was
able to shut off the [X] button of the AccessTitleBar, but the Min/Max
stays on.
Access2000 does not support the PopUp option in REPORTS. This would
be
my solution. This MUST be a common frustration to many developers!

I need to display the REPORT OnTop, without the AccessTitleBar
concerns!

How do I disable the AccessTitleBar, or its (Min/Max[X]) Controlbox ?
Jul 6 '06 #5
you're welcome, good luck! :)
<Ap******@gmail .comwrote in message
news:11******** **************@ m79g2000cwm.goo glegroups.com.. .
Thankyou for the quick response, and the interesting suggestions.
I'll give it a try!

Greg
tina wrote:
try putting a custom toolbar or menu bar on your report, or a shortcut
(right-click pop-up) menu, to allow the user to Print and Close.

hth
<Ap******@gmail .comwrote in message
news:11******** **************@ b68g2000cwa.goo glegroups.com.. .
ThankYou Tina
>
The Code for AccessTitleBar (Min/Max/[X]) controlbox worked Perfectly!
>
Unfortunately, my problem did not resolve. If a Report gets Maximized
by the user, the REPORTS (Min/Max/[X]) controlbox disappears instead
of
displaying at the top of the page over the AccessTitleBar. It may be
going underneath, but not sure. Anybody have
any ideas ?
>
Greg
>
>
>
>
>
tina wrote:
go to
http://home.bendbroadband.com/conrad...osebutton.html
and scroll down to #10. there is complete code there to "turn
off/on"
the
Minimize, Maximize, and X buttons all at the same time, on the
Access
title
bar. it works like a charm!

hth


<Ap******@gmail .comwrote in message
news:11******** **************@ v61g2000cwv.goo glegroups.com.. .
Hello
>
I'm using Access2000, SplitDB, ALL MenuBars are Off. The
AccessTitleBar( BlueBar) displays at the top with its (Min/Max/[X])
Controlbox.
>
I have a MainMenuForm (Modal-On), that Calls a ReportMenuForm
(Modal-On) that lets me select a REPORT. If I set the
ReportMenuForm
(Popup-On) and I select a REPORT, the AccessTitleBar becomes
disable
(a
good thing), however the REPORT displays underneath the
ReportMenuForm
(a bad thing). If I set the ReportMenuForm (Popup-Off) and I
select a
REPORT, the REPORT displays OnTop (a good thing). However, a new
problem emerges. If the user maximizes the REPORT, the REPORTS
TitleBar
disappears under the AccessTitleBar confusing the user. The user
will
then press the Close[X] button, and the whole application shuts
down
(a
bad thing). I found unconventional code on the MS Web site, and
was
able to shut off the [X] button of the AccessTitleBar, but the
Min/Max
stays on.
Access2000 does not support the PopUp option in REPORTS. This
would
be
my solution. This MUST be a common frustration to many
developers!
>
I need to display the REPORT OnTop, without the AccessTitleBar
concerns!
>
How do I disable the AccessTitleBar, or its (Min/Max[X])
Controlbox ?
>
>

Jul 7 '06 #6
Hello Tina - Hope you're still in HelpMode!
Access2000, split DB

Took your advice on nearly all your suggestions. Reworked my code and
things are as I want them:

Startup has all menus OFF, I display the Access TitleBar with
Controlbox OFF, a ReportMenuForm (Modal) is brought up, I have buttons
for each report. Each report uses the same Custom1 MenuBar
(Print,Close) that displays at the top of the screen just under the
TitleBar. This was set in the Reports properties. In code, on Report
Open, I have DoCmd.Maximize. All this stuff works great. However, the
Reports "Horizontal Scroll Bar" disappears under the windows "Start"
bar (ie bars name?) at the bottom of the screen. The user needs this
because the reports are landscape.

Any suggestions ?

Thanks Again
Greg

tina wrote:
you're welcome, good luck! :)
<Ap******@gmail .comwrote in message
news:11******** **************@ m79g2000cwm.goo glegroups.com.. .
Thankyou for the quick response, and the interesting suggestions.
I'll give it a try!

Greg
tina wrote:
try putting a custom toolbar or menu bar on your report, or a shortcut
(right-click pop-up) menu, to allow the user to Print and Close.
>
hth
>
>
<Ap******@gmail .comwrote in message
news:11******** **************@ b68g2000cwa.goo glegroups.com.. .
ThankYou Tina

The Code for AccessTitleBar (Min/Max/[X]) controlbox worked Perfectly!

Unfortunately, my problem did not resolve. If a Report gets Maximized
by the user, the REPORTS (Min/Max/[X]) controlbox disappears instead
of
displaying at the top of the page over the AccessTitleBar. It may be
going underneath, but not sure. Anybody have
any ideas ?

Greg





tina wrote:
go to
>
>
http://home.bendbroadband.com/conrad...osebutton.html
and scroll down to #10. there is complete code there to "turn
off/on"
the
Minimize, Maximize, and X buttons all at the same time, on the
Access
title
bar. it works like a charm!
>
hth
>
>
<Ap******@gmail .comwrote in message
news:11******** **************@ v61g2000cwv.goo glegroups.com.. .
Hello

I'm using Access2000, SplitDB, ALL MenuBars are Off. The
AccessTitleBar( BlueBar) displays at the top with its (Min/Max/[X])
Controlbox.

I have a MainMenuForm (Modal-On), that Calls a ReportMenuForm
(Modal-On) that lets me select a REPORT. If I set the
ReportMenuForm
(Popup-On) and I select a REPORT, the AccessTitleBar becomes
disable
(a
good thing), however the REPORT displays underneath the
ReportMenuForm
(a bad thing). If I set the ReportMenuForm (Popup-Off) and I
select a
REPORT, the REPORT displays OnTop (a good thing). However, a new
problem emerges. If the user maximizes the REPORT, the REPORTS
TitleBar
disappears under the AccessTitleBar confusing the user. The user
will
then press the Close[X] button, and the whole application shuts
down
(a
bad thing). I found unconventional code on the MS Web site, and
was
able to shut off the [X] button of the AccessTitleBar, but the
Min/Max
stays on.
Access2000 does not support the PopUp option in REPORTS. This
would
be
my solution. This MUST be a common frustration to many
developers!

I need to display the REPORT OnTop, without the AccessTitleBar
concerns!

How do I disable the AccessTitleBar, or its (Min/Max[X])
Controlbox ?
Jul 7 '06 #7
Forgot to mention, this is how I open the Report:

DoCmd.OpenRepor t strReport, acViewPreview, , strWhere

Thanks
Greg

Ap******@gmail. com wrote:
Hello Tina - Hope you're still in HelpMode!
Access2000, split DB

Took your advice on nearly all your suggestions. Reworked my code and
things are as I want them:

Startup has all menus OFF, I display the Access TitleBar with
Controlbox OFF, a ReportMenuForm (Modal) is brought up, I have buttons
for each report. Each report uses the same Custom1 MenuBar
(Print,Close) that displays at the top of the screen just under the
TitleBar. This was set in the Reports properties. In code, on Report
Open, I have DoCmd.Maximize. All this stuff works great. However, the
Reports "Horizontal Scroll Bar" disappears under the windows "Start"
bar (ie bars name?) at the bottom of the screen. The user needs this
because the reports are landscape.

Any suggestions ?

Thanks Again
Greg

tina wrote:
you're welcome, good luck! :)
<Ap******@gmail .comwrote in message
news:11******** **************@ m79g2000cwm.goo glegroups.com.. .
Thankyou for the quick response, and the interesting suggestions.
I'll give it a try!
>
Greg
>
>
tina wrote:
try putting a custom toolbar or menu bar on your report, or a shortcut
(right-click pop-up) menu, to allow the user to Print and Close.

hth


<Ap******@gmail .comwrote in message
news:11******** **************@ b68g2000cwa.goo glegroups.com.. .
ThankYou Tina
>
The Code for AccessTitleBar (Min/Max/[X]) controlbox worked Perfectly!
>
Unfortunately, my problem did not resolve. If a Report gets Maximized
by the user, the REPORTS (Min/Max/[X]) controlbox disappears instead
of
displaying at the top of the page over the AccessTitleBar. It may be
going underneath, but not sure. Anybody have
any ideas ?
>
Greg
>
>
>
>
>
tina wrote:
go to
http://home.bendbroadband.com/conrad...osebutton.html
and scroll down to #10. there is complete code there to "turn
off/on"
the
Minimize, Maximize, and X buttons all at the same time, on the
Access
title
bar. it works like a charm!

hth


<Ap******@gmail .comwrote in message
news:11******** **************@ v61g2000cwv.goo glegroups.com.. .
Hello
>
I'm using Access2000, SplitDB, ALL MenuBars are Off. The
AccessTitleBar( BlueBar) displays at the top with its (Min/Max/[X])
Controlbox.
>
I have a MainMenuForm (Modal-On), that Calls a ReportMenuForm
(Modal-On) that lets me select a REPORT. If I set the
ReportMenuForm
(Popup-On) and I select a REPORT, the AccessTitleBar becomes
disable
(a
good thing), however the REPORT displays underneath the
ReportMenuForm
(a bad thing). If I set the ReportMenuForm (Popup-Off) and I
select a
REPORT, the REPORT displays OnTop (a good thing). However, a new
problem emerges. If the user maximizes the REPORT, the REPORTS
TitleBar
disappears under the AccessTitleBar confusing the user. The user
will
then press the Close[X] button, and the whole application shuts
down
(a
bad thing). I found unconventional code on the MS Web site, and
was
able to shut off the [X] button of the AccessTitleBar, but the
Min/Max
stays on.
Access2000 does not support the PopUp option in REPORTS. This
would
be
my solution. This MUST be a common frustration to many
developers!
>
I need to display the REPORT OnTop, without the AccessTitleBar
concerns!
>
How do I disable the AccessTitleBar, or its (Min/Max[X])
Controlbox ?
>
>
>
Jul 7 '06 #8
This problem seems to be the result of the user resizing the
ApplicationWind ow. When
the Window is expanded, it causes the botton scroll bar to descend
below the "Start Bar"
at the bottom. I'm now working on figuring out how to stop Re-sizing of
the AppWindow!

Greg

Ap******@gmail. com wrote:
Forgot to mention, this is how I open the Report:

DoCmd.OpenRepor t strReport, acViewPreview, , strWhere

Thanks
Greg

Ap******@gmail. com wrote:
Hello Tina - Hope you're still in HelpMode!
Access2000, split DB

Took your advice on nearly all your suggestions. Reworked my code and
things are as I want them:

Startup has all menus OFF, I display the Access TitleBar with
Controlbox OFF, a ReportMenuForm (Modal) is brought up, I have buttons
for each report. Each report uses the same Custom1 MenuBar
(Print,Close) that displays at the top of the screen just under the
TitleBar. This was set in the Reports properties. In code, on Report
Open, I have DoCmd.Maximize. All this stuff works great. However, the
Reports "Horizontal Scroll Bar" disappears under the windows "Start"
bar (ie bars name?) at the bottom of the screen. The user needs this
because the reports are landscape.

Any suggestions ?

Thanks Again
Greg

tina wrote:
you're welcome, good luck! :)
>
>
<Ap******@gmail .comwrote in message
news:11******** **************@ m79g2000cwm.goo glegroups.com.. .
Thankyou for the quick response, and the interesting suggestions.
I'll give it a try!

Greg


tina wrote:
try putting a custom toolbar or menu bar on your report, or a shortcut
(right-click pop-up) menu, to allow the user to Print and Close.
>
hth
>
>
<Ap******@gmail .comwrote in message
news:11******** **************@ b68g2000cwa.goo glegroups.com.. .
ThankYou Tina

The Code for AccessTitleBar (Min/Max/[X]) controlbox worked Perfectly!

Unfortunately, my problem did not resolve. If a Report gets Maximized
by the user, the REPORTS (Min/Max/[X]) controlbox disappears instead
of
displaying at the top of the page over the AccessTitleBar. It may be
going underneath, but not sure. Anybody have
any ideas ?

Greg





tina wrote:
go to
>
>
http://home.bendbroadband.com/conrad...osebutton.html
and scroll down to #10. there is complete code there to "turn
off/on"
the
Minimize, Maximize, and X buttons all at the same time, on the
Access
title
bar. it works like a charm!
>
hth
>
>
<Ap******@gmail .comwrote in message
news:11******** **************@ v61g2000cwv.goo glegroups.com.. .
Hello

I'm using Access2000, SplitDB, ALL MenuBars are Off. The
AccessTitleBar( BlueBar) displays at the top with its (Min/Max/[X])
Controlbox.

I have a MainMenuForm (Modal-On), that Calls a ReportMenuForm
(Modal-On) that lets me select a REPORT. If I set the
ReportMenuForm
(Popup-On) and I select a REPORT, the AccessTitleBar becomes
disable
(a
good thing), however the REPORT displays underneath the
ReportMenuForm
(a bad thing). If I set the ReportMenuForm (Popup-Off) and I
select a
REPORT, the REPORT displays OnTop (a good thing). However, a new
problem emerges. If the user maximizes the REPORT, the REPORTS
TitleBar
disappears under the AccessTitleBar confusing the user. The user
will
then press the Close[X] button, and the whole application shuts
down
(a
bad thing). I found unconventional code on the MS Web site, and
was
able to shut off the [X] button of the AccessTitleBar, but the
Min/Max
stays on.
Access2000 does not support the PopUp option in REPORTS. This
would
be
my solution. This MUST be a common frustration to many
developers!

I need to display the REPORT OnTop, without the AccessTitleBar
concerns!

How do I disable the AccessTitleBar, or its (Min/Max[X])
Controlbox ?

Jul 7 '06 #9

<Ap******@gmail .comwrote in message
news:11******** **************@ p79g2000cwp.goo glegroups.com.. .
This problem seems to be the result of the user resizing the
ApplicationWind ow. When
the Window is expanded, it causes the botton scroll bar to descend
below the "Start Bar"
at the bottom. I'm now working on figuring out how to stop Re-sizing of
the AppWindow!
That's not the "Windows way," which is to let the user have control over
his/her own desktop, and is guaranteed to irritate some users*. Better to
let the users know that they will lose report scrolling if they resize the
window, and let it be the user's choice.

* some of us have been known to discard apps where the developer decided
he knew better than we did how our screen ought to be arranged. <G>

Larry Linson
Microsoft Access MVP
Jul 7 '06 #10

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

Similar topics

6
10721
by: Franco Lombardo | last post by:
Hi all, I'm running DB2 8.1.5 on Windows 2000 professional SP4. When I try to start Control Center, I see the splash screen for a while, then it closes and nothing else happens. It happens with "Activity center" (Since I'm running the italian version, I don't know the english name of this tool, I mean db2tc.bat).
11
5006
by: trinitypete | last post by:
Hi all, I have a user control that uses control literal to build a heading with a link, and a div containing links below. As the link heading is hit, I want to change the style of the div, making it visible or not. Yep you guessed it, expanding tree type functionality. The header has an onclick event onclick='Doexpandcollapse
6
11303
by: martin | last post by:
Hi, I am a web page and a web user control. My web user control is placed in my web page using the following directive <%@ Register TagPrefix="uc1" TagName="Header" Src="WebControls/Header.ascx" %> The web user control contains the following server controls
6
535
by: William Parker | last post by:
I have a web control I made called header.ascx. It has its own properties and methods I defined. But I cannot figure out how to access this control from my code behind page. I can create the web control just fine and script with it as needed from the webform1.aspx page itself just fine, like this: <%@ Page language="c#" Codebehind="WebForm1.aspx.cs" AutoEventWireup="false" Inherits="mysite.WebForm1" %> <%@ Register TagPrefix="uc1"...
1
1355
by: Green | last post by:
Hi, I have a question concerning how to manipulate the properties in the user control, and there is an interesting article about this from Microsoft: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconexposingpageletproperties.asp My situation is i have a user control resides in the aspx page. And In the aspx page's html, i set the following: <ucl:myControl id="title" EditText="Add New Topic"...
2
1953
by: Nathan Sokalski | last post by:
I would like to change the <title></title> of a page from a user control. I have been unable to find any property in VB that allows me to do this. The only thing I have been able to find that might be related is when in Design view, there is a property called title under the DOCUMENT object in properties, which leads me to believe that there may be a way to access a DOCUMENT.title somewhere (although that may be only for...
3
6444
by: ivanpais | last post by:
Hi, I have a Web User Control, Lets say "Foo.ascx", that contains a button "btnFoo". I have a Master Page "Bar.master", that has a label "lblBar". This label is exposed by a public property BarLabelText. I now have a contentpage "FooBar.aspx", where "Bar.master" is the master page and in the content section has the control "Foo.ascx".
3
1772
by: tshad | last post by:
I am trying to put together a user control (.ascx). Can you access an outside control from it? My control: login2.ascx **************************************************************** <script runat="server"> Sub Page_Load(sender as Object, e as EventArgs)
0
1021
by: Paul | last post by:
Hi all, I have a simple custom control with a label and a text box. The text control's value is persisting when I do a post back, so the view state is working, but I cannot access the value in the code. Is there anything different I have to do to expose the value of the text box? testControl.Text returns the unchanged original value, not the new value.
4
4242
by: archana | last post by:
Hi all, i am having one user control. what i want is to add javascript which will gets called on button click of user control. but user control is not working if i add javascript in user control.. but if i add javascript in page in which i am adding user control then that javascript is executed properly. i tested by displaying alert message in javascript. can anyone tell
0
9529
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10176
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9054
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7550
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5443
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5576
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4119
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3733
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2927
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.