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

Changing Images

08122005 1505 GMT-5

Hello. I am working on a webpage for the local school (just before
school starts). Their outside hired company really screwed things up.
Im trying to get their computers up and running and gain access to
their apps for them.

There is this code that flips through images for World History class. I
have removed the code from the page but the page still does not
function.

Im so very new to JS that while I understand what Im viewing, I do not
understand why it doesnt work.

Could somebody help me on this?

Wade
<HTML>
<HEAD>
<TITLE>CountDown</TITLE>
<script language="JavaScript">
<!-- hide from other browsers

//Pictures to switch inbetween

var Rollpic1 = "1.jpg"
var Rollpic2 = "2.jpg";
var Rollpic3 = "3.jpg";
var Rollpic4 = "4.jpg";

//Start at the what pic:
var PicNumber=AD1.png;

//Number of pics:
var NumberOfPictures=4;

//Time between pics switching in secs
var HowLongBetweenPic=5;

//SwitchPic Function
function SwitchPic(counter){

if(counter < HowLongBetweenPic){

counter++;

//DEBUG in the status bar at the bottom of the screen
window.status="Switch picture at 5 : "+counter+" PicNumber:
"+PicNumber+" ";

//Display pic in what <IMG> tag roll is what I called the image
document.roll.src = eval("Rollpic" + PicNumber);

//function calls itself
CallSwitchPic=window.setTimeout("SwitchPic("+count er+")",1500);

}

else{
//if its not the last picture goto the next picture
if(PicNumber < NumberOfPictures){
PicNumber++;
SwitchPic(0);
}
//its the last picture go to the first one
else{
PicNumber=1;
SwitchPic(0);
}

}

}
// Stop hiding from old browsers -->
</script>
</HEAD>

<BODY onLoad="SwitchPic(0)">

<img src="1.jpg" border="0" name="roll">

</BODY>
</HTML>

Aug 12 '05 #1
23 2651
"Wade" <wa**@wadesmart.com> wrote in message
news:11**********************@g43g2000cwa.googlegr oups.com...
08122005 1505 GMT-5

Hello. I am working on a webpage for the local school (just before
school starts). Their outside hired company really screwed things up.
Im trying to get their computers up and running and gain access to
their apps for them.

There is this code that flips through images for World History class. I
have removed the code from the page but the page still does not
function.

Im so very new to JS that while I understand what Im viewing, I do not
understand why it doesnt work.

Could somebody help me on this?

Wade


[snip]

Let's simplify it -- a lot!

<HTML>
<HEAD>
<TITLE>CountDown</TITLE>
<script type="text/JavaScript">
var pic = [
"1.jpg",
"2.jpg",
"3.jpg"
"4.jpg"
];
var pix = 0;
var sec = 2;
function pictures() {
document.roll.src = pic[pix];
window.setTimeout("pictures()",1000*sec);
(pix < pic.length-1) ? pix++ : pix=0;
}
</script>
</HEAD>
<BODY onLoad="pictures()">
<img src="1.jpg" name="roll" border="0" alt="">
</BODY>
</HTML>
Aug 12 '05 #2
ASM
Wade wrote:
08122005 1505 GMT-5

Could somebody help me on this?


<HTML>
<HEAD>
<TITLE>CountDown</TITLE>
<script language="JavaScript" type="text/javascript">
<!-- hide from other browsers

//Pictures to switch inbetween

if(document.images) {
Rollpic1 = new Image(); Rollpic1.src = "my_folder/my_photo_1.jpg"
Rollpic2 = new Image(); Rollpic2.src = "my_folder/my_photo_2.jpg"
Rollpic3 = new Image(); Rollpic3.src = "my_folder/my_photo_3.jpg"
Rollpic4 = new Image(); Rollpic4.src = "my_folder/my_photo_4.jpg"
}

//Number of pics:
var NumberOfPictures = 4;

// Counter of displayed Pictures
// starts at :
var Pictures = 1;

// Time between pics switching in secs : HowLongBetweenPics
// is given in argument of SwichPic function

// ------ SwitchPic Function -------

