473,320 Members | 2,073 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.

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 3103
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...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
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...
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
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...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...

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.