473,320 Members | 1,829 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,320 software developers and data experts.

System.Configuration.Configuration

Can you tell me how to read and modify a value in the app.config file using
this class?
Thank you very much
Feb 6 '07 #1
8 10191
Hi,

The online documentation and examples should be more than adequate:

Configuration Class
http://msdn2.microsoft.com/en-us/lib...iguration.aspx

If you simply need to read/write data in the appSettings element then you
can use the ConfigurationManager class:

ConfigurationManager Class
http://msdn2.microsoft.com/en-us/lib...onmanager.aspx

You may also want to check out Application Settings, new to the 2.0
Framework:

Application Settings Overview
http://msdn2.microsoft.com/en-us/library/k4s6c3a0.aspx

--
Dave Sexton
http://davesexton.com/blog
http://www.codeplex.com/DocProject (Sandcastle in Visual Studio 2005)

"Alberto" <al*****@nospam.eswrote in message
news:eu*************@TK2MSFTNGP02.phx.gbl...
Can you tell me how to read and modify a value in the app.config file
using this class?
Thank you very much

Feb 7 '07 #2
Hi!

Funny, i am just dealing with a problem related to this.

I cant access the configuration class somehow...

I use the System.Configuration, but for some reason the
System.Configuration.Configuration is not accessible from the
System.Configuration?!? I do have net framework 2 installed...

Any idea?

Regards
Martin

"Dave Sexton" <dave@jwa[remove.this]online.comskrev i meddelandet
news:OF**************@TK2MSFTNGP05.phx.gbl...
Hi,

The online documentation and examples should be more than adequate:

Configuration Class
http://msdn2.microsoft.com/en-us/lib...iguration.aspx

If you simply need to read/write data in the appSettings element then you
can use the ConfigurationManager class:

ConfigurationManager Class
http://msdn2.microsoft.com/en-us/lib...onmanager.aspx

You may also want to check out Application Settings, new to the 2.0
Framework:

Application Settings Overview
http://msdn2.microsoft.com/en-us/library/k4s6c3a0.aspx

--
Dave Sexton
http://davesexton.com/blog
http://www.codeplex.com/DocProject (Sandcastle in Visual Studio 2005)

"Alberto" <al*****@nospam.eswrote in message
news:eu*************@TK2MSFTNGP02.phx.gbl...
>Can you tell me how to read and modify a value in the app.config file
using this class?
Thank you very much


Feb 8 '07 #3
Hi Martin,

You can't see it or just can't access it? Realize that the Configuration
class has not static method or properties (other than ReferenceEquals,
inherited from Object). It may be the ConfigurationManager class that
you're after.

If you have added a System.Configuration assembly reference to your project,
then I see no reason why the Configuration class wouldn't be visible in the
code editor. You tried a using directive or fully-qualifying the type name
in code?

Also, Configuration is sealed, and so cannot be inherited. If you're trying
to type it after a ":" then Visual Studio may be excluding it from
IntelliSense.

--
Dave Sexton
http://davesexton.com/blog
http://www.codeplex.com/DocProject (Sandcastle in Visual Studio 2005)

"Martin Arvidsson, Visual Systems AB" <ma**************@vsab.netwrote in
message news:eP*************@TK2MSFTNGP04.phx.gbl...
Hi!

Funny, i am just dealing with a problem related to this.

I cant access the configuration class somehow...

I use the System.Configuration, but for some reason the
System.Configuration.Configuration is not accessible from the
System.Configuration?!? I do have net framework 2 installed...

Any idea?

Regards
Martin

"Dave Sexton" <dave@jwa[remove.this]online.comskrev i meddelandet
news:OF**************@TK2MSFTNGP05.phx.gbl...
>Hi,

The online documentation and examples should be more than adequate:

Configuration Class
http://msdn2.microsoft.com/en-us/lib...iguration.aspx

If you simply need to read/write data in the appSettings element then you
can use the ConfigurationManager class:

ConfigurationManager Class
http://msdn2.microsoft.com/en-us/lib...onmanager.aspx

You may also want to check out Application Settings, new to the 2.0
Framework:

Application Settings Overview
http://msdn2.microsoft.com/en-us/library/k4s6c3a0.aspx

