473,508 Members | 2,282 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Turning Custom Errors off

Hello I am working locally with Visual Web Developer 2005 Express. Before I
even installed it, the information from Microsoft was that you could FTP it
to a remote site and it should work. The site I FTP'd to has .Net Framework
2.0 installed. I got this error when I tried to open the site:

Runtime Error
Description: An application error occurred on the server. The current custom
error settings for this application prevent the details of the application
error from being viewed remotely (for security reasons). It could, however,
be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable
on remote machines, please create a <customErrors> tag within a "web.config"
configuration file located in the root directory of the current web
application. This <customErrors> tag should then have its "mode" attribute
set to "Off".
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>

I pasted the line
<customErrors mode="Off"/>

into the web.config file within the <system.web> tags but still getting the
same page, and not an error page. I'm not sure why there would be an error.

Thanks for any help and God Bless,

Mark A. Sam


Mar 13 '06 #1
8 3614

Can you add your web.config file?
--------------------
From: "Mark A. Sam" <ms**@Plan-It-Earth.Net>
Subject: Turning Custom Errors off
Date: Mon, 13 Mar 2006 10:16:52 -0500
Lines: 41
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
X-RFC2646: Format=Flowed; Original
Message-ID: <#F**************@TK2MSFTNGP10.phx.gbl>
Newsgroups: microsoft.public.dotnet.general,microsoft.public.v studio.generalNNTP-Posting-Host: dunkirk-cuda1-24-50-80-102.lkwnny.adelphia.net 24.50.80.102Path: TK2MSFTNGXA03.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP10.phx.gbl
Xref: TK2MSFTNGXA03.phx.gbl microsoft.public.vstudio.general:12093 microsoft.public.dotnet.general:191042X-Tomcat-NG: microsoft.public.dotnet.general

Hello I am working locally with Visual Web Developer 2005 Express. Before Ieven installed it, the information from Microsoft was that you could FTP itto a remote site and it should work. The site I FTP'd to has .Net Framework2.0 installed. I got this error when I tried to open the site:

Runtime Error
Description: An application error occurred on the server. The current customerror settings for this application prevent the details of the application
error from being viewed remotely (for security reasons). It could, however,be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewableon remote machines, please create a <customErrors> tag within a "web.config"configuration file located in the root directory of the current web
application. This <customErrors> tag should then have its "mode" attribute
set to "Off".
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>

I pasted the line
<customErrors mode="Off"/>

into the web.config file within the <system.web> tags but still getting thesame page, and not an error page. I'm not sure why there would be an error.
Thanks for any help and God Bless,

Mark A. Sam



--

Thank You,
Nanda Lella,

This Posting is provided "AS IS" with no warranties, and confers no rights.

Mar 13 '06 #2

"Nanda Lella[MSFT]" <Na****@online.microsoft.com> wrote in message
news:$z**************@TK2MSFTNGXA03.phx.gbl...

Can you add your web.config file?

Yes, Thank you. The line is after the first <system .web> tag

<?xml version="1.0"?>

<!--

Note: As an alternative to hand editing this file you can use the

web admin tool to configure settings for your application. Use

the Website->Asp.Net Configuration option in Visual Studio.

A full list of settings and comments can be found in

machine.config.comments usually located in

\Windows\Microsoft.Net\Framework\v2.x\Config

-->

<configuration>

<appSettings/>

<connectionStrings/>

<system.web>

<customErrors mode="Off"/>

<!--

Set compilation debug="true" to insert debugging

symbols into the compiled page. Because this

affects performance, set this value to true only

during development.

Visual Basic options:

Set strict="true" to disallow all data type conversions

where data loss can occur.

Set explicit="true" to force declaration of all variables.

-->

<compilation debug="false" strict="false" explicit="true" />

<pages>

<namespaces>

<clear />

<add namespace="System" />

<add namespace="System.Collections" />

<add namespace="System.Collections.Specialized" />

<add namespace="System.Configuration" />

<add namespace="System.Text" />

