473,463 Members | 1,496 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Menu Control with Multiview Control ???

Good morning friends,

I am working with ASP.NET 2.0 -- VB code behind

I have created tabbed pages using the Menu control with the Multiview
control. Using the menu control to display the tabs, and the Multiview
control to display the content that corresponds to the selected tab.

My Menu control needs to be able to switch language from English or French
depending on the language chosen by the user.

At the moment I have hard coded the Text: area to the English language.

I tried to dump asp code to pick either ENG language or FRE depending on the
page lang="en" or page lang="fr"
<%

If Request.QueryString("lang") = "en" Then

%>

However I receive an ::::::::::::::::::: Error: ASP.NET
Runtime..........Code blocks are not supported in this context.

My question is,

Is there a way to access the Text portion of the Menu control to switch
languages from English to French on the Source side of the code OR should I
try and access it through the vb.aspx code side of things? And how may I
chnage it back and forth.

Please see below....................
My Menu control CODE:
<asp:Menu

id="menuTabs"

CssClass="menuTabs"

StaticMenuItemStyle-CssClass="tab"

StaticSelectedStyle-CssClass="selectedTab"

Orientation="Horizontal"

OnMenuItemClick="menuTabs_MenuItemClick"

Runat="server" Width="370px" BackColor="Transparent"
DynamicHorizontalOffset="2" Font-Names="Arial" Font-Size="0.8em"
ForeColor="Transparent" StaticSubMenuIndent="10px" Font-Bold="True"
Height="20px" BorderColor="Transparent">

<Items>

<asp:MenuItem

Text="ENGLISH FIRST SECTION" <<<<< --- Need to have this change to
>>>>Text="Francais Premier Section"
Value="0"

Selected="True" />

<asp:MenuItem

Text="ENGLISH SECOND SECTION" <<<<< --- Need to have this change to
>>>>Text="Francais Deuxieme Section"
Value="1"/>

<asp:MenuItem

Text="ENGLISH THIRD SECTION"<<<<< --- Need to have this change to
>>>>Text="Francais Troisieme Section"
Value="2" />

</Items>

<StaticMenuItemStyle CssClass="tab" HorizontalPadding="5px"
VerticalPadding="2px" />

<StaticSelectedStyle CssClass="selectedTab" BackColor="White" />

<DynamicHoverStyle BackColor="Transparent" />

<DynamicMenuStyle BackColor="Transparent" BorderColor="Transparent" />

<DynamicSelectedStyle ForeColor="Black" />

<DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />

<StaticHoverStyle BorderStyle="Solid" Font-Bold="True" />

</asp:Menu>

Any ideas would be greatly appreciated,

Thanks in advance,

~Brad
------------------------------
Brad Isaacs
..NET Web Developer
www.webdevcreations.com
bi*****@rogers.com
Feb 8 '07 #1
5 6154
What you want to learn is called localization.

--
<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/
MAP http://wikimapia.org/#y=43038073&x=-...8&z=17&l=0&m=h
"Brad Isaacs" <bi*****@rogers.comwrote in message
news:ey***************@TK2MSFTNGP04.phx.gbl...
Good morning friends,

I am working with ASP.NET 2.0 -- VB code behind

I have created tabbed pages using the Menu control with the Multiview
control. Using the menu control to display the tabs, and the Multiview
control to display the content that corresponds to the selected tab.

My Menu control needs to be able to switch language from English or French
depending on the language chosen by the user.

At the moment I have hard coded the Text: area to the English language.

I tried to dump asp code to pick either ENG language or FRE depending on
the page lang="en" or page lang="fr"
<%

If Request.QueryString("lang") = "en" Then

%>

However I receive an ::::::::::::::::::: Error: ASP.NET
Runtime..........Code blocks are not supported in this context.

My question is,

Is there a way to access the Text portion of the Menu control to switch
languages from English to French on the Source side of the code OR should
I try and access it through the vb.aspx code side of things? And how may
I chnage it back and forth.

Please see below....................
My Menu control CODE:
<asp:Menu

id="menuTabs"

CssClass="menuTabs"

StaticMenuItemStyle-CssClass="tab"

StaticSelectedStyle-CssClass="selectedTab"

Orientation="Horizontal"

OnMenuItemClick="menuTabs_MenuItemClick"

Runat="server" Width="370px" BackColor="Transparent"
DynamicHorizontalOffset="2" Font-Names="Arial" Font-Size="0.8em"
ForeColor="Transparent" StaticSubMenuIndent="10px" Font-Bold="True"
Height="20px" BorderColor="Transparent">

<Items>