--
Dave Sexton
http://davesexton.com/blog
http://www.codeplex.com/DocProject (Sandcastle in Visual Studio 2005)

"Alberto" <al*****@nospam.eswrote in message
news:eu*************@TK2MSFTNGP02.phx.gbl...
>>Can you tell me how to read and modify a value in the app.config file
using this class?
Thank you very much



Feb 8 '07 #4
Hi!

I have tried to use the folowing.

* Use System.Configuration;
* System.Configuration.Configuration config = xxxxxx; (xxx = other code)

For some darn reason it just wont come up. if i compile i get an error.

I have made sure i have the latest .NET Framework 2 and that the project
uses the .NET 2 Framework.

Regards
Martin
"Dave Sexton" <dave@jwa[remove.this]online.comskrev i meddelandet
news:eH**************@TK2MSFTNGP02.phx.gbl...
Hi Martin,

You can't see it or just can't access it? Realize that the Configuration
class has not static method or properties (other than ReferenceEquals,
inherited from Object). It may be the ConfigurationManager class that
you're after.

If you have added a System.Configuration assembly reference to your
project, then I see no reason why the Configuration class wouldn't be
visible in the code editor. You tried a using directive or
fully-qualifying the type name in code?

Also, Configuration is sealed, and so cannot be inherited. If you're
trying to type it after a ":" then Visual Studio may be excluding it from
IntelliSense.

--
Dave Sexton
http://davesexton.com/blog
http://www.codeplex.com/DocProject (Sandcastle in Visual Studio 2005)

"Martin Arvidsson, Visual Systems AB" <ma**************@vsab.netwrote in
message news:eP*************@TK2MSFTNGP04.phx.gbl...
>Hi!

Funny, i am just dealing with a problem related to this.

I cant access the configuration class somehow...

I use the System.Configuration, but for some reason the
System.Configuration.Configuration is not accessible from the
System.Configuration?!? I do have net framework 2 installed...

Any idea?

Regards
Martin

"Dave Sexton" <dave@jwa[remove.this]online.comskrev i meddelandet
news:OF**************@TK2MSFTNGP05.phx.gbl...
>>Hi,

The online documentation and examples should be more than adequate:

Configuration Class
http://msdn2.microsoft.com/en-us/lib...iguration.aspx

If you simply need to read/write data in the appSettings element then
you can use the ConfigurationManager class:

ConfigurationManager Class
http://msdn2.microsoft.com/en-us/lib...onmanager.aspx

You may also want to check out Application Settings, new to the 2.0
Framework:

Application Settings Overview
http://msdn2.microsoft.com/en-us/library/k4s6c3a0.aspx

--
Dave Sexton
http://davesexton.com/blog
http://www.codeplex.com/DocProject (Sandcastle in Visual Studio 2005)

"Alberto" <al*****@nospam.eswrote in message
news:eu*************@TK2MSFTNGP02.phx.gbl...
Can you tell me how to read and modify a value in the app.config file
using this class?
Thank you very much



Feb 8 '07 #5
Ill throw in the compiler error as well:

Error 1 The type or namespace name 'Configuration' does not exist in the
namespace 'System.Configuration' (are you missing an assembly reference?)

And the declared line is:

public void OpenFile()
{
System.Configuration.Configuration config;
}

(The last Configuration is underlined by the compiler...)

Regards
Martin

"Martin Arvidsson, Visual Systems AB" <ma**************@vsab.netskrev i
meddelandet news:Oc**************@TK2MSFTNGP02.phx.gbl...
Hi!

I have tried to use the folowing.

* Use System.Configuration;
* System.Configuration.Configuration config = xxxxxx; (xxx = other code)

For some darn reason it just wont come up. if i compile i get an error.

I have made sure i have the latest .NET Framework 2 and that the project
uses the .NET 2 Framework.

Regards
Martin
"Dave Sexton" <dave@jwa[remove.this]online.comskrev i meddelandet
news:eH**************@TK2MSFTNGP02.phx.gbl...
>Hi Martin,

You can't see it or just can't access it? Realize that the Configuration
class has not static method or properties (other than ReferenceEquals,
inherited from Object). It may be the ConfigurationManager class that
you're after.

