473,396 Members | 2,052 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.

UPDATE : Help Required to Populate search results - Array Search

I have the following array:
function showCPUs(){
//name brandID dualCore dualProcessor
var cpuItem=['Pentium 4 HT Northwood','2','N','N'];
var cpuItem=['Pentium D 820','2','Y','N'];
var cpuItem=['Pentium D 830','2','Y','N'];
var cpuItem=['Pentium D 840','2','Y','N'];
var cpuItem=['Xeon','2','N','Y'];
var cpuItem=['Xeon','2','N','Y'];
var cpuItem=['Xeon','2','N','Y'];
var cpuItem=['Xeon Dempsey','2','N','Y'];
var cpuItem=['Athlon 64 3000','1','N','N'];
var cpuItem=['Athlon 64 3200','1','N','N'];
var cpuItem=['Athlon 64 3500','1','N','N'];
var cpuItem=['Athlon 64 4000','1','N','N'];
var cpuItem=['Athlon 64 X2 4200','1','Y','N'];
var cpuItem=['Athlon 64 X2 4400','1','Y','N'];
var cpuItem=['Athlon 64 X2 4600','1','Y','N'];
var cpuItem=['Athlon 64 X2 4800','1','Y','N'];
var cpuItem=['Opteron 242','1','N','Y'];
var cpuItem=['Opteron 244','1','N','Y'];
var cpuItem=['Opteron 246','1','N','Y'];
var cpuItem=['Opteron 252','1','Y','Y'];
}
</script>

and the following hidden fields that are set by drop down menus
<input name="cpuBrandID" type="text" id="cpuBrandID">
<input name="dualCoreID" type="text" id="dualCoreID">
<input name="dualProcessorID" type="text" id="dualProcessorID">

How can I search against the hidden values to generate a list of items from
my array?

eg
cpuBrandID = 2
dualCoreID = Y
dualProcessorID = N

will populate the page with the following processors from the array:
Pentium D 820
Pentium D 830
Pentium D 840

Many Thanks

Craig
Jul 23 '05 #1
10 2701
"Craig Keightley" <do**@spam.me> wrote in message
news:42***********************@news-text.dial.pipex.com...
I have the following array:
function showCPUs(){
//name brandID dualCore dualProcessor
var cpuItem=['Pentium 4 HT Northwood','2','N','N'];
var cpuItem=['Pentium D 820','2','Y','N'];
var cpuItem=['Pentium D 830','2','Y','N'];
var cpuItem=['Pentium D 840','2','Y','N'];
var cpuItem=['Xeon','2','N','Y'];
var cpuItem=['Xeon','2','N','Y'];
var cpuItem=['Xeon','2','N','Y'];
var cpuItem=['Xeon Dempsey','2','N','Y'];
var cpuItem=['Athlon 64 3000','1','N','N'];
var cpuItem=['Athlon 64 3200','1','N','N'];
var cpuItem=['Athlon 64 3500','1','N','N'];
var cpuItem=['Athlon 64 4000','1','N','N'];
var cpuItem=['Athlon 64 X2 4200','1','Y','N'];
var cpuItem=['Athlon 64 X2 4400','1','Y','N'];
var cpuItem=['Athlon 64 X2 4600','1','Y','N'];
var cpuItem=['Athlon 64 X2 4800','1','Y','N'];
var cpuItem=['Opteron 242','1','N','Y'];
var cpuItem=['Opteron 244','1','N','Y'];
var cpuItem=['Opteron 246','1','N','Y'];
var cpuItem=['Opteron 252','1','Y','Y'];
}
</script>

and the following hidden fields that are set by drop down menus
<input name="cpuBrandID" type="text" id="cpuBrandID">
<input name="dualCoreID" type="text" id="dualCoreID">
<input name="dualProcessorID" type="text" id="dualProcessorID">

How can I search against the hidden values to generate a list of items from my array?

eg
cpuBrandID = 2
dualCoreID = Y
dualProcessorID = N

will populate the page with the following processors from the array:
Pentium D 820
Pentium D 830
Pentium D 840

Many Thanks

Craig