function SwitchPic(HowLongBetweenPics){
if(Pictures < NumberOfPictures){
//if it's not the last picture goto the next picture
Pictures++;
}
else{
// if it was the last picture goto the 1st picture
Pictures = 1;
}
//DEBUG in the status bar at the bottom of the screen
window.status="Switch picture at "+HowLongBetweenPics+
" : Rollpic"+Pictures+".src PicNumber : "+Pictures;
//Display pic in what <IMG> tag named 'roll'
document.images['roll'].src = eval("Rollpic"+Pictures+'.src');
//function calls itself
CallSwitchPic=setTimeout("SwitchPic()",HowLongBetw eenPics*1000);
}
// Stop hiding from old browsers -->
</script>
</HEAD>

<BODY onLoad="SwitchPic(5)">

<img src="my_folder/my_photo_1.jpg" border="0" name="roll">

</BODY>
</HTML>
--
Stephane Moriaux et son [moins] vieux Mac
Aug 12 '05 #3
ASM
McKirahan wrote:
"Wade" <wa**@wadesmart.com> wrote in message
news:11**********************@g43g2000cwa.googlegr oups.com...
08122005 1505 GMT-5

Hello. I am working on a webpage for the local school (just before
school starts). Their outside hired company really screwed things up.
Im trying to get their computers up and running and gain access to
their apps for them.

There is this code that flips through images for World History class. I
have removed the code from the page but the page still does not
function.

Im so very new to JS that while I understand what Im viewing, I do not
understand why it doesnt work.

Could somebody help me on this?

Wade

[snip]

Let's simplify it -- a lot!

<HTML>
<HEAD>
<TITLE>CountDown</TITLE>
<script type="text/JavaScript">
var pic = [
"1.jpg",
"2.jpg",
"3.jpg"
"4.jpg"
];
var pix = 0;
var sec = 2;
function pictures() {
document.roll.src = pic[pix];


that will only work with IE
window.setTimeout("pictures()",1000*sec);
(pix < pic.length-1) ? pix++ : pix=0;
}
</script>
</HEAD>
<BODY onLoad="pictures()">
<img src="1.jpg" name="roll" border="0" alt="">
</BODY>
</HTML>

--
Stephane Moriaux et son [moins] vieux Mac
Aug 12 '05 #4
"ASM" <st*********************@wanadoo.fr.invalid> wrote in message
news:42**********************@news.wanadoo.fr...

[snip]
document.roll.src = pic[pix];
that will only work with IE


[snip]
--
Stephane Moriaux et son [moins] vieux Mac

And Firefox but not Netscape.

Is there a solution?

I tried the following without success:

document.getElementById("roll").src = pic[pix];

<img src="1.gif" name="roll" id="roll" border="0" alt="">

Aug 12 '05 #5
08122005 1749 gmt-5

Ok. Tried that. Doesnt work on my pc.

Now, Im on linux using Firefox and Opera and there is no change on the
page.
I see that Stephane said that it works only with IE. The school is
moving to linux so firefox will be their browser as well.

Suggestion?

Wade

Aug 12 '05 #6
ASM
McKirahan wrote:
"ASM" <st*********************@wanadoo.fr.invalid> wrote in message
news:42**********************@news.wanadoo.fr...
document.roll.src = pic[pix];
that will only work with IE


And Firefox