If you have added a System.Configuration assembly reference to your
project, then I see no reason why the Configuration class wouldn't be
visible in the code editor. You tried a using directive or
fully-qualifying the type name in code?

Also, Configuration is sealed, and so cannot be inherited. If you're
trying to type it after a ":" then Visual Studio may be excluding it from
IntelliSense.

--
Dave Sexton
http://davesexton.com/blog
http://www.codeplex.com/DocProject (Sandcastle in Visual Studio 2005)

"Martin Arvidsson, Visual Systems AB" <ma**************@vsab.netwrote
in message news:eP*************@TK2MSFTNGP04.phx.gbl...
>>Hi!

Funny, i am just dealing with a problem related to this.

I cant access the configuration class somehow...

I use the System.Configuration, but for some reason the
System.Configuration.Configuration is not accessible from the
System.Configuration?!? I do have net framework 2 installed...

Any idea?

Regards
Martin

"Dave Sexton" <dave@jwa[remove.this]online.comskrev i meddelandet
news:OF**************@TK2MSFTNGP05.phx.gbl...
Hi,

The online documentation and examples should be more than adequate:

Configuration Class
http://msdn2.microsoft.com/en-us/lib...iguration.aspx

If you simply need to read/write data in the appSettings element then
you can use the ConfigurationManager class:

ConfigurationManager Class
http://msdn2.microsoft.com/en-us/lib...onmanager.aspx

You may also want to check out Application Settings, new to the 2.0
Framework:

Application Settings Overview
http://msdn2.microsoft.com/en-us/library/k4s6c3a0.aspx

--
Dave Sexton
http://davesexton.com/blog
http://www.codeplex.com/DocProject (Sandcastle in Visual Studio 2005)

"Alberto" <al*****@nospam.eswrote in message
news:eu*************@TK2MSFTNGP02.phx.gbl...
Can you tell me how to read and modify a value in the app.config file
using this class?
Thank you very much
>




Feb 8 '07 #6
Hi Martin,

You're sure that you have referenced the System.Configuration assembly in
your project from the .NET tab?

Try opening the object browser and expand the System.Configuration node.
Can you find the Configuration class in there? (If you can't find the
System.Configuration namespace then the assembly probably isn't referenced
by any of your projects).

--
Dave Sexton
http://davesexton.com/blog
http://www.codeplex.com/DocProject (Sandcastle in Visual Studio 2005)

"Martin Arvidsson, Visual Systems AB" <ma**************@vsab.netwrote in
message news:eR**************@TK2MSFTNGP05.phx.gbl...
Ill throw in the compiler error as well:

Error 1 The type or namespace name 'Configuration' does not exist in the
namespace 'System.Configuration' (are you missing an assembly reference?)

And the declared line is:

public void OpenFile()
{
System.Configuration.Configuration config;
}

(The last Configuration is underlined by the compiler...)

Regards
Martin

"Martin Arvidsson, Visual Systems AB" <ma**************@vsab.netskrev i
meddelandet news:Oc**************@TK2MSFTNGP02.phx.gbl...
>Hi!

I have tried to use the folowing.

* Use System.Configuration;
* System.Configuration.Configuration config = xxxxxx; (xxx = other code)

For some darn reason it just wont come up. if i compile i get an error.

I have made sure i have the latest .NET Framework 2 and that the project
uses the .NET 2 Framework.

Regards
Martin
"Dave Sexton" <dave@jwa[remove.this]online.comskrev i meddelandet
news:eH**************@TK2MSFTNGP02.phx.gbl...
>>Hi Martin,

You can't see it or just can't access it? Realize that the
Configuration class has not static method or properties (other than
ReferenceEquals, inherited from Object). It may be the
ConfigurationManager class that you're after.

If you have added a System.Configuration assembly reference to your
project, then I see no reason why the Configuration class wouldn't be
visible in the code editor. You tried a using directive or
fully-qualifying the type name in code?

Also, Configuration is sealed, and so cannot be inherited. If you're
trying to type it after a ":" then Visual Studio may be excluding it
from IntelliSense.

--
Dave Sexton
http://davesexton.com/blog
http://www.codeplex.com/DocProject (Sandcastle in Visual Studio 2005)