1) "var cpuItem" is declared multiple times.

2) "type=text" is not a hidden field.
Is this what you're looking for? Watch for word-wrap.

<html>
<head>
<title>cpuItem.htm</title>
<script type="text/javascript">
var s = 0;
var cpuItem = new Array();
cpuItem[s++] = ['cpuName','cpuBrand','dualCore','dualProcessor'];
cpuItem[s++] = ['Pentium 4 HT Northwood','2','N','N'];
cpuItem[s++] = ['Pentium D 820','2','Y','N'];
cpuItem[s++] = ['Pentium D 830','2','Y','N'];
cpuItem[s++] = ['Pentium D 840','2','Y','N'];
cpuItem[s++] = ['Xeon','2','N','Y'];
cpuItem[s++] = ['Xeon','2','N','Y'];
cpuItem[s++] = ['Xeon','2','N','Y'];
cpuItem[s++] = ['Xeon Dempsey','2','N','Y'];
cpuItem[s++] = ['Athlon 64 3000','1','N','N'];
cpuItem[s++] = ['Athlon 64 3200','1','N','N'];
cpuItem[s++] = ['Athlon 64 3500','1','N','N'];
cpuItem[s++] = ['Athlon 64 4000','1','N','N'];
cpuItem[s++] = ['Athlon 64 X2 4200','1','Y','N'];
cpuItem[s++] = ['Athlon 64 X2 4400','1','Y','N'];
cpuItem[s++] = ['Athlon 64 X2 4600','1','Y','N'];
cpuItem[s++] = ['Athlon 64 X2 4800','1','Y','N'];
cpuItem[s++] = ['Opteron 242','1','N','Y'];
cpuItem[s++] = ['Opteron 244','1','N','Y'];
cpuItem[s++] = ['Opteron 246','1','N','Y'];
cpuItem[s++] = ['Opteron 252','1','Y','Y'];
function showCPUs() {
var form = document.form1;
form.cpuName.value = "";
form.dualCore.value = form.dualCore.value.toUpperCase();
form.dualProcessor.value = form.dualProcessor.value.toUpperCase();
//
if (form.cpuBrand.value == "") return;
if ("12".indexOf(form.cpuBrand.value) < 0) {
alert("Invalid CPU Brand!");
return;
}
if (form.dualCore.value == "") return;
if ("YN".indexOf(form.dualCore.value) < 0) {
alert("Invalid Dual Core!");
return;
}
if (form.dualProcessor.value == "") return;
if ("YN".indexOf(form.dualProcessor.value) < 0) {
alert("Invalid Dual Processor!");
return;
}
//
var item = ""
for (var i=1; i<cpuItem.length; i++) {
if (form.cpuBrand.value == cpuItem[i][1]) {
if (form.dualCore.value == cpuItem[i][2]) {
if (form.dualProcessor.value == cpuItem[i][3]) {
if (item != "") item += "\n";
item += cpuItem[i][0];
}
}
}
}
form.cpuName.value = item;
}
</script>
</head>
<body onload="document.form1.cpuBrand.focus()">
<form action="" method="get" name="form1">
<b> CPU Brand : </b>
<input type="text" name="cpuBrand"
size="1" maxlength="1" onchange="showCPUs()">
<br>
<b> Dual Core (Y/N) : </b>
<input type="text" name="dualCore"
size="1" maxlength="1" onchange="showCPUs()">
<br>
<b> Dual Processor (Y/N) : </b>
<input type="text" name="dualProcessor"
size="1" maxlength="1" onchange="showCPUs()">
<br><br>
<b> CPU Name(s) :</b>
<br><textarea name="cpuName" cols="30" rows="10"
readonly style="background-color:lightyellow"></textarea>
<br>
<br><input type="reset" value="Clear"
onclick="document.form1.cpuBrand.focus()">
</form>
</body>
</html>

Jul 23 '05 #2
After a tweak, I now have the following array:

