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

events and image


Hi group,

Long story short, I'm new to JavaScript and have started it less than 3
weeks. My question is

1) how can I create a situation that when user clicks on gif or ...
image file an event get triggered?

what I have done is:

Testing image:
<a href="" name="linkImg1"
onclick="javascript:my_trker('http://www.mywebsite.com/akohan');" >
<img name=img1 src="flower.gif" border=0 >
</a>

the problem is that when I click on this image it goes thru the
function but then the page changes to the path:
http://www.mywebsite.com/akohan and shows a list or directory of the
files I have there!
2) Is it possible to create new events in Javascript? lf so, how can I
monitor an event when user does a right-click on a link or image?

Your help will be appreicated.

amit.

Jun 29 '06 #1
19 1483
amit wrote:
Hi group,

Long story short, I'm new to JavaScript and have started it less than 3
weeks. My question is

1) how can I create a situation that when user clicks on gif or ...
image file an event get triggered?

what I have done is:

Testing image:
<a href="" name="linkImg1"
onclick="javascript:my_trker('http://www.mywebsite.com/akohan');" >
<img name=img1 src="flower.gif" border=0 >
</a>

the problem is that when I click on this image it goes thru the
function but then the page changes to the path:
http://www.mywebsite.com/akohan and shows a list or directory of the
files I have there!


The reason for that is: href="". If you want to STOP the click from
going through, you need to add return false to your onclick:
onclick = "doSomething(); return false"

BTW, 'javascript:' is not needed for onclick

--
"The most convoluted explanation that fits all of the made-up facts is
the most likely to be believed by conspiracy theorists. Fitting the
actual facts is optional."
Jun 29 '06 #2
amit said the following on 6/29/2006 4:36 PM:
Hi group,

Long story short, I'm new to JavaScript and have started it less than 3
weeks. My question is

1) how can I create a situation that when user clicks on gif or ...
image file an event get triggered?
<img onclick="my_trker('')".....>
what I have done is:

Testing image:
<a href="" name="linkImg1"
onclick="javascript:my_trker('http://www.mywebsite.com/akohan');" >
<img name=img1 src="flower.gif" border=0 >
</a>

the problem is that when I click on this image it goes thru the
function but then the page changes to the path:
http://www.mywebsite.com/akohan and shows a list or directory of the
files I have there!
Because you navigated there with the link.
2) Is it possible to create new events in Javascript? lf so, how can I
monitor an event when user does a right-click on a link or image?


onmousedown, onmouseup, and onclick

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Temporarily at: http://members.aol.com/_ht_a/hikksnotathome/cljfaq/
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Jun 29 '06 #3

Thanks Tony,

I appreciate your help. can you tell me what is the format for a image
tag which is clickable?

The following tag is clickable but it doesn't pass the name and path of
the file!

Testing image:
<a href="" name="linkImg1"
onclick="javascript:my_trker('http://www.mywebsite.com/akohan');" >
<img name=img1 src="flower.gif" border=0 >
</a>

I need to pass some information i.e path, filename to a function.
Any clue?

Thanks,
amit


Tony wrote:
amit wrote:
Hi group,

Long story short, I'm new to JavaScript and have started it less than 3
weeks. My question is

1) how can I create a situation that when user clicks on gif or ...
image file an event get triggered?

what I have done is:

Testing image:
<a href="" name="linkImg1"
onclick="javascript:my_trker('http://www.mywebsite.com/akohan');" >
<img name=img1 src="flower.gif" border=0 >
</a>

the problem is that when I click on this image it goes thru the
function but then the page changes to the path:
http://www.mywebsite.com/akohan and shows a list or directory of the
files I have there!


The reason for that is: href="". If you want to STOP the click from
going through, you need to add return false to your onclick:
onclick = "doSomething(); return false"

BTW, 'javascript:' is not needed for onclick

--
"The most convoluted explanation that fits all of the made-up facts is
the most likely to be believed by conspiracy theorists. Fitting the
actual facts is optional."


