473,394 Members | 2,160 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,394 software developers and data experts.

submit(); problem

DB
Hi All
Having stared at this all morning and altered various things with no effect
other then to exasperate the problem i'm wondering if anyone could take a
look at the code below and see why on earth it's failing - I'm getting a
"Object doesn't suppport this property or method" Line 32 char 5 when i
attempt to change the location, have looked all over for answers and not
found anything on the net or in the js ref docs i have - any pointers
greatfully recieved. It was working until I added in the Location submit
function and now fails on all of the submit functions..
Thanks in Advance.
Diz

<html>
<head>
<link rel="stylesheet" href="includes/styles.css">
<script language="JavaScript">
<!--
function portOption(val) {
portOption = val;
if (portOption == "yes") {
alert("open port option");
userid = document.quoteForm.CompanyID.value;
document.quoteForm.action =
'services.asp?circuits=true&action=autoquote&UserG roupID='
+userid+'&op=yes';
document.quoteForm.submit();
exit;
} else {
alert("no open port option");
userid = document.quoteForm.CompanyID.value;
document.quoteForm.action =
'services.asp?circuits=true&action=autoquote&UserG roupID=' +userid+'&op=no';
document.quoteForm.Submit();
exit;
}
}

var selectedLocationValue = null;
var selectedLocationText = null;
function checkLocations(what) {
userid = document.quoteForm.CompanyID.value;
selectedLocationValue = what.options[what.selectedIndex].value;
var substrings = selectedLocationValue.split('London');
if ((substrings.length - 1) > 0) {
if (navigator.appName == 'Netscape' || document.all) {
document.quoteForm.action = 'services.asp';
//?circuits=true&action=autoquote&UserGroupID=' + userid;
document.quoteForm.Submit();
}
} else {
if (navigator.appName == 'Netscape' || document.all) {
document.quoteForm.action =
'services.asp?circuits=true&action=autoquote&UserG roupID=' + userid;
document.quoteForm.Submit();
}

}

}

function getCircuits() {
bus = document.quoteForm.bus[0].checked;
res = document.quoteForm.bus[1].checked;
userid = document.quoteForm.CompanyID.value;
if ((bus == false) && (res == false)) {
traffic = false;
}else {
document.quoteForm.action =
'services.asp?circuits=true&action=autoquote&UserG roupID=' + userid;
document.quoteForm.submit();
}
}

var selectedOptionValue = null;
var selectedOptionText = null;

function setCompany(what) {
selectedOptionValue = what.options[what.selectedIndex].value;
document.quoteForm.action = 'services.asp?action=autoquote&UserGroupID=' +
selectedOptionValue;
document.quoteForm.submit();
}

function resetQuote() {
document.quoteForm.action = 'services.asp?action=autoquote';
document.quoteForm.submit();
}

//-->
</script>
</head>
<body>