var cpuItem = new Array(
['Pentium 4 HT Northwood','2','N','N','10.00','p4.jpg'],
['Pentium D 820','2','Y','N','10.00','pd.jpg'],
['Pentium D 830','2','Y','N','20.00','pd.jpg'],
['Pentium D 840','2','Y','N','40.00','pd.jpg'],
['Xeon','2','N','Y','50.00','xeon.jpg'],
['Xeon','2','N','Y','60.00','xeon.jpg'],
['Xeon','2','N','Y','70.00','xeon.jpg'],
['Xeon Dempsey','2','N','Y','140.00','xeon.jpg'],
['Athlon 64 3000','1','N','N','0.00','a64.jpg'],
['Athlon 64 3200','1','N','N','5.00','a64.jpg'],
['Athlon 64 3500','1','N','N','15.00','a64.jpg'],
['Athlon 64 4000','1','N','N','25.00','a64.jpg'],
['Athlon 64 X2 4200','1','Y','N','35.00','a64X2.jpg'],
['Athlon 64 X2 4400','1','Y','N','40.00','a64X2.jpg'],
['Athlon 64 X2 4600','1','Y','N','60.00','a64X2.jpg'],
['Athlon 64 X2 4800','1','Y','N','70.00','a64X2.jpg'],
['Opteron 242','1','N','Y','20.00','opteron.jpg'],
['Opteron 244','1','N','Y','30.00','opteron.jpg'],
['Opteron 246','1','N','Y','45.00','opteron.jpg'],
['Opteron 252','1','Y','Y','120.00','opteron.jpg']
);

is searching an array possible?
"Craig Keightley" <do**@spam.me> wrote in message
news:42***********************@news-text.dial.pipex.com...
I have the following array:
function showCPUs(){
//name brandID dualCore dualProcessor
var cpuItem=['Pentium 4 HT Northwood','2','N','N'];
var cpuItem=['Pentium D 820','2','Y','N'];
var cpuItem=['Pentium D 830','2','Y','N'];
var cpuItem=['Pentium D 840','2','Y','N'];
var cpuItem=['Xeon','2','N','Y'];
var cpuItem=['Xeon','2','N','Y'];
var cpuItem=['Xeon','2','N','Y'];
var cpuItem=['Xeon Dempsey','2','N','Y'];
var cpuItem=['Athlon 64 3000','1','N','N'];
var cpuItem=['Athlon 64 3200','1','N','N'];
var cpuItem=['Athlon 64 3500','1','N','N'];
var cpuItem=['Athlon 64 4000','1','N','N'];
var cpuItem=['Athlon 64 X2 4200','1','Y','N'];
var cpuItem=['Athlon 64 X2 4400','1','Y','N'];
var cpuItem=['Athlon 64 X2 4600','1','Y','N'];
var cpuItem=['Athlon 64 X2 4800','1','Y','N'];
var cpuItem=['Opteron 242','1','N','Y'];
var cpuItem=['Opteron 244','1','N','Y'];
var cpuItem=['Opteron 246','1','N','Y'];
var cpuItem=['Opteron 252','1','Y','Y'];
}
</script>

and the following hidden fields that are set by drop down menus
<input name="cpuBrandID" type="text" id="cpuBrandID">
<input name="dualCoreID" type="text" id="dualCoreID">
<input name="dualProcessorID" type="text" id="dualProcessorID">

How can I search against the hidden values to generate a list of items
from my array?

eg
cpuBrandID = 2
dualCoreID = Y
dualProcessorID = N

will populate the page with the following processors from the array:
Pentium D 820
Pentium D 830
Pentium D 840

Many Thanks

Craig

Jul 23 '05 #3
Thank you thats what i need
I forgot to rewrite the text values to hidden as it was from my web page to
display my values

many thanks