<add namespace="System.Text.RegularExpressions" />

<add namespace="System.Web" />

<add namespace="System.Web.Caching" />

<add namespace="System.Web.SessionState" />

<add namespace="System.Web.Security" />

<add namespace="System.Web.Profile" />

<add namespace="System.Web.UI" />

<add namespace="System.Web.UI.WebControls" />

<add namespace="System.Web.UI.WebControls.WebParts" />

<add namespace="System.Web.UI.HtmlControls" />

</namespaces>

</pages>

<!--

The <authentication> section enables configuration

of the security authentication mode used by

ASP.NET to identify an incoming user.

-->

<authentication mode="Windows" />

<!--

The <customErrors> section enables configuration

of what to do if/when an unhandled error occurs

during the execution of a request. Specifically,

it enables developers to configure html error pages

to be displayed in place of a error stack trace.

<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">

<error statusCode="403" redirect="NoAccess.htm" />

<error statusCode="404" redirect="FileNotFound.htm" />

</customErrors>

-->

</system.web>

</configuration>
Mar 13 '06 #3
Your web.config file looks fine.

Have you verified t the framework version that is being used on the remote
machine?(The machine that you have FTPed to)
Make sure that IIS is using framework 2.0. If you are not sure, you can run
the aspnet_regiis.exe tool that resides in the folder
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727 assuming your are using the
framework version 2.0.50727. You have to run this tool from command prompt
with an option -i.

aspnet_regiis.exe -i

I believe this is the problem.

Also I see that you are using Windows authentication. Make sure the user,
who is using the website has the required credentials. Otherwise change the
authentication mode.

Let me know if the problem is solved.

--------------------
From: "Mark A. Sam" <ms**@Plan-It-Earth.Net>
References: <#F**************@TK2MSFTNGP10.phx.gbl> <$z**************@TK2MSFTNGXA03.phx.gbl>Subject: Re: Turning Custom Errors off
Date: Mon, 13 Mar 2006 15:08:14 -0500
Lines: 140
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
X-RFC2646: Format=Flowed; Original
Message-ID: <#q**************@TK2MSFTNGP11.phx.gbl>
Newsgroups: microsoft.public.dotnet.general
NNTP-Posting-Host: dunkirk-cuda1-24-50-80-102.lkwnny.adelphia.net 24.50.80.102Path: TK2MSFTNGXA03.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP11.phx.gbl
Xref: TK2MSFTNGXA03.phx.gbl microsoft.public.dotnet.general:191075
X-Tomcat-NG: microsoft.public.dotnet.general
"Nanda Lella[MSFT]" <Na****@online.microsoft.com> wrote in message
news:$z**************@TK2MSFTNGXA03.phx.gbl...

Can you add your web.config file?

Yes, Thank you. The line is after the first <system .web> tag

<?xml version="1.0"?>

<!--

Note: As an alternative to hand editing this file you can use the

web admin tool to configure settings for your application. Use

the Website->Asp.Net Configuration option in Visual Studio.

A full list of settings and comments can be found in

machine.config.comments usually located in

\Windows\Microsoft.Net\Framework\v2.x\Config

-->

<configuration>

<appSettings/>

<connectionStrings/>

<system.web>

<customErrors mode="Off"/>

<!--

Set compilation debug="true" to insert debugging

symbols into the compiled page. Because this

affects performance, set this value to true only

during development.

Visual Basic options:

Set strict="true" to disallow all data type conversions

where data loss can occur.

Set explicit="true" to force declaration of all variables.

-->

<compilation debug="false" strict="false" explicit="true" />

<pages>

<namespaces>

<clear />

<add namespace="System" />

<add namespace="System.Collections" />

<add namespace="System.Collections.Specialized" />

<add namespace="System.Configuration" />

<add namespace="System.Text" />

<add namespace="System.Text.RegularExpressions" />

<add namespace="System.Web" />

<add namespace="System.Web.Caching" />

<add namespace="System.Web.SessionState" />