"Martin Arvidsson, Visual Systems AB" <ma**************@vsab.netwrote
in message news:eP*************@TK2MSFTNGP04.phx.gbl...
Hi!

Funny, i am just dealing with a problem related to this.

I cant access the configuration class somehow...

I use the System.Configuration, but for some reason the
System.Configuration.Configuration is not accessible from the
System.Configuration?!? I do have net framework 2 installed...

Any idea?

Regards
Martin

"Dave Sexton" <dave@jwa[remove.this]online.comskrev i meddelandet
news:OF**************@TK2MSFTNGP05.phx.gbl...
Hi,
>
The online documentation and examples should be more than adequate:
>
Configuration Class
http://msdn2.microsoft.com/en-us/lib...iguration.aspx
>
If you simply need to read/write data in the appSettings element then
you can use the ConfigurationManager class:
>
ConfigurationManager Class
http://msdn2.microsoft.com/en-us/lib...onmanager.aspx
>
You may also want to check out Application Settings, new to the 2.0
Framework:
>
Application Settings Overview
http://msdn2.microsoft.com/en-us/library/k4s6c3a0.aspx
>
--
Dave Sexton
http://davesexton.com/blog
http://www.codeplex.com/DocProject (Sandcastle in Visual Studio 2005)
>
"Alberto" <al*****@nospam.eswrote in message
news:eu*************@TK2MSFTNGP02.phx.gbl...
>Can you tell me how to read and modify a value in the app.config file
>using this class?
>Thank you very much
>>
>
>




Feb 9 '07 #7
Well. that was an experience...

Isn't all assemblies loaded for Visual Studio to use?

When i added it it worked like charm :)

Thanx!

/Martin

"Dave Sexton" <dave@jwa[remove.this]online.comskrev i meddelandet
news:%2****************@TK2MSFTNGP03.phx.gbl...
Hi Martin,

You're sure that you have referenced the System.Configuration assembly in
your project from the .NET tab?

Try opening the object browser and expand the System.Configuration node.
Can you find the Configuration class in there? (If you can't find the
System.Configuration namespace then the assembly probably isn't referenced
by any of your projects).

--
Dave Sexton
http://davesexton.com/blog
http://www.codeplex.com/DocProject (Sandcastle in Visual Studio 2005)

"Martin Arvidsson, Visual Systems AB" <ma**************@vsab.netwrote in
message news:eR**************@TK2MSFTNGP05.phx.gbl...
>Ill throw in the compiler error as well:

Error 1 The type or namespace name 'Configuration' does not exist in the
namespace 'System.Configuration' (are you missing an assembly reference?)

And the declared line is:

public void OpenFile()
{
System.Configuration.Configuration config;
}

(The last Configuration is underlined by the compiler...)

Regards
Martin

"Martin Arvidsson, Visual Systems AB" <ma**************@vsab.netskrev i
meddelandet news:Oc**************@TK2MSFTNGP02.phx.gbl...
>>Hi!

I have tried to use the folowing.

* Use System.Configuration;
* System.Configuration.Configuration config = xxxxxx; (xxx = other code)

For some darn reason it just wont come up. if i compile i get an error.

I have made sure i have the latest .NET Framework 2 and that the project
uses the .NET 2 Framework.

Regards
Martin
"Dave Sexton" <dave@jwa[remove.this]online.comskrev i meddelandet
news:eH**************@TK2MSFTNGP02.phx.gbl...
Hi Martin,

You can't see it or just can't access it? Realize that the
Configuration class has not static method or properties (other than
ReferenceEquals, inherited from Object). It may be the
ConfigurationManager class that you're after.

If you have added a System.Configuration assembly reference to your
project, then I see no reason why the Configuration class wouldn't be
visible in the code editor. You tried a using directive or
fully-qualifying the type name in code?

Also, Configuration is sealed, and so cannot be inherited. If you're
trying to type it after a ":" then Visual Studio may be excluding it
from IntelliSense.

--
Dave Sexton
http://davesexton.com/blog
http://www.codeplex.com/DocProject (Sandcastle in Visual Studio 2005)