Jun 29 '06 #4
amit said the following on 6/29/2006 5:49 PM:
Thanks Tony,

I appreciate your help. can you tell me what is the format for a image
tag which is clickable?

The following tag is clickable but it doesn't pass the name and path of
the file!

Testing image:
<a href="" name="linkImg1"
onclick="javascript:my_trker('http://www.mywebsite.com/akohan');" >
<img name=img1 src="flower.gif" border=0 >
</a>

I need to pass some information i.e path, filename to a function.
Any clue?


<img onclick="someFunction(this)" src="..">

function someFunction(imgObject){
alert(imgObject.src)
}

You pass it by reference.

Answer:It destroys the order of the conversation
Question: Why?
Answer: Top-Posting.
Question: Whats the most annoying thing on Usenet?

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Temporarily at: http://members.aol.com/_ht_a/hikksnotathome/cljfaq/
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Jun 29 '06 #5

Randy Webb wrote:
amit said the following on 6/29/2006 5:49 PM:
Thanks Tony,

I appreciate your help. can you tell me what is the format for a image
tag which is clickable?

The following tag is clickable but it doesn't pass the name and path of
the file!

Testing image:
<a href="" name="linkImg1"
onclick="javascript:my_trker('http://www.mywebsite.com/akohan');" >
<img name=img1 src="flower.gif" border=0 >
</a>

I need to pass some information i.e path, filename to a function.
Any clue?


<img onclick="someFunction(this)" src="..">

function someFunction(imgObject){
alert(imgObject.src)
}

You pass it by reference.

Answer:It destroys the order of the conversation
Question: Why?
Answer: Top-Posting.
Question: Whats the most annoying thing on Usenet?

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Temporarily at: http://members.aol.com/_ht_a/hikksnotathome/cljfaq/
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/



Hello Randy,

Thanks a lot! it was a big help but it like anyother answer takes me to
new things which I need to learn. First, I hope I'm putting this text
in a proper sequence if not let me know then.

What I asked and you mentioned works for single click but a proper of
doing this is to capture mousedown and mouseup events. To make sure
user has clicked (both down and up ) on a link or a image or etc.

How can I simulate that? is it to code like:

<img onmousedown="someFunction(this)" onmouseup="someFunction(this)"
src="..">
Please let me know this as well.

Also, what Javascript book do you suggest?

Thank again
Amit

Jun 30 '06 #6
amit said the following on 6/30/2006 7:13 PM:

<snip>
Hello Randy,

Thanks a lot! it was a big help but it like anyother answer takes me to
new things which I need to learn. First, I hope I'm putting this text
in a proper sequence if not let me know then.
It is fine.
What I asked and you mentioned works for single click but a proper of
doing this is to capture mousedown and mouseup events.
Why?
To make sure user has clicked (both down and up ) on a link or a image or etc.

How can they click up without first clicking down?
How can I simulate that? is it to code like:

<img onmousedown="someFunction(this)" onmouseup="someFunction(this)"
src="..">

Precisely.
Please let me know this as well.

Also, what Javascript book do you suggest?


None. They all suck that I have seen to date. Most are outdated and over
priced. For learning, use the archives of this group and you won't ever
go wrong.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Temporarily at: http://members.aol.com/_ht_a/hikksnotathome/cljfaq/
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Jun 30 '06 #7

Hi Randy,

Thanks for your true response. I have looked at most of them and they
are kinda same thing! except some brief topics.

Ok, I want to ask you anothe question! as you have seen I have been
doing capturing information about a user in terms of what he/she has
been doing like right click or simple click on different components on
a page such as links, image and .... then need to send it to a web
serivec or application (server side) to store all user's activity into
a database.

Currently what I'm doing is storing some information i.e. protocol,
hostname, referrer and also the path of the current page and what
element is clicked/right clicked on into an object such as image!!!!
I'm having a feeling that this is odd and there must be a better way to
store it and send it to the server instead of using image object.

