0
votes
2answers
42 views
‘RTLD_NEXT’ undeclared
I'm trying to compile a C program but I get the error 'RTLD_NEXT' undeclared. I think this is supposed to be defined in dlfcn.h which the c program includes, but when I looked ins …
1
vote
2answers
56 views
Undefined method ‘map’ for nil:NilClass
My app seems to randomly be throwing a "undefined method `map' for nil:NilClass" error when users are trying to update their profile.
But what's weird is it's saying the error hap …
0
votes
2answers
32 views
ActiveXObject is not defined
My program is getting employee details in web page using javascript. This is successfully working in IE5,6,8. but not working Mozilla Firefox. Please Help me...
Thanks in advance
…
0
votes
4answers
52 views
What is a concise and robust way to write these statements in JavaScript?
I have an <iframe> that uses some variables that are set in an object literal in the parent document. These variables are optional; if they're set, I want to use their values …
2
votes
4answers
144 views
Ruby forgets local variables during a while loop ?
I'm processing a record-based text file: so I'm looking for a starting string which constitutes the start of a record: there is no end-of-record marker, so I use the start of the n …
4
votes
3answers
390 views
How to unset a Javascript variable?
I have a global variable in Javascript (actually a window property, but I don't think it matters) which was already populated by a previous script but I don't want another script t …
3
votes
5answers
188 views
When javascript returns null & undefined??
I have been using javascript for couple of years and never cared about the difference between null & undefined earlier, i always use undefined to validate the object existence …
1
vote
5answers
78 views
why this javascript is line is Right and the other isn’t
javascript with>
var customer=document.getElementById('custList').value;
and that works...
Why does it work BUT...
var customer=(form1.custList.value);
I get an error that …
0
votes
0answers
61 views
Object undefined error in IE8
I have this external JS file included in a web page. It is a absolute positioned footer toolbar with toggle view functionality. It works perfect in FF3. But IE8 gives error 'animat …
1
vote
2answers
52 views
Access of undefined property for timeline addChild code :(
I'm trying to do a simple test to figure out another bug, but I'm getting Access of undefined property tsLogo for addChild(tsLogo);
I don't get it because this is simple timeline …
4
votes
4answers
322 views
Returning const reference to local variable from a function
I have some questions on returning a reference to a local variable from a function:
class A
{
public:
A(int xx):x(xx)
{
printf("A::A()\n");
}
};
const A& getA1()
…
1
vote
2answers
107 views
actionscript: undefined public variables??
I have a class like this..
public class Doc {
public function Doc():void {}
public var myVar:Boolean;
}
How can I know if the value hold by myVar is the default false, or s …
8
votes
10answers
320 views
Is it a good idea to use IEEE754 floating point NaN for values which are not set?
Is it a good idea to use IEEE754 floating point NaN (not-a-number) for values which are undefined for non-mathematical reasons?
In our case they are not yet set because the values …
0
votes
2answers
37 views
NoMethodError in basic scaffolded View?
I created a basic scaffold for a Foo model with a single property - bar:String
foos/new.html.erb:
<h1>New foo</h1>
<% form_for(@foo) do |f| %>
<%= f.error …
1
vote
1answer
510 views
JQuery IE8 Variable Undefined Error
I am trying to read the value of the FlashVars parameter off of a
Flash .swf file that's being embedded onto a page using swfobject. I
can't change anything about how the Flash is …
