473,467 Members | 1,645 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

GET MENU ITEM VALUE

CAN ANYONE TELL ME HOW I GET THE ACTUAL OBJECT [NOT THE INDEX] OF A MENU ITEM. IS THERE A FILTER OR SOMETHING THAT I CAN USE. I HAVE BEEN FIGHTING WITH THIS FOR ABOUT 4 HOURS NOW AND I END UP GETTING THE SAME RESULTS

THIS IS WHAT I AM DOING ....
Dim XmlDocument As New System.Xml.XmlDocument

XmlDocument.LoadXml(p_wsFormMenu.GetMenuItemData.O uterXml)

With p_aMenu

' Find the right node iterate through.

Dim Node As System.Xml.XmlNode

For Each Node In XmlDocument.Item("loadArray")

If Node.Name = "add" Then

Dim formName As String = Node.Attributes.GetNamedItem("key").Value()

Dim menuOption As Object = Node.Attributes.GetNamedItem("value").Value

'Fill the array

.Add(formName, menuOption) <--- this guy needs to be the actual object and not a string. I am getting the value from an XML file but I need to somehow compare and return the actual menu object based on the string. if anyone can help I would appreciate it.

End If

Next Node

End With
--
MARLON LA ROSE
Nov 20 '05 #1
20 3108
XML is just text, you gotta remember that. However, you can cycle through your controls collection recursivly to find the menu item in question via the .Name property.

then compare that and return the actual control.
"MARLON LA ROSE" <ml*****@email.uophx.edu> wrote in message news:%2****************@TK2MSFTNGP12.phx.gbl...
CAN ANYONE TELL ME HOW I GET THE ACTUAL OBJECT [NOT THE INDEX] OF A MENU ITEM. IS THERE A FILTER OR SOMETHING THAT I CAN USE. I HAVE BEEN FIGHTING WITH THIS FOR ABOUT 4 HOURS NOW AND I END UP GETTING THE SAME RESULTS

THIS IS WHAT I AM DOING ....
Dim XmlDocument As New System.Xml.XmlDocument

XmlDocument.LoadXml(p_wsFormMenu.GetMenuItemData.O uterXml)

With p_aMenu

' Find the right node iterate through.

Dim Node As System.Xml.XmlNode

For Each Node In XmlDocument.Item("loadArray")

If Node.Name = "add" Then

Dim formName As String = Node.Attributes.GetNamedItem("key").Value()

Dim menuOption As Object = Node.Attributes.GetNamedItem("value").Value

'Fill the array

.Add(formName, menuOption) <--- this guy needs to be the actual object and not a string. I am getting the value from an XML file but I need to somehow compare and return the actual menu object based on the string. if anyone can help I would appreciate it.

End If

Next Node

End With
--
MARLON LA ROSE
Nov 20 '05 #2
XML is just text, you gotta remember that. However, you can cycle through your controls collection recursivly to find the menu item in question via the .Name property.

then compare that and return the actual control.
"MARLON LA ROSE" <ml*****@email.uophx.edu> wrote in message news:%2****************@TK2MSFTNGP12.phx.gbl...
CAN ANYONE TELL ME HOW I GET THE ACTUAL OBJECT [NOT THE INDEX] OF A MENU ITEM. IS THERE A FILTER OR SOMETHING THAT I CAN USE. I HAVE BEEN FIGHTING WITH THIS FOR ABOUT 4 HOURS NOW AND I END UP GETTING THE SAME RESULTS

THIS IS WHAT I AM DOING ....
Dim XmlDocument As New System.Xml.XmlDocument

XmlDocument.LoadXml(p_wsFormMenu.GetMenuItemData.O uterXml)

With p_aMenu

' Find the right node iterate through.

Dim Node As System.Xml.XmlNode

For Each Node In XmlDocument.Item("loadArray")

If Node.Name = "add" Then

Dim formName As String = Node.Attributes.GetNamedItem("key").Value()

Dim menuOption As Object = Node.Attributes.GetNamedItem("value").Value

'Fill the array

.Add(formName, menuOption) <--- this guy needs to be the actual object and not a string. I am getting the value from an XML file but I need to somehow compare and return the actual menu object based on the string. if anyone can help I would appreciate it.