FF plays to be IE ?
not an help to correct code ... :-(
but not Netscape.

Is there a solution?

I tried the following without success:

document.getElementById("roll").src = pic[pix];
try :
document.images['roll'].src = pic[pix];

<img src="1.gif" name="roll" id="roll" border="0" alt="">


--
Stephane Moriaux et son [moins] vieux Mac
Aug 12 '05 #7
08122005 1803 GMT-5

Hey Stephane, this actually worked. Well, it works one time. It runs
the first and second pic but then stops.

Wade

Aug 12 '05 #8
ASM
Wade wrote:
08122005 1749 gmt-5

Ok. Tried that. Doesnt work on my pc.

Now, Im on linux using Firefox and Opera and there is no change on the
page.
I see that Stephane said that it works only with IE. The school is
moving to linux so firefox will be their browser as well.

Suggestion?


use what I did give on : 12/08/05 23:50
or
McKirahan's code modified as following :

<HTML>
<HEAD>
<TITLE>CountDown</TITLE>
<script type="text/JavaScript">
var pic = new Array(
"1.jpg",
"2.jpg",
"3.jpg",
"4.jpg");
var pix = 0;
var sec = 5;
function pictures() {
pix = (pix < pic.length-1) ? pix+1 : 0;
document.images['roll'].src = pic[pix];
departure = setTimeout("pictures()",1000*sec);
}
</script>
</HEAD>
<BODY onLoad="pictures()">
<img src="1.jpg" name="roll" border="0" alt="">
<p><a href="javascript:clearTimeout(departure);">[STOP]</a>
<a href="javascript:pictures();">[START]</a>
</BODY>
</HTML>

demo here :
http://perso.wanadoo.fr/stephane.mor...t_pictures.htm
works with my IE and FF

--
Stephane Moriaux et son [moins] vieux Mac
Aug 12 '05 #9
ASM
Wade wrote:
08122005 1803 GMT-5
hey man, try to put some words of precedent post you answer

I'm lost ...
Hey Stephane, this actually worked. Well, it works one time. It runs
the first and second pic but then stops.


sea my last message on : 1:17

--
Stephane Moriaux et son [moins] vieux Mac
Aug 12 '05 #10
08122005 1836 GMT-5

This code worked! Great. Thanks.

Wade

Aug 12 '05 #11
08122005 1840 GMT-5

One last thing. If you want this to run automatically when the page
opens up instead of hitting a button, how is that done?

Wade

Aug 12 '05 #12
McKirahan said the following on 8/12/2005 6:38 PM:
"ASM" <st*********************@wanadoo.fr.invalid> wrote in message
news:42**********************@news.wanadoo.fr...

[snip]

document.roll.src = pic[pix];


that will only work with IE

[snip]

--
Stephane Moriaux et son [moins] vieux Mac


And Firefox but not Netscape.

Is there a solution?

I tried the following without success:

document.getElementById("roll").src = pic[pix];

<img src="1.gif" name="roll" id="roll" border="0" alt="">


If you want to manipulate images, use the images collection:

document.images['imageNAMEnotID'].src= pic[pix];

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Answer:It destroys the order of the conversation
Question: Why?
Answer: Top-Posting.
Question: Whats the most annoying thing on Usenet?
Aug 13 '05 #13
ASM said the following on 8/12/2005 7:17 PM:
Wade wrote:
08122005 1749 gmt-5

Ok. Tried that. Doesnt work on my pc.

Now, Im on linux using Firefox and Opera and there is no change on the
page.
I see that Stephane said that it works only with IE. The school is
moving to linux so firefox will be their browser as well.

Suggestion?

use what I did give on : 12/08/05 23:50
or
McKirahan's code modified as following :

<HTML>
<HEAD>
<TITLE>CountDown</TITLE>
<script type="text/JavaScript">
var pic = new Array(
"1.jpg",
"2.jpg",
"3.jpg",
"4.jpg");
var pix = 0;
var sec = 5;
function pictures() {
pix = (pix < pic.length-1) ? pix+1 : 0;
document.images['roll'].src = pic[pix];
departure = setTimeout("pictures()",1000*sec);
}
</script>
</HEAD>
<BODY onLoad="pictures()">
<img src="1.jpg" name="roll" border="0" alt="">
<p><a href="javascript:clearTimeout(departure);">[STOP]</a>
<a href="javascript:pictures();">[START]</a>


That is worse than what McK posted. Read the Group FAQ with regards to
javascript: pseudo-protocols.

<a href="whyMyPageDoesntWorkWithoutJS.html"
onclick="clearTimeout(....);return false">[STOP]</a>

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Answer:It destroys the order of the conversation
Question: Why?
Answer: Top-Posting.
Question: Whats the most annoying thing on Usenet?
Aug 13 '05 #14
ASM
Wade wrote:
08122005 1840 GMT-5

One last thing. If you want this to run automatically when the page
opens up instead of hitting a button, how is that done?


That's run automatically

As it's a demo I added 2 link-buttons :
- 1 to stop
- 1 to re-start
(the 2nd is only to use after having stopped,
if not, you get a new loop on each new press on [start] )
--
Stephane Moriaux et son [moins] vieux Mac
Aug 13 '05 #15
ASM
Randy Webb wrote:
ASM said the following on 8/12/2005 7:17 PM:
<p><a href="javascript:clearTimeout(departure);">[STOP]</a>
<a href="javascript:pictures();">[START]</a>
That is worse than what McK posted. Read the Group FAQ with regards to
javascript: pseudo-protocols.


Please follow threads before going in accessibility crusade.
<a href="whyMyPageDoesntWorkWithoutJS.html"
onclick="clearTimeout(....);return false">[STOP]</a>


Thanks to try to considere it's a simple "demo" ABOUT
a function in JAVASCRIPT that absolutly needs ENABLED JS
and not *The Holy Bible of JavaScripted Html in Strict* ... :-)