<form name="quoteForm" method="POST" action="getquote.asp">
<table class="AutoQuote">
<tr>
<td bgcolor=#c0c0c0 colspan=2 class="QuoteHd">Autoquote tool</td>
</tr>
<tr>
<td>Salesperson: SalesPerson</td>
<td align="right">Company: <input type="hidden" name="CompanyName"
value="2heads"><input type="hidden" name="CompanyID" value="1">2heads</td>
</tr>
<tr>
<td colspan=2>What committed data rate (CDR) does the customer require?
<select name="CDR" onChange="javascript:getCircuits()"><option
value="1">10</option><option value="2">15</option><option
value="3">20</option><option value="4" selected>25</option><option
value="5">30</option><option value="6">35</option><option
value="7">40</option><option value="8">45</option><option
value="9">50</option><option value="10">55</option><option
value="11">60</option><option value="12">65</option><option
value="13">70</option><option value="14">75</option><option
value="15">80</option><option value="16">85</option><option
value="17">90</option><option value="18">95</option><option
value="19">100</option><option value="20">105</option><option
value="21">110</option><option value="22">115</option><option
value="23">120</option><option value="24">125</option><option
value="25">130</option><option value="26">135</option><option
value="27">140</option><option value="28">145</option><option
value="29">150</option><option value="30">155</option><option
value="31">160</option><option value="32">165</option><option
value="33">170</option><option value="34">175</option><option
value="35">180</option><option value="36">185</option><option
value="37">190</option><option value="38">195</option><option
value="39">200</option><option value="40">250</option><option
value="41">300</option><option value="42">350</option><option
value="43">400</option><option value="44">450</option><option
value="45">500</option><option value="46">550</option><option
value="47">600</option><option value="48">650</option><option
value="49">700</option><option value="50">750</option><option
value="51">800</option><option value="52">850</option><option
value="53">900</option><option value="54">950</option><option
value="55">1000</option><option value="56">1050</option><option
value="57">1100</option><option value="58">1150</option><option
value="59">1200</option><option value="60">1250</option><option
value="61">1300</option><option value="62">1350</option><option
value="63">1400</option><option value="64">1450</option><option
value="65">1500</option><option value="66">1550</option><option
value="67">1600</option><option value="68">1650</option><option
value="69">1700</option><option value="70">1750</option><option
value="71">1800</option><option value="72">1850</option><option
value="73">1900</option><option value="74">1950</option><option
value="75">2000</option></select>Mbit/s</td>
</tr>
<tr>
<td rowspan=2 valign=top>Does the customer have a </td>
<td><input type="radio" name="bus" value="yes" checked
onClick="javascript:getCircuits()">business traffic
profile</td></tr><tr><td><input type="radio" name="bus" value="no"
onClick="javascript:getCircuits()">residential traffic
profile</td></tr><tr><td colspan=2>For this capacity you require at least
<b>1<input type="hidden" name="circuitnumber" value="1">&nbsp;Fast
Ethernet<input type="hidden" name="circuittype" value="Fast Ethernet"></b>
Circuit(s)</td></tr><tr><td >Connection Location:</td><td><select
name="connlocation" onBlur="javascript:checkLocations(this)"><option
value="London Telehouse">London Telehouse</option><option value="London
Location 2">London Location 2</option><option
value="Manchester">Manchester</option><option
value="Birmingham">Birmingham</option><option
value="Dublin">Dublin</option></select></td></tr><tr><td>Contract
length:</td><td><select name="ContractLength"><option value="6 Months">6
Months</option><option value="7 Months">7 Months</option><option value="8
Months">8 Months</option><option value="9 Months">9 Months</option><option
value="10 Months">10 Months</option><option value="11 Months">11
Months</option><option value="12 Months">12 Months</option><option value="13
Months">13 Months</option><option value="14 Months">14
Months</option><option value="15 Months">15 Months</option><option value="16
Months">16 Months</option><option value="17 Months">17
Months</option><option value="18 Months">18 Months</option><option value="19
Months">19 Months</option><option value="20 Months">20
Months</option><option value="21 Months">21 Months</option><option value="22
Months">22 Months</option><option value="23 Months">23
Months</option><option value="24 Months">24
Months</option></select></td></tr><input type="hidden" name="op"
value="yes"><tr><td colspan="2" class="QuoteFt"><input type="submit"
name="submit" value="get quote" class="bluebut"> &nbsp; <input type="button"
name="reset" value="reset" class="bluebut"
onClick="javascript:resetQuote()"></td></tr></table></form>

</body>
</html>
Jul 20 '05 #1
2 2200
DB
I've actually spotted that i've left in two exit; 's and a couple of
Submit(); 's (capital S) in there - these were just put in whilst clutching
at straws a couple of mins ago, and aren't really in the script, please
ignore..!

"DB" <%64%69%7a%7a%79%62%69%72%64%40%64%69%7a%7a%79%2e% 63%78> wrote in
message news:vs************@corp.supernews.com...
Hi All
Having stared at this all morning and altered various things with no effect other then to exasperate the problem i'm wondering if anyone could take a
look at the code below and see why on earth it's failing - I'm getting a
"Object doesn't suppport this property or method" Line 32 char 5 when i
attempt to change the location, have looked all over for answers and not
found anything on the net or in the js ref docs i have - any pointers
greatfully recieved. It was working until I added in the Location submit
function and now fails on all of the submit functions..
Thanks in Advance.
Diz