End If

Next Node

End With
--
MARLON LA ROSE
Nov 20 '05 #3
Thanks for responding - I am aware that XML is a text property - however, I can't seem to find any feature in VB.net that allows me to return the name property of the menuItem, just an index. Is there a way to return the actual name property by comparing it to the string returned form the XML?
--
MARLON LA ROSE
"CJ Taylor" <no****@blowgoats.com> wrote in message news:10*************@corp.supernews.com...
XML is just text, you gotta remember that. However, you can cycle through your controls collection recursivly to find the menu item in question via the .Name property.

then compare that and return the actual control.
"MARLON LA ROSE" <ml*****@email.uophx.edu> wrote in message news:%2****************@TK2MSFTNGP12.phx.gbl...
CAN ANYONE TELL ME HOW I GET THE ACTUAL OBJECT [NOT THE INDEX] OF A MENU ITEM. IS THERE A FILTER OR SOMETHING THAT I CAN USE. I HAVE BEEN FIGHTING WITH THIS FOR ABOUT 4 HOURS NOW AND I END UP GETTING THE SAME RESULTS

THIS IS WHAT I AM DOING ....
Dim XmlDocument As New System.Xml.XmlDocument

XmlDocument.LoadXml(p_wsFormMenu.GetMenuItemData.O uterXml)

With p_aMenu

' Find the right node iterate through.

Dim Node As System.Xml.XmlNode

For Each Node In XmlDocument.Item("loadArray")

If Node.Name = "add" Then

Dim formName As String = Node.Attributes.GetNamedItem("key").Value()

Dim menuOption As Object = Node.Attributes.GetNamedItem("value").Value

'Fill the array

.Add(formName, menuOption) <--- this guy needs to be the actual object and not a string. I am getting the value from an XML file but I need to somehow compare and return the actual menu object based on the string. if anyone can help I would appreciate it.

End If

Next Node

End With
--
MARLON LA ROSE
Nov 20 '05 #4
Thanks for responding - I am aware that XML is a text property - however, I can't seem to find any feature in VB.net that allows me to return the name property of the menuItem, just an index. Is there a way to return the actual name property by comparing it to the string returned form the XML?
--
MARLON LA ROSE
"CJ Taylor" <no****@blowgoats.com> wrote in message news:10*************@corp.supernews.com...
XML is just text, you gotta remember that. However, you can cycle through your controls collection recursivly to find the menu item in question via the .Name property.

then compare that and return the actual control.
"MARLON LA ROSE" <ml*****@email.uophx.edu> wrote in message news:%2****************@TK2MSFTNGP12.phx.gbl...
CAN ANYONE TELL ME HOW I GET THE ACTUAL OBJECT [NOT THE INDEX] OF A MENU ITEM. IS THERE A FILTER OR SOMETHING THAT I CAN USE. I HAVE BEEN FIGHTING WITH THIS FOR ABOUT 4 HOURS NOW AND I END UP GETTING THE SAME RESULTS

THIS IS WHAT I AM DOING ....
Dim XmlDocument As New System.Xml.XmlDocument

XmlDocument.LoadXml(p_wsFormMenu.GetMenuItemData.O uterXml)

With p_aMenu

' Find the right node iterate through.

Dim Node As System.Xml.XmlNode

For Each Node In XmlDocument.Item("loadArray")

If Node.Name = "add" Then

Dim formName As String = Node.Attributes.GetNamedItem("key").Value()

Dim menuOption As Object = Node.Attributes.GetNamedItem("value").Value

'Fill the array

.Add(formName, menuOption) <--- this guy needs to be the actual object and not a string. I am getting the value from an XML file but I need to somehow compare and return the actual menu object based on the string. if anyone can help I would appreciate it.

End If

Next Node

End With
--
MARLON LA ROSE
Nov 20 '05 #5
Wow...

I'm pretty suprised... Well... hmm... It won't be easy to find I can tell you that...