"Martin Arvidsson, Visual Systems AB" <ma**************@vsab.netwrote
in message news:eP*************@TK2MSFTNGP04.phx.gbl...
Hi!
>
Funny, i am just dealing with a problem related to this.
>
I cant access the configuration class somehow...
>
I use the System.Configuration, but for some reason the
System.Configuration.Configuration is not accessible from the
System.Configuration?!? I do have net framework 2 installed...
>
Any idea?
>
Regards
Martin
>
"Dave Sexton" <dave@jwa[remove.this]online.comskrev i meddelandet
news:OF**************@TK2MSFTNGP05.phx.gbl.. .
>Hi,
>>
>The online documentation and examples should be more than adequate:
>>
>Configuration Class
>http://msdn2.microsoft.com/en-us/lib...iguration.aspx
>>
>If you simply need to read/write data in the appSettings element then
>you can use the ConfigurationManager class:
>>
>ConfigurationManager Class
>http://msdn2.microsoft.com/en-us/lib...onmanager.aspx
>>
>You may also want to check out Application Settings, new to the 2.0
>Framework:
>>
>Application Settings Overview
>http://msdn2.microsoft.com/en-us/library/k4s6c3a0.aspx
>>
>--
>Dave Sexton
>http://davesexton.com/blog
>http://www.codeplex.com/DocProject (Sandcastle in Visual Studio 2005)
>>
>"Alberto" <al*****@nospam.eswrote in message
>news:eu*************@TK2MSFTNGP02.phx.gbl.. .
>>Can you tell me how to read and modify a value in the app.config
>>file using this class?
>>Thank you very much
>>>
>>
>>
>
>




Feb 9 '07 #8
Hi Martin,
Isn't all assemblies loaded for Visual Studio to use?
The C# compiler references mscorlib automatically, by default. Visual
Studio may add some references for you to new projects created by a
particular template. For instance, a new WinForms project will have a
reference to System.Windows.Forms.dll. You have to add any references that
Visual Studio doesn't add for you.

--
Dave Sexton
http://davesexton.com/blog
http://www.codeplex.com/DocProject (Sandcastle in Visual Studio 2005)

"Martin Arvidsson, Visual Systems AB" <ma**************@vsab.netwrote in
message news:O5*************@TK2MSFTNGP05.phx.gbl...
Well. that was an experience...

Isn't all assemblies loaded for Visual Studio to use?

When i added it it worked like charm :)

Thanx!

/Martin

"Dave Sexton" <dave@jwa[remove.this]online.comskrev i meddelandet
news:%2****************@TK2MSFTNGP03.phx.gbl...
>Hi Martin,

You're sure that you have referenced the System.Configuration assembly in
your project from the .NET tab?

Try opening the object browser and expand the System.Configuration node.
Can you find the Configuration class in there? (If you can't find the
System.Configuration namespace then the assembly probably isn't
referenced by any of your projects).

--
Dave Sexton
http://davesexton.com/blog
http://www.codeplex.com/DocProject (Sandcastle in Visual Studio 2005)

"Martin Arvidsson, Visual Systems AB" <ma**************@vsab.netwrote
in message news:eR**************@TK2MSFTNGP05.phx.gbl...
>>Ill throw in the compiler error as well:

Error 1 The type or namespace name 'Configuration' does not exist in the
namespace 'System.Configuration' (are you missing an assembly
reference?)

And the declared line is:

public void OpenFile()
{
System.Configuration.Configuration config;
}

(The last Configuration is underlined by the compiler...)

Regards
Martin

"Martin Arvidsson, Visual Systems AB" <ma**************@vsab.netskrev
i meddelandet news:Oc**************@TK2MSFTNGP02.phx.gbl...
Hi!

I have tried to use the folowing.

* Use System.Configuration;
* System.Configuration.Configuration config = xxxxxx; (xxx = other
code)

For some darn reason it just wont come up. if i compile i get an error.

I have made sure i have the latest .NET Framework 2 and that the
project uses the .NET 2 Framework.