<html>
<head>
<link rel="stylesheet" href="includes/styles.css">
<script language="JavaScript">
<!--
function portOption(val) {
portOption = val;
if (portOption == "yes") {
alert("open port option");
userid = document.quoteForm.CompanyID.value;
document.quoteForm.action =
'services.asp?circuits=true&action=autoquote&UserG roupID='
+userid+'&op=yes';
document.quoteForm.submit();
exit;
} else {
alert("no open port option");
userid = document.quoteForm.CompanyID.value;
document.quoteForm.action =
'services.asp?circuits=true&action=autoquote&UserG roupID=' +userid+'&op=no'; document.quoteForm.Submit();
exit;
}
}

var selectedLocationValue = null;
var selectedLocationText = null;
function checkLocations(what) {
userid = document.quoteForm.CompanyID.value;
selectedLocationValue = what.options[what.selectedIndex].value;
var substrings = selectedLocationValue.split('London');
if ((substrings.length - 1) > 0) {
if (navigator.appName == 'Netscape' || document.all) {
document.quoteForm.action = 'services.asp';
//?circuits=true&action=autoquote&UserGroupID=' + userid;
document.quoteForm.Submit();
}
} else {
if (navigator.appName == 'Netscape' || document.all) {
document.quoteForm.action =
'services.asp?circuits=true&action=autoquote&UserG roupID=' + userid;
document.quoteForm.Submit();
}

}

}

function getCircuits() {
bus = document.quoteForm.bus[0].checked;
res = document.quoteForm.bus[1].checked;
userid = document.quoteForm.CompanyID.value;
if ((bus == false) && (res == false)) {
traffic = false;
}else {
document.quoteForm.action =
'services.asp?circuits=true&action=autoquote&UserG roupID=' + userid;
document.quoteForm.submit();
}
}

var selectedOptionValue = null;
var selectedOptionText = null;

function setCompany(what) {
selectedOptionValue = what.options[what.selectedIndex].value;
document.quoteForm.action = 'services.asp?action=autoquote&UserGroupID=' + selectedOptionValue;
document.quoteForm.submit();
}

function resetQuote() {
document.quoteForm.action = 'services.asp?action=autoquote';
document.quoteForm.submit();
}

//-->
</script>
</head>
<body>

