473,396 Members | 1,864 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,396 software developers and data experts.

Double click not working

I have been working with setting my drop boxes to allow double clicking to
select an item.

It worked fine until I made some changes. I then stripped the page down to
the bare essentials to find out why it quit working. I found that if I
didn't have a linkbutton, it quit working?????????

If I changed the linkbutton to a regular button, it quit working.

Here is the page:

************************************************** *************
<%@ Page Language="VB" trace="true" debug="true" ContentType="text/html"
ResponseEncoding="iso-8859-1" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SqlClient" %>
<html>
<head>
<title>:: Staffing Workshop ::</title>

<script runat="server">
sub Page_load(s as object,e as eventargs)
if not IsPostBack then
session("ClientID") = "1234"
Call CheckResumes()
Me.StoredResumes.Attributes("ondblClick") =
"__doPostBack('LbxSender','')"
end if
If Request.Form("__EVENTTARGET") = "LbxSender" Then
trace.warn("Inside LbxSender")
End If

end sub

Sub CheckResumes()
Dim emailReader As SqlDataReader

Dim ConnectionString as String
=System.Configuration.ConfigurationSettings.AppSet tings("MM_CONNECTION_STRING_ftsolutions")
Dim objConn as New SqlConnection (ConnectionString)
Dim CommandText as String = "Select ResumeTitle,ResumeID,CoverLetterID
from ftsolutions.dbo.ResumeTemplates where ClientID = @ClientID and Email =
@Email"
Dim objCmd as New SqlCommand(CommandText,objConn)
with objCmd.Parameters
.Add("@ClientID",SqlDbType.VarChar,20).value = session("ClientID")
.Add("@Email",SqlDbType.VarChar,45).value = session("Email")
end with
objConn.Open()
StoredResumes.DataSource=objCmd.ExecuteReader
StoredResumes.DataValueField="ResumeID"
StoredResumes.DataTextField= "ResumeTitle"
StoredResumes.databind()
End Sub
</script>
</head>

<body id="myBody" runat="server">

<form action="" method="post" runat="server">
<br>
<asp:ListBox id="StoredResumes" rows="5" columns="30"
runat="server" />
<asp:linkButton id="NewRecord" Text="New" runat="server" />
</form>

<p>&nbsp;</p>
</body>
</html>
************************************************** ***********************