The two added simili buttons are only to manipulate
the loop without having to refresh the page to re-start

--
Stephane Moriaux et son [moins] vieux Mac
Aug 13 '05 #16
ASM said the following on 8/13/2005 6:14 AM:
Randy Webb wrote:
ASM said the following on 8/12/2005 7:17 PM:
<p><a href="javascript:clearTimeout(departure);">[STOP]</a>
<a href="javascript:pictures();">[START]</a>

That is worse than what McK posted. Read the Group FAQ with regards to
javascript: pseudo-protocols.

Please follow threads before going in accessibility crusade.


It had not a thing to do with accessibility crusades. Add an animated
gif to your test page, click your test link, then come talk to me about
the javascript: pseudo-protocol. It had to do with a crappy way of
invoking a script.
<a href="whyMyPageDoesntWorkWithoutJS.html"
onclick="clearTimeout(....);return false">[STOP]</a>

Thanks to try to considere it's a simple "demo" ABOUT
a function in JAVASCRIPT that absolutly needs ENABLED JS
and not *The Holy Bible of JavaScripted Html in Strict* ... :-)


At least learn the fallacies of your demo's before you talk about the
Holy Bible. Again, learn good habits, post good habits, and you never
post bad habits, even in Demos.
The two added simili buttons are only to manipulate
the loop without having to refresh the page to re-start


I know that, and understand that, but the way you went about invoking
the script is an idiotic, bad habit way of doing it (and you obviously
do not understand that). Had you bothered to read the FAQ I referred you
to, you would know that. Practice the way you play and you will always
practice the right way and it becomes habit.

On a sidenote:

