473,729 Members | 2,376 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Add and set a key in Remote Systems's registry in C#

I am working in a domain environment. I am on a client machine and
wants to edit registery of domain server. I am currently in a Domain
user account and member of Domain administrators on the domain
controller. I am able to open registry manully by connecting the remote
registry. While doing the same programatically i am getting the
following exception :

CODE :

RegistryKey baseKey =
RegistryKey.Ope nRemoteBaseKey( RegistryHive.Lo calMachine, "server");

RegistryKey sk1 =
baseKey.OpenSub Key(@"SYSTEM\Cu rrentControlSet \Services\EXIFS \Parameters");
string key = "incoming";
sk1.CreateSubKe y(key);
sk1.SetValue(ke y, 1, RegistryValueKi nd.DWord);

EXCEPTION:

System.Unauthor izedAccessExcep tion was unhandled
Message="Cannot write to the registry key."
Source="mscorli b"
StackTrace:
at
System.ThrowHel per.ThrowUnauth orizedAccessExc eption(Exceptio nResource
resource)
at Microsoft.Win32 .RegistryKey.Cr eateSubKey(Stri ng subkey,
RegistryKeyPerm issionCheck permissionCheck , RegistrySecurit y
registrySecurit y)
at Microsoft.Win32 .RegistryKey.Cr eateSubKey(Stri ng subkey)
at MyEventSink.Exc hangeConnect.Se ndMessage.Main( String[] srgs)
in D:\Parv\Data\Vi sual
Basic\MyEventSi nk\ExchangeConn ect\SendMessage .cs:line 53
at System.AppDomai n.nExecuteAssem bly(Assembly assembly, String[]
args)
at System.Runtime. Hosting.Manifes tRunner.Run(Boo lean
checkAptModel)
at System.Runtime. Hosting.Manifes tRunner.Execute AsAssembly()
at
System.Runtime. Hosting.Applica tionActivator.C reateInstance(A ctivationContex t
activationConte xt, String[] activationCusto mData)
at
System.Runtime. Hosting.Applica tionActivator.C reateInstance(A ctivationContex t
activationConte xt)
at
Microsoft.Visua lStudio.Hosting Process.HostPro c.RunUsersAssem blyDebugInZone( )
at System.Threadin g.ThreadHelper. ThreadStart_Con text(Object
state)
at System.Threadin g.ExecutionCont ext.Run(Executi onContext
executionContex t, ContextCallback callback, Object state)
at System.Threadin g.ThreadHelper. ThreadStart()

What i am doing wrong ?

Thanx in advance.

With Best Regards
Parveen Beniwal

Aug 11 '06 #1
5 7952
Are you sure the code runs as domain admin?
To make sure, turn on security auditing on the DC and watch the security
eventlog, this should contain a message specifying the account that failed
to access the registry object.

Willy.