<asp:MenuItem

Text="ENGLISH FIRST SECTION" <<<<< --- Need to have this change to
>>>Text="Francais Premier Section"

Value="0"

Selected="True" />

<asp:MenuItem

Text="ENGLISH SECOND SECTION" <<<<< --- Need to have this change to
>>>Text="Francais Deuxieme Section"

Value="1"/>

<asp:MenuItem

Text="ENGLISH THIRD SECTION"<<<<< --- Need to have this change to
>>>Text="Francais Troisieme Section"

Value="2" />

</Items>

<StaticMenuItemStyle CssClass="tab" HorizontalPadding="5px"
VerticalPadding="2px" />

<StaticSelectedStyle CssClass="selectedTab" BackColor="White" />

<DynamicHoverStyle BackColor="Transparent" />

<DynamicMenuStyle BackColor="Transparent" BorderColor="Transparent" />

<DynamicSelectedStyle ForeColor="Black" />

<DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />

<StaticHoverStyle BorderStyle="Solid" Font-Bold="True" />

</asp:Menu>

Any ideas would be greatly appreciated,

Thanks in advance,

~Brad
------------------------------
Brad Isaacs
.NET Web Developer
www.webdevcreations.com
bi*****@rogers.com


Feb 8 '07 #2

Can you elaborate?

Localization........my web site uses localization, only the Menu control
does not hold TEXT inside its Expressions in order to use my localization.

Do you have an example, can you reference me to a tutorial......or any ....?
"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.comwro te in message
news:ec**************@TK2MSFTNGP03.phx.gbl...
What you want to learn is called localization.

--
<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/
MAP http://wikimapia.org/#y=43038073&x=-...8&z=17&l=0&m=h
"Brad Isaacs" <bi*****@rogers.comwrote in message
news:ey***************@TK2MSFTNGP04.phx.gbl...
>Good morning friends,

I am working with ASP.NET 2.0 -- VB code behind

I have created tabbed pages using the Menu control with the Multiview
control. Using the menu control to display the tabs, and the Multiview
control to display the content that corresponds to the selected tab.

My Menu control needs to be able to switch language from English or
French depending on the language chosen by the user.

At the moment I have hard coded the Text: area to the English language.

I tried to dump asp code to pick either ENG language or FRE depending on
the page lang="en" or page lang="fr"
<%

If Request.QueryString("lang") = "en" Then

%>

However I receive an ::::::::::::::::::: Error: ASP.NET
Runtime..........Code blocks are not supported in this context.

My question is,

Is there a way to access the Text portion of the Menu control to switch
languages from English to French on the Source side of the code OR should
I try and access it through the vb.aspx code side of things? And how may
I chnage it back and forth.

Please see below....................
My Menu control CODE:
<asp:Menu

id="menuTabs"

CssClass="menuTabs"

StaticMenuItemStyle-CssClass="tab"

StaticSelectedStyle-CssClass="selectedTab"

Orientation="Horizontal"

OnMenuItemClick="menuTabs_MenuItemClick"

Runat="server" Width="370px" BackColor="Transparent"
DynamicHorizontalOffset="2" Font-Names="Arial" Font-Size="0.8em"
ForeColor="Transparent" StaticSubMenuIndent="10px" Font-Bold="True"
Height="20px" BorderColor="Transparent">

<Items>

<asp:MenuItem

Text="ENGLISH FIRST SECTION" <<<<< --- Need to have this change to
>>>>Text="Francais Premier Section"

Value="0"

Selected="True" />

<asp:MenuItem

Text="ENGLISH SECOND SECTION" <<<<< --- Need to have this change to
>>>>Text="Francais Deuxieme Section"

Value="1"/>

<asp:MenuItem

Text="ENGLISH THIRD SECTION"<<<<< --- Need to have this change to
>>>>Text="Francais Troisieme Section"

Value="2" />

</Items>

<StaticMenuItemStyle CssClass="tab" HorizontalPadding="5px"
VerticalPadding="2px" />

<StaticSelectedStyle CssClass="selectedTab" BackColor="White" />

<DynamicHoverStyle BackColor="Transparent" />

<DynamicMenuStyle BackColor="Transparent" BorderColor="Transparent" />

<DynamicSelectedStyle ForeColor="Black" />

<DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />

<StaticHoverStyle BorderStyle="Solid" Font-Bold="True" />

</asp:Menu>

Any ideas would be greatly appreciated,

Thanks in advance,

~Brad
------------------------------
Brad Isaacs
.NET Web Developer
www.webdevcreations.com
bi*****@rogers.com