My code is like:

var myvar = new Image(1,1);

/*
capture some info
*/
myimg.src = base "?protocol=" + items.get("protocol") +
"&host=" +
items.get("host") +
"&path=" +
items.get("pagepath") +

after assignment then I have :

myimg.onload = function()
{
return;
}
of course, it is working since the web service captuers it but I need
to know if there is a better way to send these information to the
sever.

Thank again Randy and I wish you wonderful 4th of July.

Randy Webb wrote:
amit said the following on 6/30/2006 7:13 PM:

<snip>
Hello Randy,

Thanks a lot! it was a big help but it like anyother answer takes me to
new things which I need to learn. First, I hope I'm putting this text
in a proper sequence if not let me know then.

It is fine.
What I asked and you mentioned works for single click but a proper of
doing this is to capture mousedown and mouseup events.

Why?
To make sure user has clicked (both down and up ) on a link or a image or etc.


How can they click up without first clicking down?
How can I simulate that? is it to code like:

<img onmousedown="someFunction(this)" onmouseup="someFunction(this)"
src="..">

Precisely.
Please let me know this as well.

Also, what Javascript book do you suggest?

None. They all suck that I have seen to date. Most are outdated and over
priced. For learning, use the archives of this group and you won't ever
go wrong.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Temporarily at: http://members.aol.com/_ht_a/hikksnotathome/cljfaq/
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Jul 3 '06 #8
amit said the following on 7/3/2006 2:01 PM:
Hi Randy,

Thanks for your true response. I have looked at most of them and they
are kinda same thing! except some brief topics.
Even the ones about not top-posting? <g>
Ok, I want to ask you anothe question! as you have seen I have been
doing capturing information about a user in terms of what he/she has
been doing like right click or simple click on different components on
a page such as links, image and .... then need to send it to a web
serivec or application (server side) to store all user's activity into
a database.
That sounds suspiciously like snooping but ok.
Currently what I'm doing is storing some information i.e. protocol,
hostname, referrer and also the path of the current page and what
element is clicked/right clicked on into an object such as image!!!!
Ummm, ok, if you say so. hostname isn't that critical unless you have a
server that will server up the same document from different domains.
I'm having a feeling that this is odd and there must be a better way to
store it and send it to the server instead of using image object.
It is very odd indeed.
My code is like:

var myvar = new Image(1,1);
/*
capture some info
*/
myimg.src = base "?protocol=" + items.get("protocol") +
You are missing a + between base and "?
"&host=" +
items.get("host") +
"&path=" +
items.get("pagepath") +

after assignment then I have :
So far so good.
myimg.onload = function()
{
return;
}
That code is un-needed as it doesn't do anything.

of course, it is working since the web service captuers it but I need
to know if there is a better way to send these information to the
sever.
Don't fix what isn't broken. And you have about the most reliable way to
do what you are doing.
Thank again Randy and I wish you wonderful 4th of July.
Good thing I am American.... Don't tell Jews to have a Merry Christmas :)
--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Temporarily at: http://members.aol.com/_ht_a/hikksnotathome/cljfaq/
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Jul 4 '06 #9

Hi Randy,

I appreciate your patience and reading all my statements one by one and
answering them!

1) As you saw, I was using an image object to send those tokens or
information! Is there any better way (something that makes sense) ?
2) I'm coming from C/C++ programming background and I think there
should be ways to do javascript programming base on OO techniques.
Right?
if so, do you know any link?
3) I'm sure you have heard of AJAX. Do you recommend it to learn?
Thanks again,
Amit

:)



Randy Webb wrote:
amit said the following on 7/3/2006 2:01 PM:
Hi Randy,

Thanks for your true response. I have looked at most of them and they
are kinda same thing! except some brief topics.