Craig
"McKirahan" <Ne**@McKirahan.com> wrote in message
news:fI********************@comcast.com...
"Craig Keightley" <do**@spam.me> wrote in message
news:42***********************@news-text.dial.pipex.com...
I have the following array:
function showCPUs(){
//name brandID dualCore dualProcessor
var cpuItem=['Pentium 4 HT Northwood','2','N','N'];
var cpuItem=['Pentium D 820','2','Y','N'];
var cpuItem=['Pentium D 830','2','Y','N'];
var cpuItem=['Pentium D 840','2','Y','N'];
var cpuItem=['Xeon','2','N','Y'];
var cpuItem=['Xeon','2','N','Y'];
var cpuItem=['Xeon','2','N','Y'];
var cpuItem=['Xeon Dempsey','2','N','Y'];
var cpuItem=['Athlon 64 3000','1','N','N'];
var cpuItem=['Athlon 64 3200','1','N','N'];
var cpuItem=['Athlon 64 3500','1','N','N'];
var cpuItem=['Athlon 64 4000','1','N','N'];
var cpuItem=['Athlon 64 X2 4200','1','Y','N'];
var cpuItem=['Athlon 64 X2 4400','1','Y','N'];
var cpuItem=['Athlon 64 X2 4600','1','Y','N'];
var cpuItem=['Athlon 64 X2 4800','1','Y','N'];
var cpuItem=['Opteron 242','1','N','Y'];
var cpuItem=['Opteron 244','1','N','Y'];
var cpuItem=['Opteron 246','1','N','Y'];
var cpuItem=['Opteron 252','1','Y','Y'];
}
</script>

and the following hidden fields that are set by drop down menus
<input name="cpuBrandID" type="text" id="cpuBrandID">
<input name="dualCoreID" type="text" id="dualCoreID">
<input name="dualProcessorID" type="text" id="dualProcessorID">

How can I search against the hidden values to generate a list of items

from
my array?

eg
cpuBrandID = 2
dualCoreID = Y
dualProcessorID = N

will populate the page with the following processors from the array:
Pentium D 820
Pentium D 830
Pentium D 840

Many Thanks

Craig


1) "var cpuItem" is declared multiple times.

2) "type=text" is not a hidden field.
Is this what you're looking for? Watch for word-wrap.

<html>
<head>
<title>cpuItem.htm</title>
<script type="text/javascript">
var s = 0;
var cpuItem = new Array();
cpuItem[s++] = ['cpuName','cpuBrand','dualCore','dualProcessor'];
cpuItem[s++] = ['Pentium 4 HT Northwood','2','N','N'];
cpuItem[s++] = ['Pentium D 820','2','Y','N'];
cpuItem[s++] = ['Pentium D 830','2','Y','N'];
cpuItem[s++] = ['Pentium D 840','2','Y','N'];
cpuItem[s++] = ['Xeon','2','N','Y'];
cpuItem[s++] = ['Xeon','2','N','Y'];
cpuItem[s++] = ['Xeon','2','N','Y'];
cpuItem[s++] = ['Xeon Dempsey','2','N','Y'];
cpuItem[s++] = ['Athlon 64 3000','1','N','N'];
cpuItem[s++] = ['Athlon 64 3200','1','N','N'];
cpuItem[s++] = ['Athlon 64 3500','1','N','N'];
cpuItem[s++] = ['Athlon 64 4000','1','N','N'];
cpuItem[s++] = ['Athlon 64 X2 4200','1','Y','N'];
cpuItem[s++] = ['Athlon 64 X2 4400','1','Y','N'];
cpuItem[s++] = ['Athlon 64 X2 4600','1','Y','N'];
cpuItem[s++] = ['Athlon 64 X2 4800','1','Y','N'];
cpuItem[s++] = ['Opteron 242','1','N','Y'];
cpuItem[s++] = ['Opteron 244','1','N','Y'];
cpuItem[s++] = ['Opteron 246','1','N','Y'];
cpuItem[s++] = ['Opteron 252','1','Y','Y'];
function showCPUs() {
var form = document.form1;
form.cpuName.value = "";
form.dualCore.value = form.dualCore.value.toUpperCase();
form.dualProcessor.value = form.dualProcessor.value.toUpperCase();
//
if (form.cpuBrand.value == "") return;
if ("12".indexOf(form.cpuBrand.value) < 0) {
alert("Invalid CPU Brand!");
return;
}
if (form.dualCore.value == "") return;
if ("YN".indexOf(form.dualCore.value) < 0) {
alert("Invalid Dual Core!");
return;
}
if (form.dualProcessor.value == "") return;
if ("YN".indexOf(form.dualProcessor.value) < 0) {
alert("Invalid Dual Processor!");
return;
}
//
var item = ""
for (var i=1; i<cpuItem.length; i++) {
if (form.cpuBrand.value == cpuItem[i][1]) {
if (form.dualCore.value == cpuItem[i][2]) {
if (form.dualProcessor.value == cpuItem[i][3]) {
if (item != "") item += "\n";
item += cpuItem[i][0];
}
}
}
}
form.cpuName.value = item;
}
</script>
</head>
<body onload="document.form1.cpuBrand.focus()">
<form action="" method="get" name="form1">
<b> CPU Brand : </b>
<input type="text" name="cpuBrand"
size="1" maxlength="1" onchange="showCPUs()">
<br>
<b> Dual Core (Y/N) : </b>
<input type="text" name="dualCore"
size="1" maxlength="1" onchange="showCPUs()">
<br>
<b> Dual Processor (Y/N) : </b>
<input type="text" name="dualProcessor"
size="1" maxlength="1" onchange="showCPUs()">
<br><br>
<b> CPU Name(s) :</b>
<br><textarea name="cpuName" cols="30" rows="10"
readonly style="background-color:lightyellow"></textarea>
<br>
<br><input type="reset" value="Clear"
onclick="document.form1.cpuBrand.focus()">
</form>
</body>
</html>