Feb 8 '07 #3
// the following search term is all I can suggest...
localizing the asp.net menu control site:msdn2.microsoft.com

<%= Clinton

"Brad Isaacs" <bi*****@rogers.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
>
Can you elaborate?

Localization........my web site uses localization, only the Menu control
does not hold TEXT inside its Expressions in order to use my
localization.

Do you have an example, can you reference me to a tutorial......or any
....?
"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.comwro te in message
news:ec**************@TK2MSFTNGP03.phx.gbl...
>What you want to learn is called localization.

--
<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/
MAP http://wikimapia.org/#y=43038073&x=-...8&z=17&l=0&m=h
"Brad Isaacs" <bi*****@rogers.comwrote in message
news:ey***************@TK2MSFTNGP04.phx.gbl...
>>Good morning friends,

I am working with ASP.NET 2.0 -- VB code behind

I have created tabbed pages using the Menu control with the Multiview
control. Using the menu control to display the tabs, and the Multiview
control to display the content that corresponds to the selected tab.

My Menu control needs to be able to switch language from English or
French depending on the language chosen by the user.

At the moment I have hard coded the Text: area to the English language.

I tried to dump asp code to pick either ENG language or FRE depending on
the page lang="en" or page lang="fr"
<%

If Request.QueryString("lang") = "en" Then

%>

However I receive an ::::::::::::::::::: Error: ASP.NET
Runtime..........Code blocks are not supported in this context.

My question is,

Is there a way to access the Text portion of the Menu control to switch
languages from English to French on the Source side of the code OR
should I try and access it through the vb.aspx code side of things? And
how may I chnage it back and forth.

Please see below....................
My Menu control CODE:
<asp:Menu

id="menuTabs"

CssClass="menuTabs"

StaticMenuItemStyle-CssClass="tab"

StaticSelectedStyle-CssClass="selectedTab"

Orientation="Horizontal"

OnMenuItemClick="menuTabs_MenuItemClick"

Runat="server" Width="370px" BackColor="Transparent"
DynamicHorizontalOffset="2" Font-Names="Arial" Font-Size="0.8em"
ForeColor="Transparent" StaticSubMenuIndent="10px" Font-Bold="True"
Height="20px" BorderColor="Transparent">

<Items>

<asp:MenuItem

Text="ENGLISH FIRST SECTION" <<<<< --- Need to have this change to
>Text="Francais Premier Section"

Value="0"

Selected="True" />

<asp:MenuItem

Text="ENGLISH SECOND SECTION" <<<<< --- Need to have this change to
>Text="Francais Deuxieme Section"

Value="1"/>

<asp:MenuItem

Text="ENGLISH THIRD SECTION"<<<<< --- Need to have this change to
>Text="Francais Troisieme Section"

Value="2" />

</Items>

<StaticMenuItemStyle CssClass="tab" HorizontalPadding="5px"
VerticalPadding="2px" />

<StaticSelectedStyle CssClass="selectedTab" BackColor="White" />

<DynamicHoverStyle BackColor="Transparent" />

<DynamicMenuStyle BackColor="Transparent" BorderColor="Transparent" />

<DynamicSelectedStyle ForeColor="Black" />

<DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />

<StaticHoverStyle BorderStyle="Solid" Font-Bold="True" />

</asp:Menu>

Any ideas would be greatly appreciated,

Thanks in advance,

~Brad
------------------------------
Brad Isaacs
.NET Web Developer
www.webdevcreations.com
bi*****@rogers.com




Feb 9 '07 #4
Hi Clinton,

Thanks for your help.

~Brad

ps: Kool Google map of where you are........& web site~

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.comwro te in message
news:%2*****************@TK2MSFTNGP02.phx.gbl...
// the following search term is all I can suggest...
localizing the asp.net menu control site:msdn2.microsoft.com

<%= Clinton

"Brad Isaacs" <bi*****@rogers.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
>>
Can you elaborate?

Localization........my web site uses localization, only the Menu control
does not hold TEXT inside its Expressions in order to use my
localization.

Do you have an example, can you reference me to a tutorial......or any
....?
"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.comwro te in
message news:ec**************@TK2MSFTNGP03.phx.gbl...
>>What you want to learn is called localization.

--
<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/
MAP http://wikimapia.org/#y=43038073&x=-...8&z=17&l=0&m=h
"Brad Isaacs" <bi*****@rogers.comwrote in message
news:ey***************@TK2MSFTNGP04.phx.gbl...
Good morning friends,

I am working with ASP.NET 2.0 -- VB code behind