Wow... I'm not really sure how to... Sorry, wish I could have been more help here, I'm looking trying to find a way... but its kinda hard. =)
"MARLON LA ROSE" <ml*****@email.uophx.edu> wrote in message news:u$**************@TK2MSFTNGP09.phx.gbl...
Thanks for responding - I am aware that XML is a text property - however, I can't seem to find any feature in VB.net that allows me to return the name property of the menuItem, just an index. Is there a way to return the actual name property by comparing it to the string returned form the XML?
--
MARLON LA ROSE
"CJ Taylor" <no****@blowgoats.com> wrote in message news:10*************@corp.supernews.com...
XML is just text, you gotta remember that. However, you can cycle through your controls collection recursivly to find the menu item in question via the .Name property.

then compare that and return the actual control.
"MARLON LA ROSE" <ml*****@email.uophx.edu> wrote in message news:%2****************@TK2MSFTNGP12.phx.gbl...
CAN ANYONE TELL ME HOW I GET THE ACTUAL OBJECT [NOT THE INDEX] OF A MENU ITEM. IS THERE A FILTER OR SOMETHING THAT I CAN USE. I HAVE BEEN FIGHTING WITH THIS FOR ABOUT 4 HOURS NOW AND I END UP GETTING THE SAME RESULTS

THIS IS WHAT I AM DOING ....
Dim XmlDocument As New System.Xml.XmlDocument

XmlDocument.LoadXml(p_wsFormMenu.GetMenuItemData.O uterXml)

With p_aMenu

' Find the right node iterate through.

Dim Node As System.Xml.XmlNode

For Each Node In XmlDocument.Item("loadArray")

If Node.Name = "add" Then

Dim formName As String = Node.Attributes.GetNamedItem("key").Value()

Dim menuOption As Object = Node.Attributes.GetNamedItem("value").Value

'Fill the array

.Add(formName, menuOption) <--- this guy needs to be the actual object and not a string. I am getting the value from an XML file but I need to somehow compare and return the actual menu object based on the string. if anyone can help I would appreciate it.

End If

Next Node

End With
--
MARLON LA ROSE
Nov 20 '05 #6
Wow...

I'm pretty suprised... Well... hmm... It won't be easy to find I can tell you that...

Wow... I'm not really sure how to... Sorry, wish I could have been more help here, I'm looking trying to find a way... but its kinda hard. =)
"MARLON LA ROSE" <ml*****@email.uophx.edu> wrote in message news:u$**************@TK2MSFTNGP09.phx.gbl...
Thanks for responding - I am aware that XML is a text property - however, I can't seem to find any feature in VB.net that allows me to return the name property of the menuItem, just an index. Is there a way to return the actual name property by comparing it to the string returned form the XML?
--
MARLON LA ROSE
"CJ Taylor" <no****@blowgoats.com> wrote in message news:10*************@corp.supernews.com...
XML is just text, you gotta remember that. However, you can cycle through your controls collection recursivly to find the menu item in question via the .Name property.

then compare that and return the actual control.
"MARLON LA ROSE" <ml*****@email.uophx.edu> wrote in message news:%2****************@TK2MSFTNGP12.phx.gbl...
CAN ANYONE TELL ME HOW I GET THE ACTUAL OBJECT [NOT THE INDEX] OF A MENU ITEM. IS THERE A FILTER OR SOMETHING THAT I CAN USE. I HAVE BEEN FIGHTING WITH THIS FOR ABOUT 4 HOURS NOW AND I END UP GETTING THE SAME RESULTS

THIS IS WHAT I AM DOING ....
Dim XmlDocument As New System.Xml.XmlDocument

XmlDocument.LoadXml(p_wsFormMenu.GetMenuItemData.O uterXml)

With p_aMenu

' Find the right node iterate through.

Dim Node As System.Xml.XmlNode

For Each Node In XmlDocument.Item("loadArray")

If Node.Name = "add" Then

Dim formName As String = Node.Attributes.GetNamedItem("key").Value()

Dim menuOption As Object = Node.Attributes.GetNamedItem("value").Value

'Fill the array

.Add(formName, menuOption) <--- this guy needs to be the actual object and not a string. I am getting the value from an XML file but I need to somehow compare and return the actual menu object based on the string. if anyone can help I would appreciate it.

End If

Next Node

End With
--
MARLON LA ROSE
Nov 20 '05 #7
Cor
Hi Marlon,