<form name="quoteForm" method="POST" action="getquote.asp">
<table class="AutoQuote">
<tr>
<td bgcolor=#c0c0c0 colspan=2 class="QuoteHd">Autoquote tool</td>
</tr>
<tr>
<td>Salesperson: SalesPerson</td>
<td align="right">Company: <input type="hidden" name="CompanyName"
value="2heads"><input type="hidden" name="CompanyID" value="1">2heads</td>
</tr>
<tr>
<td colspan=2>What committed data rate (CDR) does the customer require?
<select name="CDR" onChange="javascript:getCircuits()"><option
value="1">10</option><option value="2">15</option><option
value="3">20</option><option value="4" selected>25</option><option
value="5">30</option><option value="6">35</option><option
value="7">40</option><option value="8">45</option><option
value="9">50</option><option value="10">55</option><option
value="11">60</option><option value="12">65</option><option
value="13">70</option><option value="14">75</option><option
value="15">80</option><option value="16">85</option><option
value="17">90</option><option value="18">95</option><option
value="19">100</option><option value="20">105</option><option
value="21">110</option><option value="22">115</option><option
value="23">120</option><option value="24">125</option><option
value="25">130</option><option value="26">135</option><option
value="27">140</option><option value="28">145</option><option
value="29">150</option><option value="30">155</option><option
value="31">160</option><option value="32">165</option><option
value="33">170</option><option value="34">175</option><option
value="35">180</option><option value="36">185</option><option
value="37">190</option><option value="38">195</option><option
value="39">200</option><option value="40">250</option><option
value="41">300</option><option value="42">350</option><option
value="43">400</option><option value="44">450</option><option
value="45">500</option><option value="46">550</option><option
value="47">600</option><option value="48">650</option><option
value="49">700</option><option value="50">750</option><option
value="51">800</option><option value="52">850</option><option
value="53">900</option><option value="54">950</option><option
value="55">1000</option><option value="56">1050</option><option
value="57">1100</option><option value="58">1150</option><option
value="59">1200</option><option value="60">1250</option><option
value="61">1300</option><option value="62">1350</option><option
value="63">1400</option><option value="64">1450</option><option
value="65">1500</option><option value="66">1550</option><option
value="67">1600</option><option value="68">1650</option><option
value="69">1700</option><option value="70">1750</option><option
value="71">1800</option><option value="72">1850</option><option
value="73">1900</option><option value="74">1950</option><option
value="75">2000</option></select>Mbit/s</td>
</tr>
<tr>
<td rowspan=2 valign=top>Does the customer have a </td>
<td><input type="radio" name="bus" value="yes" checked
onClick="javascript:getCircuits()">business traffic
profile</td></tr><tr><td><input type="radio" name="bus" value="no"
onClick="javascript:getCircuits()">residential traffic
profile</td></tr><tr><td colspan=2>For this capacity you require at least
<b>1<input type="hidden" name="circuitnumber" value="1">&nbsp;Fast
Ethernet<input type="hidden" name="circuittype" value="Fast Ethernet"></b>
Circuit(s)</td></tr><tr><td >Connection Location:</td><td><select
name="connlocation" onBlur="javascript:checkLocations(this)"><option
value="London Telehouse">London Telehouse</option><option value="London
Location 2">London Location 2</option><option
value="Manchester">Manchester</option><option
value="Birmingham">Birmingham</option><option
value="Dublin">Dublin</option></select></td></tr><tr><td>Contract
length:</td><td><select name="ContractLength"><option value="6 Months">6
Months</option><option value="7 Months">7 Months</option><option value="8
Months">8 Months</option><option value="9 Months">9 Months</option><option
value="10 Months">10 Months</option><option value="11 Months">11
Months</option><option value="12 Months">12 Months</option><option value="13 Months">13 Months</option><option value="14 Months">14
Months</option><option value="15 Months">15 Months</option><option value="16 Months">16 Months</option><option value="17 Months">17
Months</option><option value="18 Months">18 Months</option><option value="19 Months">19 Months</option><option value="20 Months">20
Months</option><option value="21 Months">21 Months</option><option value="22 Months">22 Months</option><option value="23 Months">23
Months</option><option value="24 Months">24
Months</option></select></td></tr><input type="hidden" name="op"
value="yes"><tr><td colspan="2" class="QuoteFt"><input type="submit"
name="submit" value="get quote" class="bluebut"> &nbsp; <input type="button" name="reset" value="reset" class="bluebut"
onClick="javascript:resetQuote()"></td></tr></table></form>

</body>
</html>

Jul 20 '05 #2
DB
Problem arose from the submit button being named submit.. now renamed to
submitit and all is pink and fluffy with the world
D.

"DB" <%64%69%7a%7a%79%62%69%72%64%40%64%69%7a%7a%79%2e% 63%78> wrote in
message news:vs************@corp.supernews.com...
Hi All
Having stared at this all morning and altered various things with no effect other then to exasperate the problem i'm wondering if anyone could take a
look at the code below and see why on earth it's failing - I'm getting a
"Object doesn't suppport this property or method" Line 32 char 5 when i
attempt to change the location, have looked all over for answers and not
found anything on the net or in the js ref docs i have - any pointers
greatfully recieved. It was working until I added in the Location submit
function and now fails on all of the submit functions..
Thanks in Advance.
Diz

<html>
<head>
<link rel="stylesheet" href="includes/styles.css">
<script language="JavaScript">
<!--
function portOption(val) {
portOption = val;
if (portOption == "yes") {
alert("open port option");
userid = document.quoteForm.CompanyID.value;
document.quoteForm.action =
'services.asp?circuits=true&action=autoquote&UserG roupID='
+userid+'&op=yes';
document.quoteForm.submit();
exit;
} else {
alert("no open port option");
userid = document.quoteForm.CompanyID.value;
document.quoteForm.action =
'services.asp?circuits=true&action=autoquote&UserG roupID=' +userid+'&op=no'; document.quoteForm.Submit();
exit;
}
}