Had it been an accessibility crusade, the "proper" way to do that is to
use a button and have JS dynamically create it, either through
document.write or createElement.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Aug 13 '05 #17
ASM
Randy Webb wrote:
the way you went about invoking
the script is an idiotic, bad habit way of doing it (and you obviously
do not understand that).
I understand your meaning, and ordinary I agree with it.
But, here, I did on shorter
(without creating a special page for non-JS as if no JS -> no demo)
Had you bothered to read the FAQ I referred you
I do not need to read a faq to know how to build a javascripted link :-/
However,
I did go there : http://jibbering.com/faq
and asked to my browser to search : pseudo-protocols
-> no result :-(
Would you have a direct link to this subject ?
(for I can see what you exactly talk)
to, you would know that. Practice the way you play and you will always
practice the right way and it becomes habit.
Yes I'am all right.
On a sidenote:

Had it been an accessibility crusade, the "proper" way to do that is to
use a button and have JS dynamically create it, either through
document.write or createElement.


We did discuss on that and ... also I do agree
(it was not really the propose of this demo)
(did it be absolutly necessary to confuse nb with a lot of added code
without relation with the main subject - images dislplayed in loop - ?)

Didn't think a little *javascript* demo to display fiew images in loop
would result in a so much write on something only added for fiew conveniance
--
Stephane Moriaux et son [moins] vieux Mac
Aug 13 '05 #18
JRS: In article <iu********************@comcast.com>, dated Fri, 12 Aug
2005 15:42:17, seen in news:comp.lang.javascript, McKirahan
<Ne**@McKirahan.com> posted :

(pix < pic.length-1) ? pix++ : pix=0;


or
pix++ ; pix %= pic.length
or
pix = ++pix % pic.length

--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 IE 4 ©
<URL:http://www.jibbering.com/faq/> JL/RC: FAQ of news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htm> jscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/> TP/BP/Delphi/jscr/&c, FAQ items, links.
Aug 13 '05 #19
ASM said the following on 8/13/2005 1:06 PM:
Randy Webb wrote:
the way you went about invoking the script is an idiotic, bad habit
way of doing it (and you obviously do not understand that).

I understand your meaning, and ordinary I agree with it.
But, here, I did on shorter
(without creating a special page for non-JS as if no JS -> no demo)


I understand that totally, but using the javascript: as an href is bad
practice, even in demo pages.
Had you bothered to read the FAQ I referred you

I do not need to read a faq to know how to build a javascripted link :-/


No, but you need to read it to understand, and deal with, the inherent
problems with building them a certain way.
However,
I did go there : http://jibbering.com/faq
and asked to my browser to search : pseudo-protocols
-> no result :-(
Would you have a direct link to this subject ?
(for I can see what you exactly talk)


http://jibbering.com/faq/#FAQ4_24

It doesn't cover it explicitly in the FAQ, but it is a known side effect
of href="javascript: in some browsers to stop animated gifs from being
animated after it is clicked on.
to, you would know that. Practice the way you play and you will always
practice the right way and it becomes habit.

Yes I'am all right.
On a sidenote:

Had it been an accessibility crusade, the "proper" way to do that is
to use a button and have JS dynamically create it, either through
document.write or createElement.

We did discuss on that and ... also I do agree
(it was not really the propose of this demo)
(did it be absolutly necessary to confuse nb with a lot of added code
without relation with the main subject - images dislplayed in loop - ?)

Didn't think a little *javascript* demo to display fiew images in loop
would result in a so much write on something only added for fiew
conveniance


My problem is not with your Demo per se, its the improper use of
href="javascript: and the possible implications of people (new people
perhaps among others) that may read it and think "Oh, he did it so it's
ok" and then they end up here with problems with it.

I guess it's more about posterity and research problems/potential than
the demo itself.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Aug 13 '05 #20
ASM
Randy Webb wrote:
but using the javascript: as an href is bad
practice, even in demo pages.
OK, OK and OK.

Am I authorised to use :
<a href="#" onclick="alert('hello');return false;">hello</a>
or
<a id="here"></a><a href="#here" onclick="alert('hello');">hello</a>
?
the inherent
problems with building them a certain way.
http://jibbering.com/faq/#FAQ4_24
got it.
It doesn't cover it explicitly in the FAQ, but it is a known side effect
of href="javascript: in some browsers to stop animated gifs from being
animated after it is clicked on.
Oh! poor browser ! anyway : animated gifs ... :-(
(i.e. IE isn't it ?
with version 7 and NGN, will no more trouble nor bugs ;-) )
I guess it's more about posterity and research problems/potential than
the demo itself.


saw
--
Stephane Moriaux et son [moins] vieux Mac
Aug 13 '05 #21
ASM said the following on 8/13/2005 7:15 PM:
Randy Webb wrote:
but using the javascript: as an href is bad practice, even in demo pages.

OK, OK and OK.

Am I authorised to use :
<a href="#" onclick="alert('hello');return false;">hello</a>
or
<a id="here"></a><a href="#here" onclick="alert('hello');">hello</a>
?


<shrug> Of the two, I would probably use the first one, or, return false
on the second one just to keep from changing the URL of the page. Push
comes to shove, with everything else involved in an Internet Site, I
would dynamically generate a button and use it's onclick so that I added
something like this:

<button onclick="something()">[+]</button>

Either document.write or createElement to create it. Then, if JS isn't
present, the user never sees it. Just don't fall into the NOSCRIPT trap.
the inherent problems with building them a certain way.
http://jibbering.com/faq/#FAQ4_24

got it.
It doesn't cover it explicitly in the FAQ, but it is a known side
effect of href="javascript: in some browsers to stop animated gifs
from being animated after it is clicked on.

Oh! poor browser ! anyway : animated gifs ... :-(
(i.e. IE isn't it ?


Yeah, good ole IE.
with version 7 and NGN, will no more trouble nor bugs ;-) )


ummm, IE without bugs? Yeah, right :)
--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Aug 14 '05 #22
I like that - might have to try that on my page - I am new also and always
looking for cool stuff!!!
Thanks
"ASM" <st*********************@wanadoo.fr.invalid> wrote in message
news:42*********************@news.wanadoo.fr...
Wade wrote:
08122005 1749 gmt-5