Even the ones about not top-posting? <g>
Ok, I want to ask you anothe question! as you have seen I have been
doing capturing information about a user in terms of what he/she has
been doing like right click or simple click on different components on
a page such as links, image and .... then need to send it to a web
serivec or application (server side) to store all user's activity into
a database.

That sounds suspiciously like snooping but ok.
Currently what I'm doing is storing some information i.e. protocol,
hostname, referrer and also the path of the current page and what
element is clicked/right clicked on into an object such as image!!!!

Ummm, ok, if you say so. hostname isn't that critical unless you have a
server that will server up the same document from different domains.
I'm having a feeling that this is odd and there must be a better way to
store it and send it to the server instead of using image object.

It is very odd indeed.
My code is like:

var myvar = new Image(1,1);
/*
capture some info
*/
myimg.src = base "?protocol=" + items.get("protocol") +

You are missing a + between base and "?
"&host=" +
items.get("host") +
"&path=" +
items.get("pagepath") +

after assignment then I have :

So far so good.
myimg.onload = function()
{
return;
}

That code is un-needed as it doesn't do anything.

of course, it is working since the web service captuers it but I need
to know if there is a better way to send these information to the
sever.

Don't fix what isn't broken. And you have about the most reliable way to
do what you are doing.
Thank again Randy and I wish you wonderful 4th of July.

Good thing I am American.... Don't tell Jews to have a Merry Christmas :)
--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Temporarily at: http://members.aol.com/_ht_a/hikksnotathome/cljfaq/
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Jul 5 '06 #10
amit said the following on 7/5/2006 12:53 PM:
Hi Randy,

I appreciate your patience and reading all my statements one by one and
answering them!
Then I would appreciate you reading mine :)

Answer:It destroys the order of the conversation
Question: Why?
Answer: Top-Posting.
Question: Whats the most annoying thing on Usenet?
1) As you saw, I was using an image object to send those tokens or
information! Is there any better way (something that makes sense) ?
Makes sense, and no, there is not a "better" way as the way you are
using is the most widely supported way to do it.
2) I'm coming from C/C++ programming background and I think there
should be ways to do javascript programming base on OO techniques.
Right?
If you are doing OO programming, then yes.
if so, do you know any link?
3) I'm sure you have heard of AJAX. Do you recommend it to learn?
For the future, yes. It is the basis for what is being called "Web 2.0"

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Temporarily at: http://members.aol.com/_ht_a/hikksnotathome/cljfaq/
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Jul 6 '06 #11

Randy Webb wrote:
amit said the following on 7/5/2006 12:53 PM:
Hi Randy,

I appreciate your patience and reading all my statements one by one and
answering them!

Then I would appreciate you reading mine :)

Answer:It destroys the order of the conversation
Question: Why?
Answer: Top-Posting.
Question: Whats the most annoying thing on Usenet?
1) As you saw, I was using an image object to send those tokens or
information! Is there any better way (something that makes sense) ?

Makes sense, and no, there is not a "better" way as the way you are
using is the most widely supported way to do it.
2) I'm coming from C/C++ programming background and I think there
should be ways to do javascript programming base on OO techniques.
Right?

If you are doing OO programming, then yes.
if so, do you know any link?
3) I'm sure you have heard of AJAX. Do you recommend it to learn?

For the future, yes. It is the basis for what is being called "Web 2.0"

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Temporarily at: http://members.aol.com/_ht_a/hikksnotathome/cljfaq/
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/


Hello Randy,

Thank you now I feel better about the image object! I believe I've
been so lucky to have ask for your advice here.

My next step is to track information on FLASH elements on a page. Do
you have any experience on this as well?

Your help is appreciated.

Thanks,
Amit

Jul 6 '06 #12
amit said the following on 7/6/2006 12:48 PM:
Hello Randy,

Thank you now I feel better about the image object! I believe I've
been so lucky to have ask for your advice here.

My next step is to track information on FLASH elements on a page. Do
you have any experience on this as well?
What do you mean by "track information on FLASH elements"?

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Temporarily at: http://members.aol.com/_ht_a/hikksnotathome/cljfaq/
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Jul 6 '06 #13