This page works fine. Loads the Listbox fine. Sets the Listbox to have the
ondblClick event, which works great (it does post back and the trace.warn
displays fine.

But if I take out the line:

<asp:linkButton id="NewRecord" Text="New" runat="server" />

It quits working.

If I change it to:

<asp:Button id="NewRecord" Text="New" runat="server" />

It quits working (the button works, but the dblClick does not).

These objects are not connected, why would it have an effect?

I need to find out what is happening as 2 of my main pages are now not
working correctly.

Thanks,

Tom
Nov 19 '05 #1
5 3032
The interesting thing is you can just put a nothing link (no id, test,
event) anywhere on the page and it will cause the page to work. But the
linkbutton must be visible.

I added the following to the 2 pages that quit working and all of a sudden
they worked fine.

<asp:linkButton runat="server" />

This makes no sense !!!!!

It works fine as a bandaid, but not a proper solution.

Tom

"tshad" <ts**********@ftsolutions.com> wrote in message
news:eF*************@TK2MSFTNGP15.phx.gbl...
I have been working with setting my drop boxes to allow double clicking to
select an item.

It worked fine until I made some changes. I then stripped the page down
to the bare essentials to find out why it quit working. I found that if I
didn't have a linkbutton, it quit working?????????

If I changed the linkbutton to a regular button, it quit working.

Here is the page:

************************************************** *************
<%@ Page Language="VB" trace="true" debug="true" ContentType="text/html"
ResponseEncoding="iso-8859-1" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SqlClient" %>
<html>
<head>
<title>:: Staffing Workshop ::</title>

<script runat="server">
sub Page_load(s as object,e as eventargs)
if not IsPostBack then
session("ClientID") = "1234"
Call CheckResumes()
Me.StoredResumes.Attributes("ondblClick") =
"__doPostBack('LbxSender','')"
end if
If Request.Form("__EVENTTARGET") = "LbxSender" Then
trace.warn("Inside LbxSender")
End If

end sub

Sub CheckResumes()
Dim emailReader As SqlDataReader

Dim ConnectionString as String
=System.Configuration.ConfigurationSettings.AppSet tings("MM_CONNECTION_STRING_ftsolutions")
Dim objConn as New SqlConnection (ConnectionString)
Dim CommandText as String = "Select ResumeTitle,ResumeID,CoverLetterID
from ftsolutions.dbo.ResumeTemplates where ClientID = @ClientID and Email
= @Email"
Dim objCmd as New SqlCommand(CommandText,objConn)
with objCmd.Parameters
.Add("@ClientID",SqlDbType.VarChar,20).value = session("ClientID")
.Add("@Email",SqlDbType.VarChar,45).value = session("Email")
end with
objConn.Open()
StoredResumes.DataSource=objCmd.ExecuteReader
StoredResumes.DataValueField="ResumeID"
StoredResumes.DataTextField= "ResumeTitle"
StoredResumes.databind()
End Sub
</script>
</head>

<body id="myBody" runat="server">

<form action="" method="post" runat="server">
<br>
<asp:ListBox id="StoredResumes" rows="5" columns="30"
runat="server" />
<asp:linkButton id="NewRecord" Text="New" runat="server" />
</form>

<p>&nbsp;</p>
</body>
</html>
************************************************** ***********************

This page works fine. Loads the Listbox fine. Sets the Listbox to have
the ondblClick event, which works great (it does post back and the
trace.warn displays fine.

But if I take out the line:

<asp:linkButton id="NewRecord" Text="New" runat="server" />

It quits working.

If I change it to:

<asp:Button id="NewRecord" Text="New" runat="server" />

It quits working (the button works, but the dblClick does not).

These objects are not connected, why would it have an effect?

I need to find out what is happening as 2 of my main pages are now not
working correctly.

Thanks,

Tom

Nov 19 '05 #2
makes perfect sense.

you wrote client code that calls __doPostBack(), the routine used by
autopostback (javascript) controls. you need an autopostback control on the
page for this to be available. a linkbutton works, but a standard asp:button
is actually a submit button, and does not require javascript to postback. if
a control is maked invisible, its not rendered, so it just like its not on
the page.

-- bruce (sqlwork.com)
"tshad" <ts**********@ftsolutions.com> wrote in message
news:eF*************@TK2MSFTNGP15.phx.gbl...
I have been working with setting my drop boxes to allow double clicking to
select an item.

It worked fine until I made some changes. I then stripped the page down
to the bare essentials to find out why it quit working. I found that if I
didn't have a linkbutton, it quit working?????????

If I changed the linkbutton to a regular button, it quit working.

Here is the page:

************************************************** *************
<%@ Page Language="VB" trace="true" debug="true" ContentType="text/html"
ResponseEncoding="iso-8859-1" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SqlClient" %>
<html>
<head>
<title>:: Staffing Workshop ::</title>

<script runat="server">
sub Page_load(s as object,e as eventargs)
if not IsPostBack then
session("ClientID") = "1234"
Call CheckResumes()
Me.StoredResumes.Attributes("ondblClick") =
"__doPostBack('LbxSender','')"
end if
If Request.Form("__EVENTTARGET") = "LbxSender" Then
trace.warn("Inside LbxSender")
End If

end sub

Sub CheckResumes()
Dim emailReader As SqlDataReader

Dim ConnectionString as String
=System.Configuration.ConfigurationSettings.AppSet tings("MM_CONNECTION_STRING_ftsolutions")
Dim objConn as New SqlConnection (ConnectionString)
Dim CommandText as String = "Select ResumeTitle,ResumeID,CoverLetterID
from ftsolutions.dbo.ResumeTemplates where ClientID = @ClientID and Email
= @Email"
Dim objCmd as New SqlCommand(CommandText,objConn)
with objCmd.Parameters
.Add("@ClientID",SqlDbType.VarChar,20).value = session("ClientID")
.Add("@Email",SqlDbType.VarChar,45).value = session("Email")
end with
objConn.Open()
StoredResumes.DataSource=objCmd.ExecuteReader
StoredResumes.DataValueField="ResumeID"
StoredResumes.DataTextField= "ResumeTitle"
StoredResumes.databind()
End Sub
</script>
</head>

<body id="myBody" runat="server">

<form action="" method="post" runat="server">
<br>
<asp:ListBox id="StoredResumes" rows="5" columns="30"
runat="server" />
<asp:linkButton id="NewRecord" Text="New" runat="server" />
</form>

<p>&nbsp;</p>
</body>
</html>
************************************************** ***********************

This page works fine. Loads the Listbox fine. Sets the Listbox to have
the ondblClick event, which works great (it does post back and the
trace.warn displays fine.

But if I take out the line:

<asp:linkButton id="NewRecord" Text="New" runat="server" />

It quits working.

If I change it to:

<asp:Button id="NewRecord" Text="New" runat="server" />

It quits working (the button works, but the dblClick does not).

These objects are not connected, why would it have an effect?

I need to find out what is happening as 2 of my main pages are now not
working correctly.

Thanks,

Tom

Nov 19 '05 #3
"Bruce Barker" <br******************@safeco.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
makes perfect sense.

you wrote client code that calls __doPostBack(), the routine used by
autopostback (javascript) controls. you need an autopostback control on
the page for this to be available. a linkbutton works, but a standard
asp:button is actually a submit button, and does not require javascript to
postback. if a control is maked invisible, its not rendered, so it just
like its not on the page.
I'd never heard that one before.

I don't think any of the other places where it shows how to set up double
clicking do they talk about needing another control to make it work.

I assumed that the double click event is self contained to the control it is
connected to as well as Javascript (not asp.net). What else could I use on
the page to make it work other than a link button.

The invisible problem does make sense.

Thanks,

Tom
-- bruce (sqlwork.com)
"tshad" <ts**********@ftsolutions.com> wrote in message
news:eF*************@TK2MSFTNGP15.phx.gbl...
I have been working with setting my drop boxes to allow double clicking to
select an item.

It worked fine until I made some changes. I then stripped the page down
to the bare essentials to find out why it quit working. I found that if
I didn't have a linkbutton, it quit working?????????

If I changed the linkbutton to a regular button, it quit working.

Here is the page:

************************************************** *************
<%@ Page Language="VB" trace="true" debug="true" ContentType="text/html"
ResponseEncoding="iso-8859-1" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SqlClient" %>
<html>
<head>
<title>:: Staffing Workshop ::</title>

<script runat="server">
sub Page_load(s as object,e as eventargs)
if not IsPostBack then
session("ClientID") = "1234"
Call CheckResumes()
Me.StoredResumes.Attributes("ondblClick") =
"__doPostBack('LbxSender','')"
end if
If Request.Form("__EVENTTARGET") = "LbxSender" Then
trace.warn("Inside LbxSender")
End If

end sub

Sub CheckResumes()
Dim emailReader As SqlDataReader

Dim ConnectionString as String
=System.Configuration.ConfigurationSettings.AppSet tings("MM_CONNECTION_STRING_ftsolutions")
Dim objConn as New SqlConnection (ConnectionString)
Dim CommandText as String = "Select ResumeTitle,ResumeID,CoverLetterID
from ftsolutions.dbo.ResumeTemplates where ClientID = @ClientID and Email
= @Email"
Dim objCmd as New SqlCommand(CommandText,objConn)
with objCmd.Parameters
.Add("@ClientID",SqlDbType.VarChar,20).value = session("ClientID")
.Add("@Email",SqlDbType.VarChar,45).value = session("Email")
end with
objConn.Open()
StoredResumes.DataSource=objCmd.ExecuteReader
StoredResumes.DataValueField="ResumeID"
StoredResumes.DataTextField= "ResumeTitle"
StoredResumes.databind()
End Sub
</script>
</head>

<body id="myBody" runat="server">

<form action="" method="post" runat="server">
<br>
<asp:ListBox id="StoredResumes" rows="5" columns="30"
runat="server" />
<asp:linkButton id="NewRecord" Text="New" runat="server" />
</form>

<p>&nbsp;</p>
</body>
</html>
************************************************** ***********************

This page works fine. Loads the Listbox fine. Sets the Listbox to have
the ondblClick event, which works great (it does post back and the
trace.warn displays fine.

But if I take out the line:

<asp:linkButton id="NewRecord" Text="New" runat="server" />

It quits working.

If I change it to:

<asp:Button id="NewRecord" Text="New" runat="server" />

It quits working (the button works, but the dblClick does not).

These objects are not connected, why would it have an effect?

I need to find out what is happening as 2 of my main pages are now not
working correctly.

Thanks,

Tom


Nov 19 '05 #4
the code you add to the dblclick is

"__doPostBack('LbxSender','')"

for the client javascript function __doPostBack to exist, you need an
autopostback control on the page. if you just need a postback try:

"document.forms[0].submit();"

-- bruce (sqlwork.com)
"tshad" <ts**********@ftsolutions.com> wrote in message
news:eD**************@TK2MSFTNGP15.phx.gbl...
"Bruce Barker" <br******************@safeco.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
makes perfect sense.

you wrote client code that calls __doPostBack(), the routine used by
autopostback (javascript) controls. you need an autopostback control on
the page for this to be available. a linkbutton works, but a standard
asp:button is actually a submit button, and does not require javascript
to postback. if a control is maked invisible, its not rendered, so it
just like its not on the page.


I'd never heard that one before.

I don't think any of the other places where it shows how to set up double
clicking do they talk about needing another control to make it work.

I assumed that the double click event is self contained to the control it
is connected to as well as Javascript (not asp.net). What else could I
use on the page to make it work other than a link button.

The invisible problem does make sense.

Thanks,

Tom

-- bruce (sqlwork.com)
"tshad" <ts**********@ftsolutions.com> wrote in message
news:eF*************@TK2MSFTNGP15.phx.gbl...
I have been working with setting my drop boxes to allow double clicking
to select an item.

It worked fine until I made some changes. I then stripped the page down
to the bare essentials to find out why it quit working. I found that if
I didn't have a linkbutton, it quit working?????????

If I changed the linkbutton to a regular button, it quit working.

Here is the page:

************************************************** *************
<%@ Page Language="VB" trace="true" debug="true" ContentType="text/html"
ResponseEncoding="iso-8859-1" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SqlClient" %>
<html>
<head>
<title>:: Staffing Workshop ::</title>

<script runat="server">
sub Page_load(s as object,e as eventargs)
if not IsPostBack then
session("ClientID") = "1234"
Call CheckResumes()
Me.StoredResumes.Attributes("ondblClick") =
"__doPostBack('LbxSender','')"
end if
If Request.Form("__EVENTTARGET") = "LbxSender" Then
trace.warn("Inside LbxSender")
End If

end sub

Sub CheckResumes()
Dim emailReader As SqlDataReader

Dim ConnectionString as String
=System.Configuration.ConfigurationSettings.AppSet tings("MM_CONNECTION_STRING_ftsolutions")
Dim objConn as New SqlConnection (ConnectionString)
Dim CommandText as String = "Select ResumeTitle,ResumeID,CoverLetterID
from ftsolutions.dbo.ResumeTemplates where ClientID = @ClientID and
Email = @Email"
Dim objCmd as New SqlCommand(CommandText,objConn)
with objCmd.Parameters
.Add("@ClientID",SqlDbType.VarChar,20).value = session("ClientID")
.Add("@Email",SqlDbType.VarChar,45).value = session("Email")
end with
objConn.Open()
StoredResumes.DataSource=objCmd.ExecuteReader
StoredResumes.DataValueField="ResumeID"
StoredResumes.DataTextField= "ResumeTitle"
StoredResumes.databind()
End Sub
</script>
</head>

<body id="myBody" runat="server">

<form action="" method="post" runat="server">
<br>
<asp:ListBox id="StoredResumes" rows="5" columns="30"
runat="server" />
<asp:linkButton id="NewRecord" Text="New" runat="server" />
</form>

<p>&nbsp;</p>
</body>
</html>
************************************************** ***********************

This page works fine. Loads the Listbox fine. Sets the Listbox to have
the ondblClick event, which works great (it does post back and the
trace.warn displays fine.

But if I take out the line:

<asp:linkButton id="NewRecord" Text="New" runat="server" />

It quits working.

If I change it to:

<asp:Button id="NewRecord" Text="New" runat="server" />

It quits working (the button works, but the dblClick does not).

These objects are not connected, why would it have an effect?

I need to find out what is happening as 2 of my main pages are now not
working correctly.

Thanks,

Tom



Nov 19 '05 #5
"Bruce Barker" <br******************@safeco.com> wrote in message
news:uT*************@TK2MSFTNGP15.phx.gbl...
the code you add to the dblclick is

"__doPostBack('LbxSender','')"

for the client javascript function __doPostBack to exist, you need an
autopostback control on the page. if you just need a postback try:

"document.forms[0].submit();"
Where would I put that?

For an autopostback, could I just put that on the asp:listbox line?

Thanks,

Tom
-- bruce (sqlwork.com)
"tshad" <ts**********@ftsolutions.com> wrote in message
news:eD**************@TK2MSFTNGP15.phx.gbl...
"Bruce Barker" <br******************@safeco.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
makes perfect sense.

you wrote client code that calls __doPostBack(), the routine used by
autopostback (javascript) controls. you need an autopostback control on
the page for this to be available. a linkbutton works, but a standard
asp:button is actually a submit button, and does not require javascript
to postback. if a control is maked invisible, its not rendered, so it
just like its not on the page.


I'd never heard that one before.

I don't think any of the other places where it shows how to set up double
clicking do they talk about needing another control to make it work.

I assumed that the double click event is self contained to the control it
is connected to as well as Javascript (not asp.net). What else could I
use on the page to make it work other than a link button.

The invisible problem does make sense.

Thanks,

Tom

-- bruce (sqlwork.com)
"tshad" <ts**********@ftsolutions.com> wrote in message
news:eF*************@TK2MSFTNGP15.phx.gbl...
I have been working with setting my drop boxes to allow double clicking
to select an item.

It worked fine until I made some changes. I then stripped the page
down to the bare essentials to find out why it quit working. I found
that if I didn't have a linkbutton, it quit working?????????

If I changed the linkbutton to a regular button, it quit working.

Here is the page:

************************************************** *************
<%@ Page Language="VB" trace="true" debug="true"
ContentType="text/html" ResponseEncoding="iso-8859-1" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SqlClient" %>
<html>
<head>
<title>:: Staffing Workshop ::</title>

<script runat="server">
sub Page_load(s as object,e as eventargs)
if not IsPostBack then
session("ClientID") = "1234"
Call CheckResumes()
Me.StoredResumes.Attributes("ondblClick") =
"__doPostBack('LbxSender','')"
end if
If Request.Form("__EVENTTARGET") = "LbxSender" Then
trace.warn("Inside LbxSender")
End If

end sub

Sub CheckResumes()
Dim emailReader As SqlDataReader

Dim ConnectionString as String
=System.Configuration.ConfigurationSettings.AppSet tings("MM_CONNECTION_STRING_ftsolutions")
Dim objConn as New SqlConnection (ConnectionString)
Dim CommandText as String = "Select ResumeTitle,ResumeID,CoverLetterID
from ftsolutions.dbo.ResumeTemplates where ClientID = @ClientID and
Email = @Email"
Dim objCmd as New SqlCommand(CommandText,objConn)
with objCmd.Parameters
.Add("@ClientID",SqlDbType.VarChar,20).value = session("ClientID")
.Add("@Email",SqlDbType.VarChar,45).value = session("Email")
end with
objConn.Open()
StoredResumes.DataSource=objCmd.ExecuteReader
StoredResumes.DataValueField="ResumeID"
StoredResumes.DataTextField= "ResumeTitle"
StoredResumes.databind()
End Sub
</script>
</head>

<body id="myBody" runat="server">

<form action="" method="post" runat="server">
<br>
<asp:ListBox id="StoredResumes" rows="5" columns="30"
runat="server" />
<asp:linkButton id="NewRecord" Text="New" runat="server" />
</form>

<p>&nbsp;</p>
</body>
</html>
************************************************** ***********************

This page works fine. Loads the Listbox fine. Sets the Listbox to
have the ondblClick event, which works great (it does post back and the
trace.warn displays fine.

But if I take out the line:

<asp:linkButton id="NewRecord" Text="New" runat="server" />

It quits working.

If I change it to:

<asp:Button id="NewRecord" Text="New" runat="server" />

It quits working (the button works, but the dblClick does not).

These objects are not connected, why would it have an effect?

I need to find out what is happening as 2 of my main pages are now not
working correctly.

Thanks,

Tom



Nov 19 '05 #6

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

Similar topics

6
by: Richard A. Lowe | last post by:
I'm using P/Invoke to call SendInput (using code culled from these newsgroups!) to send mouse events to a window. But I'm unsure how to send double-clicks. A VB6 article I saw on SendInput...
1
by: Lalit Bhatia | last post by:
Hi when focus is on a cell in datagrid. double click event does not occur. when I double click on rowheader, columnheader then this event fires. I am using DataGridTableStyle in the grid. ...
2
by: active | last post by:
I've been working on a problem for a few days now. I do not get a Double-Click event fired for a ListView when I double click. I now find that if I double click with the right button it works OK....
1
by: active | last post by:
I've been working on a problem for a few days now. I do not get a Double-Click event fired for a ListView when I double click. I now find that if I double click with the right button it works OK....
3
by: Neil Wallace | last post by:
Hi, This is an odd one. I've been struggling to get "double click" to work well for my controls. The same event handler works perfectly for buttons, but not for labels. Can anyone tell me...
3
by: Siv | last post by:
Hi, I have a ListView control in a Windows application, currently single clicking a customer name in this list, selects the customer and displays their details in text boxes to the right of the...
9
by: Armando | last post by:
I have an app (A2000) where I am letting the user move an object on the screen. I use the OnClick for a command button event to modify the object's Top (or Left) properties, but you can only click...
6
by: Jim Devenish | last post by:
I have an unbound form that displays all the days of the year as a calendar. It has 12 rows of text boxes with either 29,30 or 31 in each row. Text box names are of the form: display_01_01,...
2
by: Tom | last post by:
Double clicking the title bar to toggle a form between full screen size and the previous size is a great feature. Can someone please explain how to programmatically double click the title bar? ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
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
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...

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.