Ok. Tried that. Doesnt work on my pc.

Now, Im on linux using Firefox and Opera and there is no change on the
page.
I see that Stephane said that it works only with IE. The school is
moving to linux so firefox will be their browser as well.

Suggestion?


use what I did give on : 12/08/05 23:50
or
McKirahan's code modified as following :

<HTML>
<HEAD>
<TITLE>CountDown</TITLE>
<script type="text/JavaScript">
var pic = new Array(
"1.jpg",
"2.jpg",
"3.jpg",
"4.jpg");
var pix = 0;
var sec = 5;
function pictures() {
pix = (pix < pic.length-1) ? pix+1 : 0;
document.images['roll'].src = pic[pix];
departure = setTimeout("pictures()",1000*sec);
}
</script>
</HEAD>
<BODY onLoad="pictures()">
<img src="1.jpg" name="roll" border="0" alt="">
<p><a href="javascript:clearTimeout(departure);">[STOP]</a>
<a href="javascript:pictures();">[START]</a>
</BODY>
</HTML>

demo here :
http://perso.wanadoo.fr/stephane.mor...t_pictures.htm
works with my IE and FF

--
Stephane Moriaux et son [moins] vieux Mac

Aug 22 '05 #23
ASM
Prophet wrote:
I like that - might have to try that on my page - I am new also and always
looking for cool stuff!!!
Thanks


Take care this example is not really a good stuff
because if images are heavy, I'm not sure next new image to display
is realy loaded when it is called.

Have a look on thread "loading images one by one"
and, particulary, example given by Lee on : 21/08/05 2:26
that works fine on DOM browsers (that's to say : not with NC4.5)

[snip]
demo here :
http://perso.wanadoo.fr/stephane.mor...t_pictures.htm
works with my IE and FF


--
Stephane Moriaux et son [moins] vieux Mac
Aug 22 '05 #24

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

Similar topics

2
by: Marcus | last post by:
I am after what is probably very basic help. Below is the HTML including the bit of Java I am trying to understand why its not working. The idea is as the mouse moves over and off the "button"...
3
by: Wade | last post by:
08242005 1416 GMT-5 Recently some of you helped me with a script to change images. Well I was asked to make a change to the script and not knowing if what the school system is even possible, Ill...
1
by: magix | last post by:
Hi, Do you have any javascript available for changing images according to time ? let say Morning (7am-12pm), using images 1 (e.g morning.jpg) Afternoon (12 - 6pm), using images 2 (e.g...
2
by: Vishal N | last post by:
Hi, I'm new to PHP...hence, please bear with me. I want to display a picture for 'x' seconds and then replace it with a different picture. Further, the user must not have access to the previous...
0
by: =?Utf-8?B?SlA=?= | last post by:
I’m working on a C# ASP application in which they want to give the users the ability to pic their color themes. Each theme has its own folder and the images for each theme are named the same So...
1
by: DaveRook | last post by:
Hi I want an image to be displayed when a button is clicked. I'm guessing there are 2 ways. 1, have all the images there in place and use the visible.true and visible.false attributes 2,...
14
by: windandwaves | last post by:
Hi Folk and Gurus This may help some of you (though probably not the gurus), in changing images: http://www.sunnysideup.co.nz/j/imageChange/ Any feedback appreciated. Cheers
1
by: silpa | last post by:
Hi, I have a gridview. It has two columns.first column contains a thread. Second column contains an image which is of type buttonfield to close this thread which is shown below. The image is a...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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
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...

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.