Regards
Martin
"Dave Sexton" <dave@jwa[remove.this]online.comskrev i meddelandet
news:eH**************@TK2MSFTNGP02.phx.gbl...
Hi Martin,
>
You can't see it or just can't access it? Realize that the
Configuration class has not static method or properties (other than
ReferenceEquals, inherited from Object). It may be the
ConfigurationManager class that you're after.
>
If you have added a System.Configuration assembly reference to your
project, then I see no reason why the Configuration class wouldn't be
visible in the code editor. You tried a using directive or
fully-qualifying the type name in code?
>
Also, Configuration is sealed, and so cannot be inherited. If you're
trying to type it after a ":" then Visual Studio may be excluding it
from IntelliSense.
>
--
Dave Sexton
http://davesexton.com/blog
http://www.codeplex.com/DocProject (Sandcastle in Visual Studio 2005)
>
"Martin Arvidsson, Visual Systems AB" <ma**************@vsab.net>
wrote in message news:eP*************@TK2MSFTNGP04.phx.gbl...
>Hi!
>>
>Funny, i am just dealing with a problem related to this.
>>
>I cant access the configuration class somehow...
>>
>I use the System.Configuration, but for some reason the
>System.Configuration.Configuration is not accessible from the
>System.Configuration?!? I do have net framework 2 installed...
>>
>Any idea?
>>
>Regards
>Martin
>>
>"Dave Sexton" <dave@jwa[remove.this]online.comskrev i meddelandet
>news:OF**************@TK2MSFTNGP05.phx.gbl. ..
>>Hi,
>>>
>>The online documentation and examples should be more than adequate:
>>>
>>Configuration Class
>>http://msdn2.microsoft.com/en-us/lib...iguration.aspx
>>>
>>If you simply need to read/write data in the appSettings element
>>then you can use the ConfigurationManager class:
>>>
>>ConfigurationManager Class
>>http://msdn2.microsoft.com/en-us/lib...onmanager.aspx
>>>
>>You may also want to check out Application Settings, new to the 2.0
>>Framework:
>>>
>>Application Settings Overview
>>http://msdn2.microsoft.com/en-us/library/k4s6c3a0.aspx
>>>
>>--
>>Dave Sexton
>>http://davesexton.com/blog
>>http://www.codeplex.com/DocProject (Sandcastle in Visual Studio
>>2005)
>>>
>>"Alberto" <al*****@nospam.eswrote in message
>>news:eu*************@TK2MSFTNGP02.phx.gbl. ..
>>>Can you tell me how to read and modify a value in the app.config
>>>file using this class?
>>>Thank you very much
>>>>
>>>
>>>
>>
>>
>
>




Feb 9 '07 #9

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

Similar topics

0
by: phillip | last post by:
This is interesting, I have attached my web.config file and the exception I have been logging. I created a library which provide data access to a database and a control system. The library is...
3
by: hB | last post by:
Hi. Error = "The configuration system can only be set once. Configuration system is already set" Exception Details: System.InvalidOperationExcepti­on: The configuration system can only...
3
by: Michael Schwarz | last post by:
Hi, from time to time I get following error message with my ASP.NET 2.0 web application in the event log: An error occurred executing the configuration section handler for system.web/identity. ...
4
by: Michael Lang | last post by:
I was basically wanting to know how to use the System.Configuration namespace to be able to load an arbitrary number of unknown attributes on an element in a custom section in the .config into a...
6
by: Jeff Hegedus | last post by:
I have a dll that requires some configuration data. I put the configuration data in a custom configuration section in a config file that is loaded in the installation folder of the dll. If I...
0
by: =?Utf-8?B?Uml0YUc=?= | last post by:
Hello. I'm trying to capture/determine in code the System.Web.Configuration.AuthenticationMode. I found an example on the Internet but when I added it to my code I received a build error....
0
by: Rob Schieber | last post by:
Hi, I would like to create a centeralized configuration system for our company's ..net projects. Unfortunately this has been nearly impossible to do thanks to the current .net Configuration...
3
by: Mike | last post by:
Hi I have problem as folow: Caught Exception: System.Configuration.ConfigurationErrorsException: An error occurred loading a configuration file: Request for the permission of type...
0
by: =?Utf-8?B?QWxoYW1icmEgRWlkb3MgRGVzYXJyb2xsbw==?= | last post by:
Hi, thanks, mister The code string rutaConfig = tbRutaConfigServicioBase.Text; '// Map to the application configuration file. ExeConfigurationFileMap configFile = New...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
0
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

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.