var selectedLocationValue = null;
var selectedLocationText = null;
function checkLocations(what) {
userid = document.quoteForm.CompanyID.value;
selectedLocationValue = what.options[what.selectedIndex].value;
var substrings = selectedLocationValue.split('London');
if ((substrings.length - 1) > 0) {
if (navigator.appName == 'Netscape' || document.all) {
document.quoteForm.action = 'services.asp';
//?circuits=true&action=autoquote&UserGroupID=' + userid;
document.quoteForm.Submit();
}
} else {
if (navigator.appName == 'Netscape' || document.all) {
document.quoteForm.action =
'services.asp?circuits=true&action=autoquote&UserG roupID=' + userid;
document.quoteForm.Submit();
}

}

}

function getCircuits() {
bus = document.quoteForm.bus[0].checked;
res = document.quoteForm.bus[1].checked;
userid = document.quoteForm.CompanyID.value;
if ((bus == false) && (res == false)) {
traffic = false;
}else {
document.quoteForm.action =
'services.asp?circuits=true&action=autoquote&UserG roupID=' + userid;
document.quoteForm.submit();
}
}

var selectedOptionValue = null;
var selectedOptionText = null;

function setCompany(what) {
selectedOptionValue = what.options[what.selectedIndex].value;
document.quoteForm.action = 'services.asp?action=autoquote&UserGroupID=' + selectedOptionValue;
document.quoteForm.submit();
}

function resetQuote() {
document.quoteForm.action = 'services.asp?action=autoquote';
document.quoteForm.submit();
}

//-->
</script>
</head>
<body>

<form name="quoteForm" method="POST" action="getquote.asp">
<table class="AutoQuote">
<tr>
<td bgcolor=#c0c0c0 colspan=2 class="QuoteHd">Autoquote tool</td>
</tr>
<tr>
<td>Salesperson: SalesPerson</td>
<td align="right">Company: <input type="hidden" name="CompanyName"
value="2heads"><input type="hidden" name="CompanyID" value="1">2heads</td>
</tr>
<tr>
<td colspan=2>What committed data rate (CDR) does the customer require?
<select name="CDR" onChange="javascript:getCircuits()"><option
value="1">10</option><option value="2">15</option><option
value="3">20</option><option value="4" selected>25</option><option
value="5">30</option><option value="6">35</option><option
value="7">40</option><option value="8">45</option><option
value="9">50</option><option value="10">55</option><option
value="11">60</option><option value="12">65</option><option
value="13">70</option><option value="14">75</option><option
value="15">80</option><option value="16">85</option><option
value="17">90</option><option value="18">95</option><option
value="19">100</option><option value="20">105</option><option
value="21">110</option><option value="22">115</option><option
value="23">120</option><option value="24">125</option><option
value="25">130</option><option value="26">135</option><option
value="27">140</option><option value="28">145</option><option
value="29">150</option><option value="30">155</option><option
value="31">160</option><option value="32">165</option><option
value="33">170</option><option value="34">175</option><option
value="35">180</option><option value="36">185</option><option
value="37">190</option><option value="38">195</option><option
value="39">200</option><option value="40">250</option><option
value="41">300</option><option value="42">350</option><option
value="43">400</option><option value="44">450</option><option
value="45">500</option><option value="46">550</option><option
value="47">600</option><option value="48">650</option><option
value="49">700</option><option value="50">750</option><option
value="51">800</option><option value="52">850</option><option
value="53">900</option><option value="54">950</option><option
value="55">1000</option><option value="56">1050</option><option
value="57">1100</option><option value="58">1150</option><option
value="59">1200</option><option value="60">1250</option><option
value="61">1300</option><option value="62">1350</option><option
value="63">1400</option><option value="64">1450</option><option
value="65">1500</option><option value="66">1550</option><option
value="67">1600</option><option value="68">1650</option><option
value="69">1700</option><option value="70">1750</option><option
value="71">1800</option><option value="72">1850</option><option
value="73">1900</option><option value="74">1950</option><option
value="75">2000</option></select>Mbit/s</td>
</tr>
<tr>
<td rowspan=2 valign=top>Does the customer have a </td>
<td><input type="radio" name="bus" value="yes" checked
onClick="javascript:getCircuits()">business traffic
profile</td></tr><tr><td><input type="radio" name="bus" value="no"
onClick="javascript:getCircuits()">residential traffic
profile</td></tr><tr><td colspan=2>For this capacity you require at least
<b>1<input type="hidden" name="circuitnumber" value="1">&nbsp;Fast
Ethernet<input type="hidden" name="circuittype" value="Fast Ethernet"></b>
Circuit(s)</td></tr><tr><td >Connection Location:</td><td><select
name="connlocation" onBlur="javascript:checkLocations(this)"><option
value="London Telehouse">London Telehouse</option><option value="London
Location 2">London Location 2</option><option
value="Manchester">Manchester</option><option
value="Birmingham">Birmingham</option><option
value="Dublin">Dublin</option></select></td></tr><tr><td>Contract
length:</td><td><select name="ContractLength"><option value="6 Months">6
Months</option><option value="7 Months">7 Months</option><option value="8
Months">8 Months</option><option value="9 Months">9 Months</option><option
value="10 Months">10 Months</option><option value="11 Months">11
Months</option><option value="12 Months">12 Months</option><option value="13 Months">13 Months</option><option value="14 Months">14
Months</option><option value="15 Months">15 Months</option><option value="16 Months">16 Months</option><option value="17 Months">17
Months</option><option value="18 Months">18 Months</option><option value="19 Months">19 Months</option><option value="20 Months">20
Months</option><option value="21 Months">21 Months</option><option value="22 Months">22 Months</option><option value="23 Months">23
Months</option><option value="24 Months">24
Months</option></select></td></tr><input type="hidden" name="op"
value="yes"><tr><td colspan="2" class="QuoteFt"><input type="submit"
name="submit" value="get quote" class="bluebut"> &nbsp; <input type="button" name="reset" value="reset" class="bluebut"
onClick="javascript:resetQuote()"></td></tr></table></form>