<add namespace="System.Web.Security" />

<add namespace="System.Web.Profile" />

<add namespace="System.Web.UI" />

<add namespace="System.Web.UI.WebControls" />

<add namespace="System.Web.UI.WebControls.WebParts" />

<add namespace="System.Web.UI.HtmlControls" />

</namespaces>

</pages>

<!--

The <authentication> section enables configuration

of the security authentication mode used by

ASP.NET to identify an incoming user.

-->

<authentication mode="Windows" />

<!--

The <customErrors> section enables configuration

of what to do if/when an unhandled error occurs

during the execution of a request. Specifically,

it enables developers to configure html error pages

to be displayed in place of a error stack trace.

<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">

<error statusCode="403" redirect="NoAccess.htm" />

<error statusCode="404" redirect="FileNotFound.htm" />

</customErrors>

-->

</system.web>

</configuration>


--

Thank You,
Nanda Lella,

This Posting is provided "AS IS" with no warranties, and confers no rights.

Mar 13 '06 #4
I don't have access to the folder you listed. This is a hosted site, but I
emailed tech support to verify that .net framework 2.0 is installed. I am
not sure why you cited IIS. I recall from the information on the microsoft
site that one advange of using ASP.net is that you don't need IIS.

As long as you are gonig to monitor this, maybe you can help me with another
issue before I post it. I placed some .jpg images on a page and tried to
replaced them with .gif images with the same names, and cannot remove them.
I began by changing the extentions from .jpg to .giv in the properties
sheet. This had the effect of both sets of images being on the form. I
then tried and tried to delete the .jpg's, but they keep returning. They
show that they are deleted until I open the page in a browser or I close and
open the page in design view. This page is not associated with any master
pages.

Thanks for the help and God Bless,

Mark
"Nanda Lella[MSFT]" <Na****@online.microsoft.com> wrote in message
news:Co**************@TK2MSFTNGXA03.phx.gbl...
Your web.config file looks fine.

Have you verified t the framework version that is being used on the remote
machine?(The machine that you have FTPed to)
Make sure that IIS is using framework 2.0. If you are not sure, you can
run
the aspnet_regiis.exe tool that resides in the folder
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727 assuming your are using the
framework version 2.0.50727. You have to run this tool from command prompt
with an option -i.

aspnet_regiis.exe -i

I believe this is the problem.

Also I see that you are using Windows authentication. Make sure the user,
who is using the website has the required credentials. Otherwise change
the
authentication mode.

Let me know if the problem is solved.

--------------------
From: "Mark A. Sam" <ms**@Plan-It-Earth.Net>
References: <#F**************@TK2MSFTNGP10.phx.gbl>

<$z**************@TK2MSFTNGXA03.phx.gbl>
Subject: Re: Turning Custom Errors off
Date: Mon, 13 Mar 2006 15:08:14 -0500
Lines: 140
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
X-RFC2646: Format=Flowed; Original
Message-ID: <#q**************@TK2MSFTNGP11.phx.gbl>
Newsgroups: microsoft.public.dotnet.general
NNTP-Posting-Host: dunkirk-cuda1-24-50-80-102.lkwnny.adelphia.net

24.50.80.102
Path: TK2MSFTNGXA03.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP11.phx.gbl
Xref: TK2MSFTNGXA03.phx.gbl microsoft.public.dotnet.general:191075
X-Tomcat-NG: microsoft.public.dotnet.general
"Nanda Lella[MSFT]" <Na****@online.microsoft.com> wrote in message
news:$z**************@TK2MSFTNGXA03.phx.gbl...

Can you add your web.config file?

Yes, Thank you. The line is after the first <system .web> tag

<?xml version="1.0"?>

<!--

Note: As an alternative to hand editing this file you can use the

web admin tool to configure settings for your application. Use

the Website->Asp.Net Configuration option in Visual Studio.

A full list of settings and comments can be found in

machine.config.comments usually located in

\Windows\Microsoft.Net\Framework\v2.x\Config

