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

Home Posts Topics Members FAQ

who can add users and change passwords?

Jan
Hi:

I have created a secured database for a client. For various reasons, I
don't want the client to have full persmissions for the database; they
aren't in the admins group. I have instead tried to create a second
group, called "localAdmin ," for the admin-type person at the client. I
want this group to be able to do some basic admin-type stuff, including
adding new users and clearing passwords if users forget theirs.

I can't seem to accomplish this, though. When signing on as someone in
the LocalAdmin group, if I try to go to Tools/Security/user & group
accounts, I get the error message about not having read permissions for the
msysUserlist table and msysGroupList table. If I try to add a user via
VBA code, I get error
3033--you don't have permissions for the Tables object (code is below
for your reference).

Dim wrkDefault As Workspace
Dim usrNew As User
Dim usrTemp As User

Set wrkDefault = DBEngine.Worksp aces(0)

With wrkDefault
' Create and append new User.
Set usrNew = .CreateUser(Me! username)
usrNew.pid = Me!pid
.Users.Append usrNew------------------>it fails here
the code goes on

I tried giving the localAdmin group administer permissions for the
database (which I hate to do, frankly), but even that didn't work.

Is there no way to accomplish this?

TIA

Jan
Apr 21 '06 #1
6 5144

"Jan" <ja*@stempelcon sulting.com> wrote in message
news:12******** *****@corp.supe rnews.com...
Hi:

I have created a secured database for a client. For various reasons, I
don't want the client to have full persmissions for the database; they
aren't in the admins group. I have instead tried to create a second
group, called "localAdmin ," for the admin-type person at the client. I
want this group to be able to do some basic admin-type stuff, including
adding new users and clearing passwords if users forget theirs.

I can't seem to accomplish this, though. When signing on as someone in
the LocalAdmin group, if I try to go to Tools/Security/user & group
accounts, I get the error message about not having read permissions for
the
msysUserlist table and msysGroupList table. If I try to add a user via
VBA code, I get error
3033--you don't have permissions for the Tables object (code is below
for your reference).

Dim wrkDefault As Workspace
Dim usrNew As User
Dim usrTemp As User

Set wrkDefault = DBEngine.Worksp aces(0)

With wrkDefault
' Create and append new User.
Set usrNew = .CreateUser(Me! username)
usrNew.pid = Me!pid
.Users.Append usrNew------------------>it fails here
the code goes on
I tried giving the localAdmin group administer permissions for the
database (which I hate to do, frankly), but even that didn't work.

Is there no way to accomplish this?

TIA

Jan



In order to add and delete users, you normally need to be a member of the
admins group. However, it would be possible for you to create a workspace
with the credentials of an Administrator programatically , so that a
non-admin person just presses a button and a new user is created. One way I
do this is to create an account with the name Automation, then I can create
the workspace:

Set wks = DBEngine.Create Workspace("Jet" , "Automation ", "MyPassword ",
dbUseJet)

and do whatever from there. If your application is an mde, the code is
compiled and you don't need to worry about hard-coding the password as the
code is unreadable. If it is an mdb, there is the risk that someone could
read and extract the password. However, if someone knew enough to
understand the code and extract the password, they could break in anyway as
Access user-level security is broken (ie easily crackable) and unlikely to
be fixed.


Apr 21 '06 #2
Jan


Anthony England wrote:
"Jan" <ja*@stempelcon sulting.com> wrote in message
news:12******** *****@corp.supe rnews.com...
Hi:

I have created a secured database for a client. For various
reasons, I don't want the client to have full persmissions for the
database; they aren't in the admins group. I have instead tried to
create a second group, called "localAdmin ," for the admin-type
person at the client. I want this group to be able to do some basic
admin-type stuff, including adding new users and clearing passwords
if users forget theirs.

I can't seem to accomplish this, though. When signing on as
someone in the LocalAdmin group, if I try to go to
Tools/Security/user & group accounts, I get the error message about
not having read permissions for the msysUserlist table and
msysGroupList table. If I try to add a user via VBA code, I get
error 3033--you don't have permissions for the Tables object (code
is below for your reference).