"Parv" <Pa************ **********@gmai l.comwrote in message
news:11******** *************@m 73g2000cwd.goog legroups.com...
|I am working in a domain environment. I am on a client machine and
| wants to edit registery of domain server. I am currently in a Domain
| user account and member of Domain administrators on the domain
| controller. I am able to open registry manully by connecting the remote
| registry. While doing the same programatically i am getting the
| following exception :
|
| CODE :
|
| RegistryKey baseKey =
| RegistryKey.Ope nRemoteBaseKey( RegistryHive.Lo calMachine, "server");
|
| RegistryKey sk1 =
| baseKey.OpenSub Key(@"SYSTEM\Cu rrentControlSet \Services\EXIFS \Parameters");
| string key = "incoming";
| sk1.CreateSubKe y(key);
| sk1.SetValue(ke y, 1, RegistryValueKi nd.DWord);
|
| EXCEPTION:
|
| System.Unauthor izedAccessExcep tion was unhandled
| Message="Cannot write to the registry key."
| Source="mscorli b"
| StackTrace:
| at
| System.ThrowHel per.ThrowUnauth orizedAccessExc eption(Exceptio nResource
| resource)
| at Microsoft.Win32 .RegistryKey.Cr eateSubKey(Stri ng subkey,
| RegistryKeyPerm issionCheck permissionCheck , RegistrySecurit y
| registrySecurit y)
| at Microsoft.Win32 .RegistryKey.Cr eateSubKey(Stri ng subkey)
| at MyEventSink.Exc hangeConnect.Se ndMessage.Main( String[] srgs)
| in D:\Parv\Data\Vi sual
| Basic\MyEventSi nk\ExchangeConn ect\SendMessage .cs:line 53
| at System.AppDomai n.nExecuteAssem bly(Assembly assembly, String[]
| args)
| at System.Runtime. Hosting.Manifes tRunner.Run(Boo lean
| checkAptModel)
| at System.Runtime. Hosting.Manifes tRunner.Execute AsAssembly()
| at
|
System.Runtime. Hosting.Applica tionActivator.C reateInstance(A ctivationContex t
| activationConte xt, String[] activationCusto mData)
| at
|
System.Runtime. Hosting.Applica tionActivator.C reateInstance(A ctivationContex t
| activationConte xt)
| at
|
Microsoft.Visua lStudio.Hosting Process.HostPro c.RunUsersAssem blyDebugInZone( )
| at System.Threadin g.ThreadHelper. ThreadStart_Con text(Object
| state)
| at System.Threadin g.ExecutionCont ext.Run(Executi onContext
| executionContex t, ContextCallback callback, Object state)
| at System.Threadin g.ThreadHelper. ThreadStart()
|
| What i am doing wrong ?
|
| Thanx in advance.
|
| With Best Regards
| Parveen Beniwal
|
Aug 11 '06 #2
thanx, i have tried this but there is no security log for my Login
attempt on the DC. One more thing same is happenning when i am
attempting to edit my own system's registry. And on my system too there
is no log for login attempt.

With Best Regards
Parveen Beniwal
Willy Denoyette [MVP] wrote:
Are you sure the code runs as domain admin?
To make sure, turn on security auditing on the DC and watch the security
eventlog, this should contain a message specifying the account that failed
to access the registry object.

Willy.

"Parv" <Pa************ **********@gmai l.comwrote in message
news:11******** *************@m 73g2000cwd.goog legroups.com...
|I am working in a domain environment. I am on a client machine and
| wants to edit registery of domain server. I am currently in a Domain
| user account and member of Domain administrators on the domain
| controller. I am able to open registry manully by connecting the remote
| registry. While doing the same programatically i am getting the
| following exception :
|
| CODE :
|
| RegistryKey baseKey =
| RegistryKey.Ope nRemoteBaseKey( RegistryHive.Lo calMachine, "server");
|
| RegistryKey sk1 =
| baseKey.OpenSub Key(@"SYSTEM\Cu rrentControlSet \Services\EXIFS \Parameters");
| string key = "incoming";
| sk1.CreateSubKe y(key);
| sk1.SetValue(ke y, 1, RegistryValueKi nd.DWord);
|
| EXCEPTION:
|
| System.Unauthor izedAccessExcep tion was unhandled
| Message="Cannot write to the registry key."
| Source="mscorli b"
| StackTrace:
| at
| System.ThrowHel per.ThrowUnauth orizedAccessExc eption(Exceptio nResource
| resource)
| at Microsoft.Win32 .RegistryKey.Cr eateSubKey(Stri ng subkey,
| RegistryKeyPerm issionCheck permissionCheck , RegistrySecurit y
| registrySecurit y)
| at Microsoft.Win32 .RegistryKey.Cr eateSubKey(Stri ng subkey)
| at MyEventSink.Exc hangeConnect.Se ndMessage.Main( String[] srgs)
| in D:\Parv\Data\Vi sual
| Basic\MyEventSi nk\ExchangeConn ect\SendMessage .cs:line 53
| at System.AppDomai n.nExecuteAssem bly(Assembly assembly, String[]
| args)
| at System.Runtime. Hosting.Manifes tRunner.Run(Boo lean
| checkAptModel)
| at System.Runtime. Hosting.Manifes tRunner.Execute AsAssembly()
| at
|
System.Runtime. Hosting.Applica tionActivator.C reateInstance(A ctivationContex t
| activationConte xt, String[] activationCusto mData)
| at
|
System.Runtime. Hosting.Applica tionActivator.C reateInstance(A ctivationContex t
| activationConte xt)
| at
|
Microsoft.Visua lStudio.Hosting Process.HostPro c.RunUsersAssem blyDebugInZone( )
| at System.Threadin g.ThreadHelper. ThreadStart_Con text(Object
| state)
| at System.Threadin g.ExecutionCont ext.Run(Executi onContext
| executionContex t, ContextCallback callback, Object state)
| at System.Threadin g.ThreadHelper. ThreadStart()
|
| What i am doing wrong ?
|
| Thanx in advance.
|
| With Best Regards
| Parveen Beniwal
|
Aug 12 '06 #3
Please be more specific, what's your own system and what account are you
running under?