I think you are not the only one who is looking for the name property from
the menu item.

The menu is a kind of weird control in my opinion, it is a control not
derived from controls but directly from forms. As far as I know it has no
name property.

However it has text properties in the MenuItems and there also parent and
items properties, therefore I think it is not impossible to reach your goal.

I hope this helps anyhow

Cor

Nov 20 '05 #8
Cor
Hi Marlon,

I think you are not the only one who is looking for the name property from
the menu item.

The menu is a kind of weird control in my opinion, it is a control not
derived from controls but directly from forms. As far as I know it has no
name property.

However it has text properties in the MenuItems and there also parent and
items properties, therefore I think it is not impossible to reach your goal.

I hope this helps anyhow

Cor

Nov 20 '05 #9
What do you need the name of the menu item class for anyways? I can't
really see a purpose of using it from XML, and if you do, I would rethink my
approach to it. I.e. either dynamically build the menu from XML or use the
text property.

Second of all, if this is really THAT big of a deal to you, inherit the
menuitem class, add a property called name...

Thats the easy way out of it.

-CJ
"Cor" <no*@non.com> wrote in message
news:uL***************@TK2MSFTNGP09.phx.gbl...
Hi Marlon,

I think you are not the only one who is looking for the name property from
the menu item.

The menu is a kind of weird control in my opinion, it is a control not
derived from controls but directly from forms. As far as I know it has no
name property.

However it has text properties in the MenuItems and there also parent and
items properties, therefore I think it is not impossible to reach your goal.
I hope this helps anyhow

Cor


Nov 20 '05 #10
What do you need the name of the menu item class for anyways? I can't
really see a purpose of using it from XML, and if you do, I would rethink my
approach to it. I.e. either dynamically build the menu from XML or use the
text property.

Second of all, if this is really THAT big of a deal to you, inherit the
menuitem class, add a property called name...

Thats the easy way out of it.

-CJ
"Cor" <no*@non.com> wrote in message
news:uL***************@TK2MSFTNGP09.phx.gbl...
Hi Marlon,

I think you are not the only one who is looking for the name property from
the menu item.

The menu is a kind of weird control in my opinion, it is a control not
derived from controls but directly from forms. As far as I know it has no
name property.

However it has text properties in the MenuItems and there also parent and
items properties, therefore I think it is not impossible to reach your goal.
I hope this helps anyhow

Cor


Nov 20 '05 #11
Cor
Hi CJ,

This message or something the same comes back today from Ray Cassic at Home.

(I was searching this but could not find it)

Can be a coincidence however that often we see this question not.

Cor
Nov 20 '05 #12
Cor
Hi CJ,

This message or something the same comes back today from Ray Cassic at Home.

(I was searching this but could not find it)

Can be a coincidence however that often we see this question not.

Cor
Nov 20 '05 #13
Cor
Hi CJ,

I assume the message was not meant for me, and Ken has given a nice answer
to Cassik.

The language approach from dotNet is better than we ever saw, but still not
complete in my opinion.

An easy solution for that is using XML files. Moreover, one of the first
where you want to add that is of course at the menus. Special if you want to
make your program real language undependable by adding the languages not
direct in build time.

What you than direct need is a connector for that language, and the name
property from a control is than very usable in my opinion.

A little help from someone from a country that has many languages (EU) to an
"American"
Cor
Nov 20 '05 #14
Cor
Hi CJ,

I assume the message was not meant for me, and Ken has given a nice answer
to Cassik.

The language approach from dotNet is better than we ever saw, but still not
complete in my opinion.

An easy solution for that is using XML files. Moreover, one of the first
where you want to add that is of course at the menus. Special if you want to
make your program real language undependable by adding the languages not
direct in build time.

What you than direct need is a connector for that language, and the name
property from a control is than very usable in my opinion.

A little help from someone from a country that has many languages (EU) to an
"American"
Cor
Nov 20 '05 #15

"Cor" <no*@non.com> wrote in message
news:eW**************@tk2msftngp13.phx.gbl...
Hi CJ,

This message or something the same comes back today from Ray Cassic at Home.
(I was searching this but could not find it)