I have created tabbed pages using the Menu control with the Multiview
control. Using the menu control to display the tabs, and the Multiview
control to display the content that corresponds to the selected tab.

My Menu control needs to be able to switch language from English or
French depending on the language chosen by the user.

At the moment I have hard coded the Text: area to the English language.

I tried to dump asp code to pick either ENG language or FRE depending
on the page lang="en" or page lang="fr"
<%

If Request.QueryString("lang") = "en" Then

%>

However I receive an ::::::::::::::::::: Error: ASP.NET
Runtime..........Code blocks are not supported in this context.

My question is,

Is there a way to access the Text portion of the Menu control to switch
languages from English to French on the Source side of the code OR
should I try and access it through the vb.aspx code side of things?
And how may I chnage it back and forth.

Please see below....................
My Menu control CODE:
<asp:Menu

id="menuTabs"

CssClass="menuTabs"

StaticMenuItemStyle-CssClass="tab"

StaticSelectedStyle-CssClass="selectedTab"

Orientation="Horizontal"

OnMenuItemClick="menuTabs_MenuItemClick"

Runat="server" Width="370px" BackColor="Transparent"
DynamicHorizontalOffset="2" Font-Names="Arial" Font-Size="0.8em"
ForeColor="Transparent" StaticSubMenuIndent="10px" Font-Bold="True"
Height="20px" BorderColor="Transparent">

<Items>

<asp:MenuItem

Text="ENGLISH FIRST SECTION" <<<<< --- Need to have this change to
>>Text="Francais Premier Section"

Value="0"

Selected="True" />

<asp:MenuItem

Text="ENGLISH SECOND SECTION" <<<<< --- Need to have this change to
>>Text="Francais Deuxieme Section"

Value="1"/>

<asp:MenuItem

Text="ENGLISH THIRD SECTION"<<<<< --- Need to have this change to
>>Text="Francais Troisieme Section"

Value="2" />

</Items>

<StaticMenuItemStyle CssClass="tab" HorizontalPadding="5px"
VerticalPadding="2px" />

<StaticSelectedStyle CssClass="selectedTab" BackColor="White" />

<DynamicHoverStyle BackColor="Transparent" />

<DynamicMenuStyle BackColor="Transparent" BorderColor="Transparent" />

<DynamicSelectedStyle ForeColor="Black" />

<DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />

<StaticHoverStyle BorderStyle="Solid" Font-Bold="True" />

</asp:Menu>

Any ideas would be greatly appreciated,

Thanks in advance,

~Brad
------------------------------
Brad Isaacs
.NET Web Developer
www.webdevcreations.com
bi*****@rogers.com




Feb 9 '07 #5
Hi Clinton,

When I first tried to insert the Resource file tags into my menu control
code blocks, I had made a typo unknowingly....hence the error.

As I thought, it was a simple fix..................

<asp:MenuItem

Text="<%$ Resources:Resources, FirstTab %>"

Value="0"

Selected="True" />

<asp:MenuItem

Text="<%$ Resources:Resources, SecondTab %>"

Value="1"/>

<asp:MenuItem

Text="<%$ Resources:Resources, ThirdTab %>"

Value="2" />

</Items>
Thanks again,

~Brad

"Brad Isaacs" <bi*****@rogers.comwrote in message
news:uM**************@TK2MSFTNGP05.phx.gbl...
Hi Clinton,

Thanks for your help.

~Brad

ps: Kool Google map of where you are........& web site~

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.comwro te in message
news:%2*****************@TK2MSFTNGP02.phx.gbl...
>// the following search term is all I can suggest...
localizing the asp.net menu control site:msdn2.microsoft.com

<%= Clinton

"Brad Isaacs" <bi*****@rogers.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
>>>
Can you elaborate?

Localization........my web site uses localization, only the Menu control
does not hold TEXT inside its Expressions in order to use my
localization.

Do you have an example, can you reference me to a tutorial......or any
....?
"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.comwro te in
message news:ec**************@TK2MSFTNGP03.phx.gbl...
What you want to learn is called localization.