</body>
</html>

Jul 20 '05 #3

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

Similar topics

15
by: M Smith | last post by:
I have a form I want to submit to itself. I want to be able to type in a list of numbers and submit the form and have that list show up on the same form under the text box I typed them into and...
2
by: Margaret Werdermann | last post by:
Hi all: I'm having a nasty time with a particularly difficult piece of code and was hoping someone might be able to help me. I have a FormMail form that originally worked perfectly. Then, I...
15
by: JR | last post by:
Hi. I hope someone out there who is more versed with JavaScript than I can help me with the following annoying problem. Here's the problem. I have a form with the following layout: Column A...
4
by: jwlum | last post by:
I have the following problem under Internet Explorer only: 1. User fills out form data (myform.php) and clicks a button that fires myFunction() 2. myFunction() spawns a "hello, world" popup page...
1
by: kkuniya | last post by:
Situation : - A form (method : POST, action : itself, onsubmit : alert 'Submit' ) - Got 2 submit button ( 'Save' , 'View') - Got navigation 1|2|3|4 What I want to do : - Once clicked on the...
5
by: antonyliu2002 | last post by:
Hi, It looks like so many people are having problems with the javascript submit in firefox. I searched around, but haven't found a solution yet. Mostly, people were saying, try this or try...
8
by: kj | last post by:
Is there a simple way to decouple the value attribute of a submit button from the text that actually gets displayed on it? In principle, what I'm looking for is something like <input...
4
by: szimek | last post by:
Hi, I've already posted an email with this problem, but this time I think I got a bit more info. The app I'm currently working on works like this: when user clicks on a clickable element, it...
7
by: Petr Vileta \(fidokomik\) | last post by:
I have a form with few text inputs. Every text input is followed by image type input. In this form I want to have 1 submit button on the top. A problem I want to resolve is: when user type...
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...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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...
0
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...

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.