Can be a coincidence however that often we see this question not.

Is this a Haiku? =)
What do you mean?

Cor

Nov 20 '05 #16

"Cor" <no*@non.com> wrote in message
news:eW**************@tk2msftngp13.phx.gbl...
Hi CJ,

This message or something the same comes back today from Ray Cassic at Home.
(I was searching this but could not find it)

Can be a coincidence however that often we see this question not.

Is this a Haiku? =)
What do you mean?

Cor

Nov 20 '05 #17
In my application some menu items are disabled based on user role. I have a
function that does the authorization already.

The problem is that I am using an XML file to store the menu Item names so I
can load it without recompiling the code and redeploying the entire
application if something was changed [or someone forgets to add the menu
item to the security function] . It is much easier to add it to an XML file
because it doesn't require any compilation for the application to access any
changed information in it.

--
MARLON LA ROSE
"CJ Taylor" <no****@blowgoats.com> wrote in message
news:10*************@corp.supernews.com...
What do you need the name of the menu item class for anyways? I can't
really see a purpose of using it from XML, and if you do, I would rethink my approach to it. I.e. either dynamically build the menu from XML or use the text property.

Second of all, if this is really THAT big of a deal to you, inherit the
menuitem class, add a property called name...

Thats the easy way out of it.

-CJ
"Cor" <no*@non.com> wrote in message
news:uL***************@TK2MSFTNGP09.phx.gbl...
Hi Marlon,

I think you are not the only one who is looking for the name property from the menu item.

The menu is a kind of weird control in my opinion, it is a control not
derived from controls but directly from forms. As far as I know it has no name property.

However it has text properties in the MenuItems and there also parent and items properties, therefore I think it is not impossible to reach your

goal.

I hope this helps anyhow

Cor



Nov 20 '05 #18
In my application some menu items are disabled based on user role. I have a
function that does the authorization already.

The problem is that I am using an XML file to store the menu Item names so I
can load it without recompiling the code and redeploying the entire
application if something was changed [or someone forgets to add the menu
item to the security function] . It is much easier to add it to an XML file
because it doesn't require any compilation for the application to access any
changed information in it.

--
MARLON LA ROSE
"CJ Taylor" <no****@blowgoats.com> wrote in message
news:10*************@corp.supernews.com...
What do you need the name of the menu item class for anyways? I can't
really see a purpose of using it from XML, and if you do, I would rethink my approach to it. I.e. either dynamically build the menu from XML or use the text property.

Second of all, if this is really THAT big of a deal to you, inherit the
menuitem class, add a property called name...

Thats the easy way out of it.

-CJ
"Cor" <no*@non.com> wrote in message
news:uL***************@TK2MSFTNGP09.phx.gbl...
Hi Marlon,

I think you are not the only one who is looking for the name property from the menu item.

The menu is a kind of weird control in my opinion, it is a control not
derived from controls but directly from forms. As far as I know it has no name property.

However it has text properties in the MenuItems and there also parent and items properties, therefore I think it is not impossible to reach your

goal.

I hope this helps anyhow

Cor



Nov 20 '05 #19
Then dynamically create the menu, don't search for the menu item, create the
menu item on the fly and store a reference key in a hashtable or something.
Otherwise, your just going to make it really diffucult on yourself.

-cJ
"MARLON LA ROSE" <ml*****@email.uophx.edu> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
In my application some menu items are disabled based on user role. I have a function that does the authorization already.

The problem is that I am using an XML file to store the menu Item names so I can load it without recompiling the code and redeploying the entire
application if something was changed [or someone forgets to add the menu
item to the security function] . It is much easier to add it to an XML file because it doesn't require any compilation for the application to access any changed information in it.

--
MARLON LA ROSE
"CJ Taylor" <no****@blowgoats.com> wrote in message
news:10*************@corp.supernews.com...
What do you need the name of the menu item class for anyways? I can't
really see a purpose of using it from XML, and if you do, I would rethink
my
approach to it. I.e. either dynamically build the menu from XML or use

the
text property.

Second of all, if this is really THAT big of a deal to you, inherit the
menuitem class, add a property called name...

Thats the easy way out of it.