--
<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/
MAP http://wikimapia.org/#y=43038073&x=-...8&z=17&l=0&m=h
"Brad Isaacs" <bi*****@rogers.comwrote in message
news:ey***************@TK2MSFTNGP04.phx.gbl.. .
Good morning friends,
>
I am working with ASP.NET 2.0 -- VB code behind
>
I have created tabbed pages using the Menu control with the Multiview
control. Using the menu control to display the tabs, and the
Multiview control to display the content that corresponds to the
selected tab.
>
My Menu control needs to be able to switch language from English or
French depending on the language chosen by the user.
>
At the moment I have hard coded the Text: area to the English
language.
>
I tried to dump asp code to pick either ENG language or FRE depending
on the page lang="en" or page lang="fr"
<%
>
If Request.QueryString("lang") = "en" Then
>
%>
>
However I receive an ::::::::::::::::::: Error: ASP.NET
Runtime..........Code blocks are not supported in this context.
>
My question is,
>
Is there a way to access the Text portion of the Menu control to
switch languages from English to French on the Source side of the code
OR should I try and access it through the vb.aspx code side of things?
And how may I chnage it back and forth.
>
Please see below....................
>
>
My Menu control CODE:
<asp:Menu
>
id="menuTabs"
>
CssClass="menuTabs"
>
StaticMenuItemStyle-CssClass="tab"
>
StaticSelectedStyle-CssClass="selectedTab"
>
Orientation="Horizontal"
>
OnMenuItemClick="menuTabs_MenuItemClick"
>
Runat="server" Width="370px" BackColor="Transparent"
DynamicHorizontalOffset="2" Font-Names="Arial" Font-Size="0.8em"
ForeColor="Transparent" StaticSubMenuIndent="10px" Font-Bold="True"
Height="20px" BorderColor="Transparent">
>
<Items>
>
<asp:MenuItem
>
Text="ENGLISH FIRST SECTION" <<<<< --- Need to have this change to
>>>Text="Francais Premier Section"
>
Value="0"
>
Selected="True" />
>
<asp:MenuItem
>
Text="ENGLISH SECOND SECTION" <<<<< --- Need to have this change to
>>>Text="Francais Deuxieme Section"
>
Value="1"/>
>
<asp:MenuItem
>
Text="ENGLISH THIRD SECTION"<<<<< --- Need to have this change to
>>>Text="Francais Troisieme Section"
>
Value="2" />
>
</Items>
>
<StaticMenuItemStyle CssClass="tab" HorizontalPadding="5px"
VerticalPadding="2px" />
>
<StaticSelectedStyle CssClass="selectedTab" BackColor="White" />
>
<DynamicHoverStyle BackColor="Transparent" />
>
<DynamicMenuStyle BackColor="Transparent" BorderColor="Transparent" />
>
<DynamicSelectedStyle ForeColor="Black" />
>
<DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />
>
<StaticHoverStyle BorderStyle="Solid" Font-Bold="True" />
>
</asp:Menu>
>
Any ideas would be greatly appreciated,
>
Thanks in advance,
>
~Brad
>
>
------------------------------
Brad Isaacs
.NET Web Developer
www.webdevcreations.com
bi*****@rogers.com
>
>




Feb 9 '07 #6

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

Similar topics

0
by: Fabuloussites | last post by:
I have a page that has multiview control that has two dropdown lists on it. the dropdown controls ARE NOT inside of the multiview. Each drop down is bound using its own sqldatasource conrtol. The...
2
by: Alexander van Doormalen | last post by:
I have a MultiView control with 2 Views in it. In the first View I have a form which contains sereral input controls and a custom UserControl. In this custom UserControl I have a button which...
1
by: H | last post by:
ASP.NET 2.0 I used to have IE Webcontrols (Tabstrip w/Pageviews) on my page. Because of issues, I switched over to a horizontal Menu with a Multiview control. The problem is in the...
2
by: John Smith | last post by:
I am trying to use the menu control for a tabbed menu system but it's frustrating the hell out of me. The full code is listed below. The trouble that I'm having is that, when the user clicks on a...
0
by: John Smith | last post by:
If anyone can help, I would very muchly appreciate it. I have a main page that uses the .net 2.0 menu control with the multiview controls as the menu choices. This works fine. One of the menu...
0
by: Jacob Donajkowski | last post by:
Once the user logs in I want to have the users switch from the Roster View to the Profile View and enter their profile infomation and save it. Then the next time they login and go to the Profile...
1
by: gshankar | last post by:
In ASP.NET of VB.net/C#.net, how to use the combination of Menu and Multiview control. For example, when a menuitem in a menu control is clicked, a view is to be displayed. Send us the coding.
1
by: Yin99 | last post by:
I have a Menu control that currently changes the view on a MultiView. Works, but I was wondering if there is any way to load separate pages in each view via Menu? Ex: (Allows user to select...
0
by: nzkks | last post by:
Hi, I am using these: ASP.Net 2.0, VB.Net, Visual Studio 2005, SQL Server 2005 In a asp.net page, I have two multiview controls each has 2 views & its corresponding 2 menu items named Metric &...
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
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...
0
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,...
0
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.