Dim wrkDefault As Workspace Dim usrNew As User Dim usrTemp As User

Set wrkDefault = DBEngine.Worksp aces(0)

With wrkDefault ' Create and append new User. Set usrNew =
.CreateUser(Me! username) usrNew.pid = Me!pid .Users.Append
usrNew------------------>it fails here the code goes on I tried
giving the localAdmin group administer permissions for the database
(which I hate to do, frankly), but even that didn't work.

Is there no way to accomplish this?

TIA

Jan


In order to add and delete users, you normally need to be a member of
the admins group. However, it would be possible for you to create a
workspace with the credentials of an Administrator programatically ,
so that a non-admin person just presses a button and a new user is
created. One way I do this is to create an account with the name
Automation, then I can create the workspace:

Set wks = DBEngine.Create Workspace("Jet" , "Automation ", "MyPassword ",
dbUseJet)

and do whatever from there. If your application is an mde, the code
is compiled and you don't need to worry about hard-coding the
password as the code is unreadable. If it is an mdb, there is the
risk that someone could read and extract the password. However, if
someone knew enough to understand the code and extract the password,
they could break in anyway as Access user-level security is broken
(ie easily crackable) and unlikely to be fixed.

Hi:

Thanks for the quick reply. Let me get this straight:

I need to create a user called "automation " in the admins group, give it
a password ("mypass"), and then in the code for creating a user, instead
of the
Set wrkDefault = DBEngine.Worksp aces(0)
I would use
Set wrkDefault
=DBEngine.creat eWorkspaces("je t","automation" ,"mypass",dbuse jet)
and then that would allow the non-admin user to add new users?

Please let me know if I've missed something.

Also, how would they clear passwords? I haven't been able to figure out
how to do that programmaticall y; the VBA way to do it seems to require
one to know the old password in order to change it to blank; but if the
user has forgotten their pass, you can't go that way. I had expected
the "localAdmin " folks to just go through the tools/security/user &
group accounts menus, but they can't do that unless they're in the
admins group. Any thoughts?

Jan
Apr 21 '06 #3

"Jan" <ja*@stempelcon sulting.com> wrote in message
news:12******** *****@corp.supe rnews.com...


Anthony England wrote:
"Jan" <ja*@stempelcon sulting.com> wrote in message
news:12******** *****@corp.supe rnews.com...
Hi:

I have created a secured database for a client. For various
reasons, I don't want the client to have full persmissions for the
database; they aren't in the admins group. I have instead tried to
create a second group, called "localAdmin ," for the admin-type
person at the client. I want this group to be able to do some basic
admin-type stuff, including adding new users and clearing passwords
if users forget theirs.

I can't seem to accomplish this, though. When signing on as
someone in the LocalAdmin group, if I try to go to
Tools/Security/user & group accounts, I get the error message about
not having read permissions for the msysUserlist table and
msysGroupList table. If I try to add a user via VBA code, I get
error 3033--you don't have permissions for the Tables object (code
is below for your reference).

Dim wrkDefault As Workspace Dim usrNew As User Dim usrTemp As User

Set wrkDefault = DBEngine.Worksp aces(0)

With wrkDefault ' Create and append new User. Set usrNew =
.CreateUser(Me! username) usrNew.pid = Me!pid .Users.Append
usrNew------------------>it fails here the code goes on I tried
giving the localAdmin group administer permissions for the database
(which I hate to do, frankly), but even that didn't work.

Is there no way to accomplish this?

TIA

Jan


In order to add and delete users, you normally need to be a member of
the admins group. However, it would be possible for you to create a
workspace with the credentials of an Administrator programatically ,
so that a non-admin person just presses a button and a new user is
created. One way I do this is to create an account with the name
Automation, then I can create the workspace:

Set wks = DBEngine.Create Workspace("Jet" , "Automation ", "MyPassword ",
dbUseJet)