Randy Webb wrote:
amit said the following on 7/6/2006 12:48 PM:
Hello Randy,

Thank you now I feel better about the image object! I believe I've
been so lucky to have ask for your advice here.

My next step is to track information on FLASH elements on a page. Do
you have any experience on this as well?

What do you mean by "track information on FLASH elements"?

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Temporarily at: http://members.aol.com/_ht_a/hikksnotathome/cljfaq/
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/

Hi again,

What I meant is tracking anytype of events on assets related to Flash.
I think if you look at
http://www.google.com/support/analyt...243&topic=7292
will give a better view.

Thanks in advance.
Amit

Jul 10 '06 #14
amit said the following on 7/10/2006 12:44 PM:
Randy Webb wrote:
>amit said the following on 7/6/2006 12:48 PM:
>>Hello Randy,

Thank you now I feel better about the image object! I believe I've
been so lucky to have ask for your advice here.

My next step is to track information on FLASH elements on a page. Do
you have any experience on this as well?
What do you mean by "track information on FLASH elements"?
Please don't quote signatures.
Hi again,

What I meant is tracking anytype of events on assets related to Flash.
Flash has to do that.
I think if you look at
http://www.google.com/support/analyt...243&topic=7292
will give a better view.
The Flash app has to make the call to the JS script that will then
"track" the Flash app. Trying to do it in JS alone won't work.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Temporarily at: http://members.aol.com/_ht_a/hikksnotathome/cljfaq/
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Jul 10 '06 #15

Randy Webb wrote:
amit said the following on 7/10/2006 12:44 PM:
Randy Webb wrote:
amit said the following on 7/6/2006 12:48 PM:

Hello Randy,

Thank you now I feel better about the image object! I believe I've
been so lucky to have ask for your advice here.

My next step is to track information on FLASH elements on a page. Do
you have any experience on this as well?
What do you mean by "track information on FLASH elements"?

Please don't quote signatures.
Hi again,

What I meant is tracking anytype of events on assets related to Flash.

Flash has to do that.
I think if you look at
http://www.google.com/support/analyt...243&topic=7292
will give a better view.

The Flash app has to make the call to the JS script that will then
"track" the Flash app. Trying to do it in JS alone won't work.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Temporarily at: http://members.aol.com/_ht_a/hikksnotathome/cljfaq/
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/


Do you mean this is possible only if a Flash designer call my function
in his Flash code when he creates them?

Jul 10 '06 #16
amit said the following on 7/10/2006 2:09 PM:
Randy Webb wrote:
>amit said the following on 7/10/2006 12:44 PM:
>>Randy Webb wrote:
amit said the following on 7/6/2006 12:48 PM:

Hello Randy,
>
Thank you now I feel better about the image object! I believe I've
been so lucky to have ask for your advice here.
>
My next step is to track information on FLASH elements on a page. Do
you have any experience on this as well?
What do you mean by "track information on FLASH elements"?
Please don't quote signatures.
>>Hi again,

What I meant is tracking anytype of events on assets related to Flash.
Flash has to do that.
>>I think if you look at
http://www.google.com/support/analyt...243&topic=7292
will give a better view.
The Flash app has to make the call to the JS script that will then
"track" the Flash app. Trying to do it in JS alone won't work.

Do you mean this is possible only if a Flash designer call my function
in his Flash code when he creates them?
That is precisely what I mean.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Temporarily at: http://members.aol.com/_ht_a/hikksnotathome/cljfaq/
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Jul 10 '06 #17

Yes, that I can do. I can ask the designer to embed my function calls
in his flash script. Other than that do you have any advice?

Once again thanks.
Amit
Randy Webb wrote:
amit said the following on 7/10/2006 2:09 PM:
Randy Webb wrote:
amit said the following on 7/10/2006 12:44 PM:
Randy Webb wrote:
amit said the following on 7/6/2006 12:48 PM:

Hello Randy,

Thank you now I feel better about the image object! I believe I've
been so lucky to have ask for your advice here.

My next step is to track information on FLASH elements on a page. Do
you have any experience on this as well?
What do you mean by "track information on FLASH elements"?

Please don't quote signatures.

Hi again,

What I meant is tracking anytype of events on assets related to Flash.
Flash has to do that.

I think if you look at
http://www.google.com/support/analyt...243&topic=7292
will give a better view.
The Flash app has to make the call to the JS script that will then
"track" the Flash app. Trying to do it in JS alone won't work.


Do you mean this is possible only if a Flash designer call my function
in his Flash code when he creates them?

That is precisely what I mean.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Temporarily at: http://members.aol.com/_ht_a/hikksnotathome/cljfaq/
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Jul 11 '06 #18
amit said the following on 7/11/2006 1:37 PM:
Yes, that I can do. I can ask the designer to embed my function calls
in his flash script. Other than that do you have any advice?
Yes, read the group FAQ, all of it.

<URL: http://jibbering.com/faq/#FAQ2_3>

Specifically, paragraph 6.
--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Temporarily at: http://members.aol.com/_ht_a/hikksnotathome/cljfaq/
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Jul 12 '06 #19

Randy Webb wrote:
amit said the following on 7/11/2006 1:37 PM:
Yes, that I can do. I can ask the designer to embed my function calls
in his flash script. Other than that do you have any advice?

Yes, read the group FAQ, all of it.

<URL: http://jibbering.com/faq/#FAQ2_3>

Specifically, paragraph 6.
--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Temporarily at: http://members.aol.com/_ht_a/hikksnotathome/cljfaq/
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/

Wonderful! looks good. I'm going to read it. Thanks for being such
helpful.

All the best,
Amit

Jul 12 '06 #20

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

Similar topics

5
by: Roger Shrubber | last post by:
I have a page with images that the user can drag from one frame to another. I need them to see a "ghost image" of the image they are dragging, while the original stays put. I use the onmousemove...
0
by: ChrisN | last post by:
Howdy, I'm writing a web application in VB.Net. I'm using C# for all of the dynamic content on the vb pages. I'm currently building a VB page that displays a table of pictures. The page calls...
4
by: LP | last post by:
Hello! I am still transitioning from VB.NET to C#. I undertand the basic concepts of Delegates, more so of Events and somewhat understand AsyncCallback methods. But I need some clarification on...
5
by: Jeff Ptak | last post by:
Can anyone tell me how to trap mouse click events in the Image control? I am trying to implement an image zoom feature using JavaScript where the user could "draw" a zoom box (aka rubber band...
3
by: Mike | last post by:
Hi, I am adding controls dynamically in a WebForm, but none of these controls' events fire. Here is the class code I am using. I have tried so many things, but nothing works :-( namespace...
1
by: Nathan Sokalski | last post by:
I want to create a pushbutton-like control on my webform that has an image on it. I used to think that this is what the ImageButton control was, but it seems to me that the ImageButton is nothing...
1
by: Tebogo Tefo via .NET 247 | last post by:
Hi I have a user control that contains three dropdownlists that I populate according to what was selected in the other dropdownlist (i.e. populate dropdownlist2 after selecting a value in...
0
by: StriderBob | last post by:
In a simple two form project, use a button on each form to Show() the other form and Hide() the current form. Add MouseEnter and MouseLeave events to both buttons so they change the image on each...
9
by: Nathan Sokalski | last post by:
I have a very simple UserControl which contains an Image and a Label, which I use to display an image with a caption. I am using this control inside a DataList, setting the two Public variables...
7
by: MasterMax1313 | last post by:
I'm trying to make a grid of picture box controls, which I do via code. Each of these boxes has a mouseclick, mousedown, mouseup, and mouseenter event. The mouseclick event is simple enough and works...
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...
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
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
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
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,...

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.