-->

<configuration>

<appSettings/>

<connectionStrings/>

<system.web>

<customErrors mode="Off"/>

<!--

Set compilation debug="true" to insert debugging

symbols into the compiled page. Because this

affects performance, set this value to true only

during development.

Visual Basic options:

Set strict="true" to disallow all data type conversions

where data loss can occur.

Set explicit="true" to force declaration of all variables.

-->

<compilation debug="false" strict="false" explicit="true" />

<pages>

<namespaces>

<clear />

<add namespace="System" />

<add namespace="System.Collections" />

<add namespace="System.Collections.Specialized" />

<add namespace="System.Configuration" />

<add namespace="System.Text" />

<add namespace="System.Text.RegularExpressions" />

<add namespace="System.Web" />

<add namespace="System.Web.Caching" />

<add namespace="System.Web.SessionState" />

<add namespace="System.Web.Security" />

<add namespace="System.Web.Profile" />

<add namespace="System.Web.UI" />

<add namespace="System.Web.UI.WebControls" />

<add namespace="System.Web.UI.WebControls.WebParts" />

<add namespace="System.Web.UI.HtmlControls" />

</namespaces>

</pages>

<!--

The <authentication> section enables configuration

of the security authentication mode used by

ASP.NET to identify an incoming user.

-->

<authentication mode="Windows" />

<!--

The <customErrors> section enables configuration

of what to do if/when an unhandled error occurs

during the execution of a request. Specifically,

it enables developers to configure html error pages

to be displayed in place of a error stack trace.

<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">

<error statusCode="403" redirect="NoAccess.htm" />

<error statusCode="404" redirect="FileNotFound.htm" />

</customErrors>

-->

</system.web>

</configuration>


--

Thank You,
Nanda Lella,

This Posting is provided "AS IS" with no warranties, and confers no
rights.

Mar 14 '06 #5
The support tech remmed out the connectionstrings
<!-- <connectionStrings/>-->
node and now I get the error:
Server Error in '/' Application.
--------------------------------------------------------------------------------

Configuration Error
Description: An error occurred during the processing of a configuration file
required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: Child nodes are not allowed.

Source Error:
Line 26: <compilation debug="false" strict="false" explicit="true"
/>
Line 27: <pages>
Line 28: <namespaces>
Line 29: <clear />
Line 30: <add namespace="System" />
Source File: C:\Domains\dragonimporting.com\wwwroot\web.config Line: 28

--------------------------------------------------------------------------------

Version Information: Microsoft .NET Framework Version:1.1.4322.2300; ASP.NET
Version:1.1.4322.2300

I'll post the web.config again: Thank you again for the help. I resolved
the issue with the .jpgs by deleting the images then copy and pasting them
to a new webform page. Maybe this was a fluke..
<?xml version="1.0"?>

<!--

Note: As an alternative to hand editing this file you can use the

web admin tool to configure settings for your application. Use

the Website->Asp.Net Configuration option in Visual Studio.

A full list of settings and comments can be found in

machine.config.comments usually located in

\Windows\Microsoft.Net\Framework\v2.x\Config

-->

<configuration>

<appSettings/>

<!-- <connectionStrings/>-->

<system.web>
<!--

Set compilation debug="true" to insert debugging

symbols into the compiled page. Because this

affects performance, set this value to true only

during development.

Visual Basic options:

Set strict="true" to disallow all data type conversions

where data loss can occur.

Set explicit="true" to force declaration of all variables.

-->

<compilation debug="false" strict="false" explicit="true" />

<pages>

<namespaces>

<clear />

<add namespace="System" />

<add namespace="System.Collections" />

<add namespace="System.Collections.Specialized" />

<add namespace="System.Configuration" />

<add namespace="System.Text" />

<add namespace="System.Text.RegularExpressions" />

<add namespace="System.Web" />

<add namespace="System.Web.Caching" />

<add namespace="System.Web.SessionState" />

<add namespace="System.Web.Security" />