and do whatever from there. If your application is an mde, the code
is compiled and you don't need to worry about hard-coding the
password as the code is unreadable. If it is an mdb, there is the
risk that someone could read and extract the password. However, if
someone knew enough to understand the code and extract the password,
they could break in anyway as Access user-level security is broken
(ie easily crackable) and unlikely to be fixed.

Hi:

Thanks for the quick reply. Let me get this straight:

I need to create a user called "automation " in the admins group, give it
a password ("mypass"), and then in the code for creating a user, instead
of the
Set wrkDefault = DBEngine.Worksp aces(0)
I would use
Set wrkDefault
=DBEngine.creat eWorkspaces("je t","automation" ,"mypass",dbuse jet)
and then that would allow the non-admin user to add new users?

Please let me know if I've missed something.

Also, how would they clear passwords? I haven't been able to figure out
how to do that programmaticall y; the VBA way to do it seems to require
one to know the old password in order to change it to blank; but if the
user has forgotten their pass, you can't go that way. I had expected
the "localAdmin " folks to just go through the tools/security/user &
group accounts menus, but they can't do that unless they're in the
admins group. Any thoughts?

Jan

That's basically it. Clearing password simply means that you set the
password to a zero-length string. As to providing the original password,
that is the point of programatically creating a new workspace as a member of
the admins group. If you are in the admins group, you don't need to know
the old password to change it to a new one.
In the example below, I use a blank string for the old password:
usr.NewPassword "", strNewPwd

but since the old password isn't even looked at, I could have written
either:
usr.NewPassword strNewPwd, strNewPwd
or
usr.NewPassword "AbsoluteNonsen se", strNewPwd

However, it doesn't really help readability.


Public Function ResetPassword(s trUserName As String, _
strNewPwd As String) As Boolean

On Error GoTo Err_Handler

Dim wks As DAO.Workspace
Dim usr As DAO.User

Set wks = DBEngine.Create Workspace("Jet" , "Automation ", _
"MyPassword ", dbUseJet)

Set usr = wks.Users(strUs erName)

usr.NewPassword "", strNewPwd

ResetPassword = True

Exit_Handler:

If Not usr Is Nothing Then
Set usr = Nothing
End If

If Not wks Is Nothing Then
wks.Close
Set wks = Nothing
End If

Exit Function

Err_Handler:

Select Case Err.Number

Case 3029 ' Invalid account or password - error with our secret account
MsgBox "Unable to change password", _
vbExclamation, "Password Error"

Case 3033 ' Account has insufficient permissions - error with our secret
account
MsgBox "Unable to change password", _
vbExclamation, "Password Error"

Case 3265 ' strUserName relates to a non-existant user
MsgBox "Cannot locate user: " & strUserName, _
vbExclamation, "Password Error"

Case Else
MsgBox Err.Description , vbExclamation, "Error No: " & Err.Number

End Select

Resume Exit_Handler

End Function
Apr 22 '06 #4
Jan
Thanks, Anthony. I'm going to try it (I hope I can squeeze in time
today but it might be tomorrow) and will let you know how it goes.

Jan

Anthony England wrote:
"Jan" <ja*@stempelcon sulting.com> wrote in message
news:12******** *****@corp.supe rnews.com...

Anthony England wrote:
"Jan" <ja*@stempelcon sulting.com> wrote in message
news:12******** *****@corp.supe rnews.com...
Hi:

I have created a secured database for a client. For various
reasons, I don't want the client to have full persmissions for
the database; they aren't in the admins group. I have instead
tried to create a second group, called "localAdmin ," for the
admin-type person at the client. I want this group to be able
to do some basic admin-type stuff, including adding new users
and clearing passwords if users forget theirs.

I can't seem to accomplish this, though. When signing on as
someone in the LocalAdmin group, if I try to go to
Tools/Security/user & group accounts, I get the error message
about not having read permissions for the msysUserlist table
and msysGroupList table. If I try to add a user via VBA code,
I get error 3033--you don't have permissions for the Tables
object (code is below for your reference).

Dim wrkDefault As Workspace Dim usrNew As User Dim usrTemp As
User

Set wrkDefault = DBEngine.Worksp aces(0)