Jul 23 '05 #4
"Craig Keightley" <do**@spam.me> wrote in message
news:42***********************@news-text.dial.pipex.com...
Thank you thats what i need
I forgot to rewrite the text values to hidden as it was from my web page to display my values

many thanks

Craig


[snip]

Your welcome.

BTW, in my code
<form action="" method="get" name="form1">
can be changed to
<form name="form1">
as the form is never submitted.

Of course, you'll have something else.
Jul 23 '05 #5
Craig Keightley wrote:
After a tweak, I now have the following array:

var cpuItem = new Array(
['Pentium 4 HT Northwood','2','N','N','10.00','p4.jpg'],
['Pentium D 820','2','Y','N','10.00','pd.jpg'],
['Pentium D 830','2','Y','N','20.00','pd.jpg'],
['Pentium D 840','2','Y','N','40.00','pd.jpg'], ... );

is searching an array possible?


Yes it is.

Loop through cpuItem, then loop through each individual array.
But what do you want to acheive? All instances of the search term?
And what if the search term is "Pentium" or "penteum"(spelling)? I would
create a separate entry for the model ("Pentium", for instance) and
model designation ("4 HT Northwood")

http://www.mickweb.com/javascript/fo...es/lookup.html

Written some time ago, today I would use a database for this type of search.
Mick


Mick

Jul 23 '05 #6
"McKirahan" <Ne**@McKirahan.com> writes:
BTW, in my code
<form action="" method="get" name="form1">
can be changed to
<form name="form1">
as the form is never submitted.


Not while remaining valid HTML. The "action" attribute is required
on form elements.

/L
--
Lasse Reichstein Nielsen - lr*@hotpop.com
DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html>
'Faith without judgement merely degrades the spirit divine.'
Jul 23 '05 #7
"Craig Keightley" <do**@spam.me> writes:
After a tweak, I now have the following array:

var cpuItem = new Array(
['Pentium 4 HT Northwood','2','N','N','10.00','p4.jpg'],
['Pentium D 820','2','Y','N','10.00','pd.jpg'],
['Pentium D 830','2','Y','N','20.00','pd.jpg'], .... ['Opteron 246','1','N','Y','45.00','opteron.jpg'],
['Opteron 252','1','Y','Y','120.00','opteron.jpg']
);

is searching an array possible?


Sure. Run through the array one element at a time.
However, it might not be the smartest way to do it. If you
always want to search for the name, i.e., the first element
of the array, you might just use that as a property of an
object instead:

var cpuItem = {
'Pentium 4 HT Northwood' : ['2','N','N','10.00','p4.jpg'],
'Pentium D 820' : ['2','Y','N','10.00','pd.jpg'],
'Pentium D 830' : ['2','Y','N','20.00','pd.jpg'],
....
'Opteron 246' : ['1','N','Y','45.00','opteron.jpg'],
'Opteron 252' : ['1','Y','Y','120.00','opteron.jpg']
}

function findCpuData(name) {
return cpuItem[name];
}

/L 'and please don't top post'
--
Lasse Reichstein Nielsen - lr*@hotpop.com
DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html>
'Faith without judgement merely degrades the spirit divine.'
Jul 23 '05 #8
Thanks for all the feedback.
I now have a new problem, getting the page to work in firefox. Here is my
page (feel free to rip it apart, i'm still new to js)

http://rackage.sitedesign.net/dedicatedservers.php
"Lasse Reichstein Nielsen" <lr*@hotpop.com> wrote in message
news:1x**********@hotpop.com...
"McKirahan" <Ne**@McKirahan.com> writes:
BTW, in my code
<form action="" method="get" name="form1">
can be changed to
<form name="form1">
as the form is never submitted.


Not while remaining valid HTML. The "action" attribute is required
on form elements.

/L
--
Lasse Reichstein Nielsen - lr*@hotpop.com
DHTML Death Colors:
<URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html>
'Faith without judgement merely degrades the spirit divine.'

Jul 23 '05 #9
"Craig Keightley" <do**@spam.me> wrote in message
news:42***********************@news-text.dial.pipex.com...
Thanks for all the feedback.
I now have a new problem, getting the page to work in firefox. Here is my
page (feel free to rip it apart, i'm still new to js)

http://rackage.sitedesign.net/dedicatedservers.php

What doesn't work in Firefox?
Jul 23 '05 #10
the cpu drop down list does not generate html

"McKirahan" <Ne**@McKirahan.com> wrote in message
news:SN********************@comcast.com...
"Craig Keightley" <do**@spam.me> wrote in message
news:42***********************@news-text.dial.pipex.com...
Thanks for all the feedback.
I now have a new problem, getting the page to work in firefox. Here is my
page (feel free to rip it apart, i'm still new to js)

http://rackage.sitedesign.net/dedicatedservers.php

What doesn't work in Firefox?

Jul 23 '05 #11

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

Similar topics

0
by: Phil Powell | last post by:
The table already has a fulltext index and from there I can use the MySQL fulltext search query to get results as well as the relevancy score. The problem I have is that MySQL has a default...
3
by: Angelos | last post by:
Hello there, I am trying to write a script that will create dynamically a menu from MySQL database. The database table is a product categories table and it has the folowing filed: category_id,...
7
by: Dave | last post by:
I have 2 tables, one with names, and another with addresses, joined by their CIVICID number (unique to the ADDRESSINFO table) in Oracle. I need to update a field in the NAMEINFO table for a...
2
by: Craig Keightley | last post by:
I have 3 drop down menus: brandID (values 1 - n) dualProcessor (Y, N) dual Core (Y,N) And the following table of values: Name Brand dualProcessor DualCore item1 1 Y...
2
by: Richard Cornford | last post by:
Anyone who has taken a look at the online FAQ today may have noticed that I have updated it. The majority of the changes are the updating of broken links and the implementation of that extensive...
1
by: dibblm | last post by:
I have a text file being created and need the values from the array that gets created to populate my text file. I am new and not very good. Kinda borrowing bits and pieces from here and there, so...
8
by: =?Utf-8?B?R3JlZyBMYXJzZW4=?= | last post by:
I'm trying to figure out how to modify a panel (panel1) from a backgroundworker thread. But can't get the panel to show the new controls added by the backgroundwork task. Here is my code. In...
5
by: Desmond Shek | last post by:
Hi, I am new to this DB caper and am really struggling. I have a form called customers with a subform called property search. The subform (a continuous form) allows users to search the table...
2
by: sirdavethebrave | last post by:
Hi guys - I have written a form, and a stored procedure to update the said form. It really is as simple as that. A user can go into the form, update some fields and hit the update button to...
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: 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
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
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
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...

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.