-CJ
"Cor" <no*@non.com> wrote in message
news:uL***************@TK2MSFTNGP09.phx.gbl...
Hi Marlon,

I think you are not the only one who is looking for the name property

from the menu item.

The menu is a kind of weird control in my opinion, it is a control not
derived from controls but directly from forms. As far as I know it has no name property.

However it has text properties in the MenuItems and there also parent and items properties, therefore I think it is not impossible to reach your

goal.

I hope this helps anyhow

Cor




Nov 20 '05 #20
Then dynamically create the menu, don't search for the menu item, create the
menu item on the fly and store a reference key in a hashtable or something.
Otherwise, your just going to make it really diffucult on yourself.

-cJ
"MARLON LA ROSE" <ml*****@email.uophx.edu> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
In my application some menu items are disabled based on user role. I have a function that does the authorization already.

The problem is that I am using an XML file to store the menu Item names so I can load it without recompiling the code and redeploying the entire
application if something was changed [or someone forgets to add the menu
item to the security function] . It is much easier to add it to an XML file because it doesn't require any compilation for the application to access any changed information in it.

--
MARLON LA ROSE
"CJ Taylor" <no****@blowgoats.com> wrote in message
news:10*************@corp.supernews.com...
What do you need the name of the menu item class for anyways? I can't
really see a purpose of using it from XML, and if you do, I would rethink
my
approach to it. I.e. either dynamically build the menu from XML or use

the
text property.

Second of all, if this is really THAT big of a deal to you, inherit the
menuitem class, add a property called name...

Thats the easy way out of it.

-CJ
"Cor" <no*@non.com> wrote in message
news:uL***************@TK2MSFTNGP09.phx.gbl...
Hi Marlon,

I think you are not the only one who is looking for the name property

from the menu item.

The menu is a kind of weird control in my opinion, it is a control not
derived from controls but directly from forms. As far as I know it has no name property.

However it has text properties in the MenuItems and there also parent and items properties, therefore I think it is not impossible to reach your

goal.

I hope this helps anyhow

Cor




Nov 20 '05 #21

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

Similar topics

4
by: JesusFreak | last post by:
From: us_traveller@yahoo.com (JesusFreak) Newsgroups: microsoft.public.scripting.jscript Subject: toolbar script problem NNTP-Posting-Host: 192.92.126.136 Recently, I downloaded the following...
1
by: ajay | last post by:
I have following code for a slide menu but i twiked it to work for a single level menu. Open it in a Browser to get a clear picture. I have 2 Qs 1) How to make first entry as non-link. i.e i...
2
by: RWD | last post by:
I am trying to figure out how to change the target frame in my hyperlink on a DHTML menu. The menu is in one frame and the target frame is called "main" The code is below: Thanks in advance...
4
by: Yuk Cheng | last post by:
<<<start index.htm>>> <html> <head> <script> function perform(action){ } </script> </head>
0
by: nail | last post by:
Hi. I have this xml file: <menu> <header caption="File"> <item header="File" caption="New File"></item> <item header="File" caption="Open File"></item> <item header="File" caption="Close...
3
by: scaredemz | last post by:
hi, so i'm creating a dynamic drop-down menu. the menu and the text show up fine in IE but only the drop-down shows in Firefox without the menu text. Below is the fxn code. help pls. function...
3
by: jayender.vs | last post by:
Hi, I am doing a menu in asp.net here is the sample code for that: <asp:Menu ID="Menu1" runat="server" Orientation="Horizontal" > <Items>
9
by: =?Utf-8?B?ZHBvbXQ=?= | last post by:
Hello, I have a problem with the ASP.NET menu when rendered in IE7: If the menu is inside a div with style="position:fixed;top:3em;", all the submenus also have the top:3em. Is this an IE7...
1
by: Kayvine | last post by:
Hi guys, this is a question I have for an assignment, it is pretty long, but I am not asking for the code(well if someone wants to write I'll be really happy, lol), but I just want to know how to...
6
by: phpnewbie26 | last post by:
My current form has one multiple select drop down menu as well as few other drop down menus that are single select. Originally I had it so that the multiple select menu was first, but this created...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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
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
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
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
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...
1
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...
0
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...

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.