Willy.

"Parv" <Pa************ **********@gmai l.comwrote in message
news:11******** **************@ 74g2000cwt.goog legroups.com...
| thanx, i have tried this but there is no security log for my Login
| attempt on the DC. One more thing same is happenning when i am
| attempting to edit my own system's registry. And on my system too there
| is no log for login attempt.
|
| With Best Regards
| Parveen Beniwal
| Willy Denoyette [MVP] wrote:
| Are you sure the code runs as domain admin?
| To make sure, turn on security auditing on the DC and watch the security
| eventlog, this should contain a message specifying the account that
failed
| to access the registry object.
| >
| Willy.
| >
| "Parv" <Pa************ **********@gmai l.comwrote in message
| news:11******** *************@m 73g2000cwd.goog legroups.com...
| |I am working in a domain environment. I am on a client machine and
| | wants to edit registery of domain server. I am currently in a Domain
| | user account and member of Domain administrators on the domain
| | controller. I am able to open registry manully by connecting the
remote
| | registry. While doing the same programatically i am getting the
| | following exception :
| |
| | CODE :
| |
| | RegistryKey baseKey =
| | RegistryKey.Ope nRemoteBaseKey( RegistryHive.Lo calMachine, "server");
| |
| | RegistryKey sk1 =
| |
baseKey.OpenSub Key(@"SYSTEM\Cu rrentControlSet \Services\EXIFS \Parameters");
| | string key = "incoming";
| | sk1.CreateSubKe y(key);
| | sk1.SetValue(ke y, 1, RegistryValueKi nd.DWord);
| |
| | EXCEPTION:
| |
| | System.Unauthor izedAccessExcep tion was unhandled
| | Message="Cannot write to the registry key."
| | Source="mscorli b"
| | StackTrace:
| | at
| | System.ThrowHel per.ThrowUnauth orizedAccessExc eption(Exceptio nResource
| | resource)
| | at Microsoft.Win32 .RegistryKey.Cr eateSubKey(Stri ng subkey,
| | RegistryKeyPerm issionCheck permissionCheck , RegistrySecurit y
| | registrySecurit y)
| | at Microsoft.Win32 .RegistryKey.Cr eateSubKey(Stri ng subkey)
| | at MyEventSink.Exc hangeConnect.Se ndMessage.Main( String[] srgs)
| | in D:\Parv\Data\Vi sual
| | Basic\MyEventSi nk\ExchangeConn ect\SendMessage .cs:line 53
| | at System.AppDomai n.nExecuteAssem bly(Assembly assembly, String[]
| | args)
| | at System.Runtime. Hosting.Manifes tRunner.Run(Boo lean
| | checkAptModel)
| | at System.Runtime. Hosting.Manifes tRunner.Execute AsAssembly()
| | at
| |
| >
System.Runtime. Hosting.Applica tionActivator.C reateInstance(A ctivationContex t
| | activationConte xt, String[] activationCusto mData)
| | at
| |
| >
System.Runtime. Hosting.Applica tionActivator.C reateInstance(A ctivationContex t
| | activationConte xt)
| | at
| |
| >
Microsoft.Visua lStudio.Hosting Process.HostPro c.RunUsersAssem blyDebugInZone( )
| | at System.Threadin g.ThreadHelper. ThreadStart_Con text(Object
| | state)
| | at System.Threadin g.ExecutionCont ext.Run(Executi onContext
| | executionContex t, ContextCallback callback, Object state)
| | at System.Threadin g.ThreadHelper. ThreadStart()
| |
| | What i am doing wrong ?
| |
| | Thanx in advance.
| |
| | With Best Regards
| | Parveen Beniwal
| |
|
Aug 13 '06 #4
ok, let me elaborate my case again.Actually i m working on a windows
2000 professional client system and working in a 2000 Advanced server
Domain environment. And i am using my own user account as
parveen.beniwal which is member of Domain admins and Administrator on
the Domain Controller. Now i want to update registry of my domain
controller from my client computer. I am able to do this manually but
programatically . Please help..
With Best Regards
Parveen Beniwal