<add namespace="System.Web.Profile" />

<add namespace="System.Web.UI" />

<add namespace="System.Web.UI.WebControls" />

<add namespace="System.Web.UI.WebControls.WebParts" />

<add namespace="System.Web.UI.HtmlControls" />

</namespaces>

</pages>

<!--

The <authentication> section enables configuration

of the security authentication mode used by

ASP.NET to identify an incoming user.

-->

<authentication mode="Windows" />

<!--

The <customErrors> section enables configuration

of what to do if/when an unhandled error occurs

during the execution of a request. Specifically,

it enables developers to configure html error pages

to be displayed in place of a error stack trace.

<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">

<error statusCode="403" redirect="NoAccess.htm" />

<error statusCode="404" redirect="FileNotFound.htm" />

</customErrors>

-->

<customErrors mode="Off" />

</system.web>

</configuration>




Mar 14 '06 #6
I think I see the problem It looks like this is running framework version
1.1.

Version Information: Microsoft .NET Framework Version:1.1.4322.2300; ASP.NET
Version:1.1.4322.2300

Am I reading it correctly?

"Mark A. Sam" <ms**@Plan-It-Earth.Net> wrote in message
news:OB**************@TK2MSFTNGP09.phx.gbl...
The support tech remmed out the connectionstrings
<!-- <connectionStrings/>-->
node and now I get the error:
Server Error in '/' Application.
--------------------------------------------------------------------------------

Configuration Error
Description: An error occurred during the processing of a configuration
file required to service this request. Please review the specific error
details below and modify your configuration file appropriately.

Parser Error Message: Child nodes are not allowed.

Source Error:
Line 26: <compilation debug="false" strict="false" explicit="true"
/>
Line 27: <pages>
Line 28: <namespaces>
Line 29: <clear />
Line 30: <add namespace="System" />
Source File: C:\Domains\dragonimporting.com\wwwroot\web.config Line: 28

--------------------------------------------------------------------------------

Version Information: Microsoft .NET Framework Version:1.1.4322.2300;
ASP.NET Version:1.1.4322.2300

I'll post the web.config again: Thank you again for the help. I resolved
the issue with the .jpgs by deleting the images then copy and pasting them
to a new webform page. Maybe this was a fluke..
<?xml version="1.0"?>

<!--

Note: As an alternative to hand editing this file you can use the

web admin tool to configure settings for your application. Use

the Website->Asp.Net Configuration option in Visual Studio.

A full list of settings and comments can be found in

machine.config.comments usually located in

\Windows\Microsoft.Net\Framework\v2.x\Config

-->

<configuration>

<appSettings/>

<!-- <connectionStrings/>-->

<system.web>
<!--

Set compilation debug="true" to insert debugging

symbols into the compiled page. Because this

affects performance, set this value to true only

during development.

Visual Basic options:

Set strict="true" to disallow all data type conversions

where data loss can occur.

Set explicit="true" to force declaration of all variables.

-->

<compilation debug="false" strict="false" explicit="true" />

<pages>

<namespaces>

<clear />

<add namespace="System" />

<add namespace="System.Collections" />

<add namespace="System.Collections.Specialized" />

<add namespace="System.Configuration" />

<add namespace="System.Text" />

<add namespace="System.Text.RegularExpressions" />

<add namespace="System.Web" />

<add namespace="System.Web.Caching" />

<add namespace="System.Web.SessionState" />

<add namespace="System.Web.Security" />

<add namespace="System.Web.Profile" />

<add namespace="System.Web.UI" />

<add namespace="System.Web.UI.WebControls" />

<add namespace="System.Web.UI.WebControls.WebParts" />

<add namespace="System.Web.UI.HtmlControls" />

</namespaces>

</pages>

<!--

The <authentication> section enables configuration

of the security authentication mode used by

ASP.NET to identify an incoming user.

-->

<authentication mode="Windows" />

<!--

The <customErrors> section enables configuration

of what to do if/when an unhandled error occurs