With wrkDefault ' Create and append new User. Set usrNew =
.CreateUser(Me! username) usrNew.pid = Me!pid .Users.Append
usrNew------------------>it fails here the code goes on I tried
giving the localAdmin group administer permissions for the
database (which I hate to do, frankly), but even that didn't
work.

Is there no way to accomplish this?

TIA

Jan

In order to add and delete users, you normally need to be a
member of the admins group. However, it would be possible for
you to create a workspace with the credentials of an
Administrator programatically , so that a non-admin person just
presses a button and a new user is created. One way I do this is
to create an account with the name Automation, then I can create
the workspace:

Set wks = DBEngine.Create Workspace("Jet" , "Automation ",
"MyPassword ", dbUseJet)

and do whatever from there. If your application is an mde, the
code is compiled and you don't need to worry about hard-coding
the password as the code is unreadable. If it is an mdb, there
is the risk that someone could read and extract the password.
However, if someone knew enough to understand the code and
extract the password, they could break in anyway as Access
user-level security is broken (ie easily crackable) and unlikely
to be fixed.


Hi:

Thanks for the quick reply. Let me get this straight:

I need to create a user called "automation " in the admins group,
give it a password ("mypass"), and then in the code for creating a
user, instead of the Set wrkDefault = DBEngine.Worksp aces(0) I
would use Set wrkDefault
=DBEngine.creat eWorkspaces("je t","automation" ,"mypass",dbuse jet)
and then that would allow the non-admin user to add new users?

Please let me know if I've missed something.

Also, how would they clear passwords? I haven't been able to
figure out how to do that programmaticall y; the VBA way to do it
seems to require one to know the old password in order to change it
to blank; but if the user has forgotten their pass, you can't go
that way. I had expected the "localAdmin " folks to just go through
the tools/security/user & group accounts menus, but they can't do
that unless they're in the admins group. Any thoughts?

Jan


That's basically it. Clearing password simply means that you set the
password to a zero-length string. As to providing the original
password, that is the point of programatically creating a new
workspace as a member of the admins group. If you are in the admins
group, you don't need to know the old password to change it to a new
one. In the example below, I use a blank string for the old password:
usr.NewPassword "", strNewPwd

but since the old password isn't even looked at, I could have written
either: usr.NewPassword strNewPwd, strNewPwd or usr.NewPassword
"AbsoluteNonsen se", strNewPwd

However, it doesn't really help readability.


Public Function ResetPassword(s trUserName As String, _ strNewPwd As
String) As Boolean

On Error GoTo Err_Handler

Dim wks As DAO.Workspace Dim usr As DAO.User

Set wks = DBEngine.Create Workspace("Jet" , "Automation ", _
"MyPassword ", dbUseJet)

Set usr = wks.Users(strUs erName)

usr.NewPassword "", strNewPwd

ResetPassword = True

Exit_Handler:

If Not usr Is Nothing Then Set usr = Nothing End If

If Not wks Is Nothing Then wks.Close Set wks = Nothing End If

Exit Function

Err_Handler:

Select Case Err.Number

Case 3029 ' Invalid account or password - error with our secret
account MsgBox "Unable to change password", _ vbExclamation,
"Password Error"

Case 3033 ' Account has insufficient permissions - error with our
secret account MsgBox "Unable to change password", _ vbExclamation,
"Password Error"

Case 3265 ' strUserName relates to a non-existant user MsgBox "Cannot
locate user: " & strUserName, _ vbExclamation, "Password Error"

Case Else MsgBox Err.Description , vbExclamation, "Error No: " &
Err.Number

End Select

Resume Exit_Handler

End Function

Apr 22 '06 #5
Jan
It all worked beautifully. Thanks so much for the help.

Jan

Jan wrote:
Thanks, Anthony. I'm going to try it (I hope I can squeeze in time
today but it might be tomorrow) and will let you know how it goes.

Jan

Anthony England wrote:
"Jan" <ja*@stempelcon sulting.com> wrote in message
news:12******** *****@corp.supe rnews.com...

Anthony England wrote:

