Click here to Skip to main content
15,913,758 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionSecurity Extension for SSRS Pin
Shelby Robertson 14-Jan-10 3:38
Shelby Robertson 14-Jan-10 3:38 
Question3D Image.... Pin
ashwath197914-Jan-10 1:19
ashwath197914-Jan-10 1:19 
AnswerRe: 3D Image.... Pin
The Man from U.N.C.L.E.14-Jan-10 6:49
The Man from U.N.C.L.E.14-Jan-10 6:49 
AnswerRe: 3D Image.... Pin
molesworth14-Jan-10 7:17
molesworth14-Jan-10 7:17 
AnswerRe: 3D Image.... Pin
dybs18-Jan-10 18:05
dybs18-Jan-10 18:05 
QuestiononMouseOver handler does not get the argument Pin
hezi13-Jan-10 23:49
hezi13-Jan-10 23:49 
AnswerRe: onMouseOver handler does not get the argument Pin
kadaoui el mehdi14-Jan-10 0:48
kadaoui el mehdi14-Jan-10 0:48 
AnswerRe: onMouseOver handler does not get the argument Pin
The Man from U.N.C.L.E.14-Jan-10 6:55
The Man from U.N.C.L.E.14-Jan-10 6:55 
You have a Bug/Typo.

hezi wrote:
Function mouseOverHandler(this)
{
alert(document.getElementById(me.id))
}


The function should read:

alert(document.getElementById(this.id));


The 'me' keyword is from VBScript.

However, as the other poster showed in his example, it would be better to use a different word for the parameter as the word 'this' has special meaning in JavaScript.

Alternately, don't pass the parameter, and just use the 'this' keyword. It will be the object which fired the event. e.g.

Function mouseOverHandler()
{
   alert(document.getElementById(this.id))
}


If you have knowledge, let others light their candles at it.
Margaret Fuller (1810 - 1850)
[My Articles]  [My Website]

QuestionI need an ebay program Pin
totolcm13-Jan-10 2:18
totolcm13-Jan-10 2:18 
AnswerRe: I need an ebay program Pin
Richard MacCutchan13-Jan-10 2:34
mveRichard MacCutchan13-Jan-10 2:34 
AnswerRe: I need an ebay program Pin
The Man from U.N.C.L.E.13-Jan-10 6:23
The Man from U.N.C.L.E.13-Jan-10 6:23 
AnswerRe: I need an ebay program Pin
Dave Kreskowiak13-Jan-10 6:30
mveDave Kreskowiak13-Jan-10 6:30 
AnswerRe: I need an ebay program Pin
JustWorking14-Jan-10 0:22
JustWorking14-Jan-10 0:22 
QuestionVS 2008 - Error when running VB 2008, "cannot be modified at this time" Pin
Central_IT13-Jan-10 0:02
Central_IT13-Jan-10 0:02 
AnswerRe: VS 2008 - Error when running VB 2008, "cannot be modified at this time" Pin
David Skelly13-Jan-10 1:41
David Skelly13-Jan-10 1:41 
GeneralRe: VS 2008 - Error when running VB 2008, "cannot be modified at this time" Pin
Central_IT13-Jan-10 1:42
Central_IT13-Jan-10 1:42 
GeneralRe: VS 2008 - Error when running VB 2008, "cannot be modified at this time" Pin
Not Active13-Jan-10 9:07
mentorNot Active13-Jan-10 9:07 
GeneralRe: VS 2008 - Error when running VB 2008, "cannot be modified at this time" Pin
The Man from U.N.C.L.E.14-Jan-10 6:58
The Man from U.N.C.L.E.14-Jan-10 6:58 
GeneralRe: VS 2008 - Error when running VB 2008, "cannot be modified at this time" Pin
The Man from U.N.C.L.E.14-Jan-10 7:02
The Man from U.N.C.L.E.14-Jan-10 7:02 
GeneralRe: VS 2008 - Error when running VB 2008, "cannot be modified at this time" Pin
Central_IT14-Jan-10 22:00
Central_IT14-Jan-10 22:00 
QuestionUnable to connect with data base Pin
guess098512-Jan-10 0:03
guess098512-Jan-10 0:03 
AnswerRe: Unable to connect with data base Pin
Eddy Vluggen12-Jan-10 8:06
professionalEddy Vluggen12-Jan-10 8:06 
Questionusing the contol.paint event Pin
Martin Beukes11-Jan-10 9:39
Martin Beukes11-Jan-10 9:39 
AnswerRe: using the contol.paint event Pin
Luc Pattyn11-Jan-10 9:54
sitebuilderLuc Pattyn11-Jan-10 9:54 
GeneralRe: using the contol.paint event Pin
Martin Beukes11-Jan-10 11:29
Martin Beukes11-Jan-10 11:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.