during the execution of a request. Specifically,

it enables developers to configure html error pages

to be displayed in place of a error stack trace.

<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">

<error statusCode="403" redirect="NoAccess.htm" />

<error statusCode="404" redirect="FileNotFound.htm" />

</customErrors>

-->

<customErrors mode="Off" />

</system.web>

</configuration>



Mar 14 '06 #7
The problem is resolved. They configured the site to framework 2.0.

Thanks again for your time and help.

God Bless,

Mark
Mar 14 '06 #8

Thank you,
Glad to see that you were able to resolve the problem.
--------------------
From: "Mark A. Sam" <ms**@Plan-It-Earth.Net>
References: <#F**************@TK2MSFTNGP10.phx.gbl> <$z**************@TK2MSFTNGXA03.phx.gbl>
<#q**************@TK2MSFTNGP11.phx.gbl>
<Co**************@TK2MSFTNGXA03.phx.gbl>Subject: Resolved
Date: Tue, 14 Mar 2006 07:19:58 -0500
Lines: 9
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
X-RFC2646: Format=Flowed; Original
Message-ID: <#$**************@TK2MSFTNGP10.phx.gbl>
Newsgroups: microsoft.public.dotnet.general
NNTP-Posting-Host: dunkirk-cuda1-24-50-80-102.lkwnny.adelphia.net 24.50.80.102Path: TK2MSFTNGXA03.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP10.phx.gbl
Xref: TK2MSFTNGXA03.phx.gbl microsoft.public.dotnet.general:191131
X-Tomcat-NG: microsoft.public.dotnet.general

The problem is resolved. They configured the site to framework 2.0.

Thanks again for your time and help.

God Bless,

Mark


--

Thank You,
Nanda Lella,

This Posting is provided "AS IS" with no warranties, and confers no rights.

Mar 14 '06 #9

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

Similar topics

1
4175
by: Tamas Demjen | last post by:
I started to experiment with VC++ 2005 Beta1. So far everything went fine, and already have a working project, but soon I realized that the compiler was ancient (not supporting half of the C++/CLI...
4
1903
by: Jon Spivey | last post by:
Hi, I've set up a custom error like this <customErrors mode="On" defaultRedirect="ErrorPage.aspx"> <error statusCode="404" redirect="error404.aspx" /> </customErrors> So requests for...
2
2524
by: Matt | last post by:
Hello all, The app we are working on uses custom errors extensively to provide friendly error pages to users whilst logging the actual exceptions behind the scenes. However.... We are now...
6
2824
by: Nick Horrocks | last post by:
I have set up a custom error page for 404 errors. However the HTTP status code returned is 302 followed by 200, this causes search engines not to remove old pages from their index. How can I...
5
2091
by: Richard | last post by:
I have been struggling with this for days. I feel I must be missing something simple, and I will be eternally grateful for any help. I'm using VS.NET 2003 on XP Pro Sp2. I searched and found...
0
1569
by: gilly3 | last post by:
I'm coming across all kinds of frustration implementing custom errors in ASP.NET 1.1. First, 401 - Authorization Failed My application uses Windows Integrated Authentication, and restricts...
2
19404
hyperpau
by: hyperpau | last post by:
Before anything else, I am not a very technical expert when it comes to VBA coding. I learned most of what I know by the excellent Access/VBA forum from bytes.com (formerly thescripts.com). Ergo, I...
0
1376
by: Bobby | last post by:
Hi, I'm using an Access 2007 database which has been converted from 2003. In 2003 it had custom toolbars. When I converted to 2007, the custom toolbars were displayed as "Add-ins". I have 30...
0
2897
hyperpau
by: hyperpau | last post by:
Before anything else, I am not a very technical expert when it comes to VBA coding. I learned most of what I know by the excellent Access/VBA forum from bytes.com (formerly thescripts.com). Ergo, I...
0
7229
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
7129
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...
0
7333
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
7398
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7061
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
7502
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
4716
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3208
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...
0
3194
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

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.