Willy Denoyette [MVP] wrote:
Please be more specific, what's your own system and what account are you
running under?

Willy.

"Parv" <Pa************ **********@gmai l.comwrote in message
news:11******** **************@ 74g2000cwt.goog legroups.com...
| thanx, i have tried this but there is no security log for my Login
| attempt on the DC. One more thing same is happenning when i am
| attempting to edit my own system's registry. And on my system too there
| is no log for login attempt.
|
| With Best Regards
| Parveen Beniwal
| Willy Denoyette [MVP] wrote:
| Are you sure the code runs as domain admin?
| To make sure, turn on security auditing on the DC and watch the security
| eventlog, this should contain a message specifying the account that
failed
| to access the registry object.
| >
| Willy.
| >
| "Parv" <Pa************ **********@gmai l.comwrote in message
| news:11******** *************@m 73g2000cwd.goog legroups.com...
| |I am working in a domain environment. I am on a client machine and
| | wants to edit registery of domain server. I am currently in a Domain
| | user account and member of Domain administrators on the domain
| | controller. I am able to open registry manully by connecting the
remote
| | registry. While doing the same programatically i am getting the
| | following exception :
| |
| | CODE :
| |
| | RegistryKey baseKey =
| | RegistryKey.Ope nRemoteBaseKey( RegistryHive.Lo calMachine, "server");
| |
| | RegistryKey sk1 =
| |
baseKey.OpenSub Key(@"SYSTEM\Cu rrentControlSet \Services\EXIFS \Parameters");
| | string key = "incoming";
| | sk1.CreateSubKe y(key);
| | sk1.SetValue(ke y, 1, RegistryValueKi nd.DWord);
| |
| | EXCEPTION:
| |
| | System.Unauthor izedAccessExcep tion was unhandled
| | Message="Cannot write to the registry key."
| | Source="mscorli b"
| | StackTrace:
| | at
| | System.ThrowHel per.ThrowUnauth orizedAccessExc eption(Exceptio nResource
| | resource)
| | at Microsoft.Win32 .RegistryKey.Cr eateSubKey(Stri ng subkey,
| | RegistryKeyPerm issionCheck permissionCheck , RegistrySecurit y
| | registrySecurit y)
| | at Microsoft.Win32 .RegistryKey.Cr eateSubKey(Stri ng subkey)
| | at MyEventSink.Exc hangeConnect.Se ndMessage.Main( String[] srgs)
| | in D:\Parv\Data\Vi sual
| | Basic\MyEventSi nk\ExchangeConn ect\SendMessage .cs:line 53
| | at System.AppDomai n.nExecuteAssem bly(Assembly assembly, String[]
| | args)
| | at System.Runtime. Hosting.Manifes tRunner.Run(Boo lean
| | checkAptModel)
| | at System.Runtime. Hosting.Manifes tRunner.Execute AsAssembly()
| | at
| |
| >
System.Runtime. Hosting.Applica tionActivator.C reateInstance(A ctivationContex t
| | activationConte xt, String[] activationCusto mData)
| | at
| |
| >
System.Runtime. Hosting.Applica tionActivator.C reateInstance(A ctivationContex t
| | activationConte xt)
| | at
| |
| >
Microsoft.Visua lStudio.Hosting Process.HostPro c.RunUsersAssem blyDebugInZone( )
| | at System.Threadin g.ThreadHelper. ThreadStart_Con text(Object
| | state)
| | at System.Threadin g.ExecutionCont ext.Run(Executi onContext
| | executionContex t, ContextCallback callback, Object state)
| | at System.Threadin g.ThreadHelper. ThreadStart()
| |
| | What i am doing wrong ?
| |
| | Thanx in advance.
| |
| | With Best Regards
| | Parveen Beniwal
| |
|
Aug 13 '06 #5
Sorry if I wasn't clear, but you have to enable "registry object access"
auditing, that is from regedit select the key you want to audit and add the
user or group you want to monitor. Then, using "Local Security Policy"
editor, you must turn-on; Local Policies - Audit Policy - Audit Object
Access for Failure. When done, each unsuccessful access will be logged in
security log and will contain the account used to modify a key or subkey.
Willy.
"Parv" <Pa************ **********@gmai l.comwrote in message
news:11******** **************@ 74g2000cwt.goog legroups.com...
| thanx, i have tried this but there is no security log for my Login
| attempt on the DC. One more thing same is happenning when i am
| attempting to edit my own system's registry. And on my system too there
| is no log for login attempt.
|
| With Best Regards
| Parveen Beniwal
| Willy Denoyette [MVP] wrote:
| Are you sure the code runs as domain admin?
| To make sure, turn on security auditing on the DC and watch the security
| eventlog, this should contain a message specifying the account that
failed
| to access the registry object.
| >
| Willy.
| >
| "Parv" <Pa************ **********@gmai l.comwrote in message
| news:11******** *************@m 73g2000cwd.goog legroups.com...
| |I am working in a domain environment. I am on a client machine and
| | wants to edit registery of domain server. I am currently in a Domain
| | user account and member of Domain administrators on the domain
| | controller. I am able to open registry manully by connecting the
remote
| | registry. While doing the same programatically i am getting the
| | following exception :
| |
| | CODE :
| |
| | RegistryKey baseKey =
| | RegistryKey.Ope nRemoteBaseKey( RegistryHive.Lo calMachine, "server");
| |
| | RegistryKey sk1 =
| |
baseKey.OpenSub Key(@"SYSTEM\Cu rrentControlSet \Services\EXIFS \Parameters");
| | string key = "incoming";
| | sk1.CreateSubKe y(key);
| | sk1.SetValue(ke y, 1, RegistryValueKi nd.DWord);
| |
| | EXCEPTION:
| |
| | System.Unauthor izedAccessExcep tion was unhandled
| | Message="Cannot write to the registry key."
| | Source="mscorli b"
| | StackTrace:
| | at
| | System.ThrowHel per.ThrowUnauth orizedAccessExc eption(Exceptio nResource
| | resource)
| | at Microsoft.Win32 .RegistryKey.Cr eateSubKey(Stri ng subkey,
| | RegistryKeyPerm issionCheck permissionCheck , RegistrySecurit y
| | registrySecurit y)
| | at Microsoft.Win32 .RegistryKey.Cr eateSubKey(Stri ng subkey)
| | at MyEventSink.Exc hangeConnect.Se ndMessage.Main( String[] srgs)
| | in D:\Parv\Data\Vi sual
| | Basic\MyEventSi nk\ExchangeConn ect\SendMessage .cs:line 53
| | at System.AppDomai n.nExecuteAssem bly(Assembly assembly, String[]
| | args)
| | at System.Runtime. Hosting.Manifes tRunner.Run(Boo lean
| | checkAptModel)
| | at System.Runtime. Hosting.Manifes tRunner.Execute AsAssembly()
| | at
| |
| >
System.Runtime. Hosting.Applica tionActivator.C reateInstance(A ctivationContex t
| | activationConte xt, String[] activationCusto mData)
| | at
| |
| >
System.Runtime. Hosting.Applica tionActivator.C reateInstance(A ctivationContex t
| | activationConte xt)
| | at
| |
| >
Microsoft.Visua lStudio.Hosting Process.HostPro c.RunUsersAssem blyDebugInZone( )
| | at System.Threadin g.ThreadHelper. ThreadStart_Con text(Object
| | state)
| | at System.Threadin g.ExecutionCont ext.Run(Executi onContext
| | executionContex t, ContextCallback callback, Object state)
| | at System.Threadin g.ThreadHelper. ThreadStart()
| |
| | What i am doing wrong ?
| |
| | Thanx in advance.
| |
| | With Best Regards
| | Parveen Beniwal
| |
|
Aug 14 '06 #6

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