"Jan" <ja*@stempelcon sulting.com> wrote in message
news:12******** *****@corp.supe rnews.com...
> Hi:
>
> I have created a secured database for a client. For various
> reasons, I don't want the client to have full persmissions for
> the database; they aren't in the admins group. I have instead
> tried to create a second group, called "localAdmin ," for the
> admin-type person at the client. I want this group to be able
> to do some basic admin-type stuff, including adding new users
> and clearing passwords if users forget theirs.
>
> I can't seem to accomplish this, though. When signing on as
> someone in the LocalAdmin group, if I try to go to
> Tools/Security/user & group accounts, I get the error message
> about not having read permissions for the msysUserlist table
> and msysGroupList table. If I try to add a user via VBA code,
> I get error 3033--you don't have permissions for the Tables
> object (code is below for your reference).
>
> Dim wrkDefault As Workspace Dim usrNew As User Dim usrTemp As
> User
>
> Set wrkDefault = DBEngine.Worksp aces(0)
>
> With wrkDefault ' Create and append new User. Set usrNew =
> .CreateUser(Me! username) usrNew.pid = Me!pid .Users.Append
> usrNew------------------>it fails here the code goes on I tried
> giving the localAdmin group administer permissions for the
> database (which I hate to do, frankly), but even that didn't
> work.
>
> Is there no way to accomplish this?
>
> TIA
>
> Jan


In order to add and delete users, you normally need to be a
member of the admins group. However, it would be possible for
you to create a workspace with the credentials of an
Administrator programatically , so that a non-admin person just
presses a button and a new user is created. One way I do this is
to create an account with the name Automation, then I can create
the workspace:

Set wks = DBEngine.Create Workspace("Jet" , "Automation ",
"MyPassword ", dbUseJet)

and do whatever from there. If your application is an mde, the
code is compiled and you don't need to worry about hard-coding
the password as the code is unreadable. If it is an mdb, there
is the risk that someone could read and extract the password.
However, if someone knew enough to understand the code and
extract the password, they could break in anyway as Access
user-level security is broken (ie easily crackable) and unlikely
to be fixed.
Hi:

Thanks for the quick reply. Let me get this straight:

I need to create a user called "automation " in the admins group,
give it a password ("mypass"), and then in the code for creating a
user, instead of the Set wrkDefault = DBEngine.Worksp aces(0) I
would use Set wrkDefault
=DBEngine.creat eWorkspaces("je t","automation" ,"mypass",dbuse jet) and
then that would allow the non-admin user to add new users?

Please let me know if I've missed something.

Also, how would they clear passwords? I haven't been able to
figure out how to do that programmaticall y; the VBA way to do it
seems to require one to know the old password in order to change it
to blank; but if the user has forgotten their pass, you can't go
that way. I had expected the "localAdmin " folks to just go through
the tools/security/user & group accounts menus, but they can't do
that unless they're in the admins group. Any thoughts?

Jan



That's basically it. Clearing password simply means that you set the
password to a zero-length string. As to providing the original
password, that is the point of programatically creating a new
workspace as a member of the admins group. If you are in the admins
group, you don't need to know the old password to change it to a new
one. In the example below, I use a blank string for the old password:
usr.NewPassword "", strNewPwd

but since the old password isn't even looked at, I could have written
either: usr.NewPassword strNewPwd, strNewPwd or usr.NewPassword
"AbsoluteNonsen se", strNewPwd

However, it doesn't really help readability.


Public Function ResetPassword(s trUserName As String, _ strNewPwd As
String) As Boolean

On Error GoTo Err_Handler

Dim wks As DAO.Workspace Dim usr As DAO.User

Set wks = DBEngine.Create Workspace("Jet" , "Automation ", _
"MyPassword ", dbUseJet)

Set usr = wks.Users(strUs erName)

usr.NewPassword "", strNewPwd

ResetPassword = True

Exit_Handler:

If Not usr Is Nothing Then Set usr = Nothing End If

If Not wks Is Nothing Then wks.Close Set wks = Nothing End If

Exit Function

Err_Handler:

Select Case Err.Number