Similar topics

3
3057
by: Slimo | last post by:
Hello, I'm searching some example of code (VB) for reading remote registry subkeys and keys. Thanks
0
1502
by: Anton Sokolovsky | last post by:
Hello All, Please help. I am completely stuck. Any suggestions are very welcomed. I have ASP.NET application that impersonates certain user <impersonate="true" userName="registry:..." password="registry:..."/> Everythins runs ok on many systems except one: when connecting to database (either SQL Authentication or Trused - doesn't matter) the applications
3
4618
by: Steve Montgomery | last post by:
Does anyone have a sample block of code they can share for checking a DWORD value on a remote network machine's registry? For example, to validate a patch deployment. MSDN has a great sample for access the local registry bur I'd like to mount several remote registry to check a specific key for a DWORD value. Thanks, Steve
1
13378
by: JJG | last post by:
Hello. I'm not sure if this is the right forum, so please let me know what is the correct one if it isn't. (I posted this one also to the win32.programmer.wmi forum). I've been puzzled by this a for a few days. I'm trying to read a registry value from a remote system's registry using WMI (System.Management). I'm able to connect to the system and even run a process, but I cannot figure out what is I have to do to get the StdRegProv...
3
4594
by: Geoff McElhanon | last post by:
I have been struggling with a security issue that occurs under .NET 2.0, but does not occur under .NET 1.1. Essentially I am trying to open up a performance counter on a remote server and monitor its value. In .NET 1.1 this worked fine, however under .NET 2.0 it fails when I am not an administrator on the remote server. To provide a lean demonstration of the issue, I created the following class: ============================
5
6976
by: Sin Jeong-hun | last post by:
I need to read some registry keys of a remote computer. The key will be any key users provide. (For example : HKEY_CURRENT_USER\SOFTWARE \MyGame) I found that there was a handy method called RegistryKey.OpenRemoteBaseKey(); I tried But everytime I execute it, an UnauthorizedAccessException occurred at the OpenRemoteBaseKey method. Both computer (the one that ran the C# application, and the remote computer) are Windows XP Professional,...
12
5639
by: =?Utf-8?B?YXVsZGg=?= | last post by:
i current have a way to read both local and remote machines registry keys and create a textual view (.txt output). i now looking for ways to do export of local and remote mahcine registry keys into ".reg" file format via C#. is this do able? what do i need to research to do this? or is where i need to windows WinApi?
4
2431
by: Kerem Gümrükcü | last post by:
Hi, is it possible to get the Information that comes from OperatingSystem Class from a Remote Comupter. Is there a remote information supporting OperatingSystem Class or can i get this information another way, e.g. from opening remote registry? The target Systems are strictly Windows.
6
3684
tlhintoq
by: tlhintoq | last post by:
I pride myself on being able to Google just about anything but... I have fought, tried, searched and fought some more on this one. I am using VMware, and am able to debug from Visual Studio to the VMware virtual machine... Right up until the application being debugged tries to write to the registry. Then it fails due to lack of security permissions. It writes to the Host PC registry just fine. This is only happening when remote...
0
8917
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9426
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9200
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
9142
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8148
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
6722
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
6022
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4795
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2680
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.