Case 3029 ' Invalid account or password - error with our secret
account MsgBox "Unable to change password", _ vbExclamation,
"Password Error"

Case 3033 ' Account has insufficient permissions - error with our
secret account MsgBox "Unable to change password", _ vbExclamation,
"Password Error"

Case 3265 ' strUserName relates to a non-existant user MsgBox "Cannot
locate user: " & strUserName, _ vbExclamation, "Password Error"

Case Else MsgBox Err.Description , vbExclamation, "Error No: " &
Err.Number

End Select

Resume Exit_Handler

End Function

Apr 26 '06 #6

"Jan" <ja*@stempelcon sulting.com> wrote in message
news:12******** *****@corp.supe rnews.com...
It all worked beautifully. Thanks so much for the help.

Jan

Cool.
Thanks for letting us know.
Apr 26 '06 #7

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

Similar topics

0
1144
by: | last post by:
Looking for a way for users to change their passwords on local accounts. I followed this KB article, 306271, and it worked as far as adding a new user. I tried to modify it to do password changes: Changed this: Dim NewUser As DirectoryEntry = AD.Children.Add ("TestUser1", "user") To this: Dim NewUser As DirectoryEntry = AD.Children.Find ("TestUser1", "user")
4
2179
by: HNguyen | last post by:
Hi, I have a Web application in ASP.NET. My Application allows the users upload files into the server after checking their user names and passwords. For each transaction, the Web program will write the information about user name, filename upload, filesize, date and time of uploading into the log file. (The name of the log file is constructed by Current Year and Current Month in my program). Is there any problems with writing into the...
10
1742
by: 4site | last post by:
Happy New Year and all that! I'd like to write a short PHP script that will allow users to alter their virtual server password via a secure web form. I had hoped that I might be able to call the shell passwd command from PHP, something like this: exec( "passwd -O $oldpassword -P $newpassword $username" ); but of course that doesn't seem to work.
9
2037
by: antonyliu2002 | last post by:
I am not sure how to google this concept. Basically, what I wanna do is to direct different users to different pages. I do not have a whole lot users. For example, if user name 'tomcat' logins successfully with the correct password, I want to direct this guy to 'tomcat_page.aspx'. And if the user name 'jerrymouse' logins successfully with the right password, I want to direct him to 'jerrymouse_page.aspx'.
5
1644
by: Terry Holland | last post by:
I have an intranet application that comprises an ASP.Net application connecting to a SQL Server DB The application has 150 users. At the moment I am connecting using the following setup I have created a MyApp_WebUser user in SQL Server. My connection string, which is stored in my web.config file, is <add key="DB:CSA" value="data source=MyServer;initial catalog=CSA;uid=MyApp_WebUser;pwd=12345678" />
11
8498
usafshah
by: usafshah | last post by:
Is there any simple way to change all the passwords for an Organization Unit or users in a group at once? I want to set same passwords to all users !
1
1421
by: postmanpat | last post by:
i have to create a login form that validates the users and passwords from a text file. I have another function that can add new users and passwords by writing to a test file split by a delimiter. But i dont know how to read from the text file and validates one user one by one when i key in in the login form. the example format of the text file: peter|123 jane|789 hunter|007...left is the username and password is on the right. i dont need sql...
4
2573
by: =?Utf-8?B?R2hpc3Rvcw==?= | last post by:
Hi, I collect hashed password in my BD. I give the opportunity to the user to reset his password with the PasswordRecovery control. But, when he receive it , it is a series fo strange characters like that ")(i5oA8&YPZB>Y" How can I modify my webConfig to send human readable new password. Tks
1
2412
harshadd
by: harshadd | last post by:
I want to replicate users (with there passwords and home directories) on diff Linux server, reason is I have a working setup of ssh and vsftp which is being used by many users who are not contactable now, I do not know their passwords , and I dont want to reset passwords using root, because I cannot intimate them about the same. If my Hardware crashes, I need to have same usernames with same passwords on diff server... How can I manage this?
0
8921
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
9427
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
9202
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
9148
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...
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
4528
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...
1
3238
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
2683
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.