The defined tag has no wiki summary.
17
votes
8answers
13k views
Determine if variable is defined in Python
How do you know whether a variable has been set at a particular place in the code at runtime? This is not always obvious because (1) the variable could be conditionally set, and (2) the variable could ...
5
votes
5answers
260 views
Is there a simple way to validate a hash of hash element exists and is defined?
I need to validate a Perl hash of hash element such as $Table{$key1}{$key2} to exist and be defined. Here is what I do. (I have no idea $key1 even exists)
if
((defined $Table{$key1}) &&
...
5
votes
1answer
969 views
How to programatically list all properties defined?
I'm looking for a way to access all the Build properties defined while executing MSBuild. I have a configuration file. I want to modify the Properties in the configuration file and copy it to a new ...
4
votes
4answers
222 views
Oracle: column ambiguously defined
I know there are lots of questions like these, but my question is not how to get rid of this error but to know how this worked earlier in 9-th version of Oracle.
I've got an old sources written in ...
4
votes
2answers
850 views
Is there any way to check to see if a VBScript function is defined?
This is probably just wishful thinking...
Is there any way to check to see if an ASP/VBScript function is defined before calling it?
3
votes
1answer
100 views
Undefined function error for javascript function
Here is my code, I don't understand what's wrong.
<script type="text/jquery">
function gettotalAdult()
{
//Assume form with id="fsd-bucket-calc"
var theForm = ...
3
votes
2answers
161 views
Follow-up. Is return reference to x++ defined?
I recently asked the question http://stackoverflow.com/questions/2380803/is-the-behavior-of-return-x-defined
The result was about what I expected, but got me thinking about a similar situation.
If I ...
3
votes
3answers
2k views
How can I determine if a Perl hash contains a key mapping to an undefined value?
I need to determine if a Perl hash has a given key, but that key will be mapped to an undef value. Specifically, the motivation for this is seeing if boolean flags while using getopt() with a hash ...
2
votes
1answer
65 views
JS Ajax onreadystatechange is not defined although object exists
I am struggling with this for a day now, and going in circles and help would be greatly appreciated :-)
Abstract
Asynchronous ajax calling cgi with resolver and fqdn variables in order to return a ...
2
votes
1answer
206 views
+150
How to implement user defined fields and grouping for the multi-tenant application: EAV, fixed tables pattern, NoSQL
I'm working at a SaaS, where any tenant can have several lists of contacts, each list can have any number of custom fields contacts of this list can store and any number of groups the contancts of the ...
2
votes
3answers
227 views
How to judge whether a method has defined in a class?
class C1
unless method_defined? :hello # Certainly, it's not correct. I am asking to find something to do this work.
def_method(:hello) do
puts 'Hi Everyone'
end
end
end
So, how ...
2
votes
5answers
864 views
Nested hash defined?()
What's the most concise way to determine if @hash[:key1][:key2] is defined, that does not throw an error if @hash or @hash[:key1] are nil?
defined?(@hash[:key1][:key2]) returns True if @hash[:key1] ...
2
votes
1answer
415 views
How is “0” result from readdir() not false in a while condition?
See also: Where in the documentation does it say that while tests readdir for definedness?. (Not a duplicate; just closely related.)
Many people treat the loop below as idiomatic:
while ...
1
vote
2answers
48 views
C# - Check for attribute's existence on enum's element
I've got a situation like the following:
enum Header
{
Sync,
[OldProtocol] Keepalive,
Ping,
[OldProtocol] Auth,
[OldProtocol] LoginData
//...
}
I need to obtain an array of ...
1
vote
2answers
109 views
Python: “Self” is not not defined?
Back with the same confusing script.. there was A LOT of spacing issues that I fixed... but seem to be missing more? Whats wrong with this -- its saying line 332 self is not defined...
Here are a ...
1
vote
2answers
73 views
c# defined variables in a method as a list - is it possible?
In php, you can get the method's defined variables as an array:
function test($a,$b){
print_r(
get_defined_vars()
);
}
Is it possible in C#?
1
vote
1answer
46 views
Error url is not useful for dynamically injected javascript functions. Need user supplied reference
javascript which is introduced from a string instead of a .js file is difficult to debug because errors reference the url of the script file containing the error. If many strings are introduced, it ...
1
vote
2answers
25 views
Autotabbing & Checking if variables is defined
Well. Now again, i have some questions. Basically i'm doing two things. Autotabbing which is for example when you do if() you press enter and you go to next line, but you don't do the TABS to make it ...
1
vote
2answers
149 views
Help with cross-platform script - #IF defined()
I'm new to C++
I'm writing a crossplatform script, here is the part I need help with:
#if defined(_WIN64) || defined(_WIN32) || defined(__WIN32__) || defined(__TOS_WIN__) || defined(__CYGWIN__) ...
1
vote
2answers
343 views
Ruby: how do I check if a class is defined?
How do I turn a string into a class name, but only if that class already exists?
If Amber is already a class, I can get from a string to the class via:
Object.const_get("Amber")
or (in Rails)
...
1
vote
1answer
415 views
ruby dynamic chaining methods
HI
I try to build some dynamic defined methods and chain some scope methods something like:
define_method "#{instance_name_method}" do
Kernel.const_get(model_name).___some_chaining methods ...
1
vote
2answers
86 views
problems with VBA code application or object error
I have coded some code in VBA my code breaks at this line raising Application defined or object defined error.
.Formula = "=IF(AND(chr(34) & ' & chr(34) & Criterion " & i & "'!" ...
1
vote
2answers
186 views
Can a value be uninitialized, but still defined, in Perl?
Running ActiveState Perl 5.10.1 on win32.
How is it that this code:
die(defined($r->unparsed_uri =~ '/(logout.pl)?$'));
...dies with 1, whereas changing the same line to say this:
...
1
vote
0answers
80 views
How to spawn thread when defined function is set (sequentially dependent) and calling is spatially dependent
I apologize for my question being a bit confusing.
So I have code written in python but also used H3D haptics platform. I'm trying to unload some of the processing of this one, very large thread so ...
1
vote
1answer
268 views
Hibernate entity with user defined attributes
Can someone please give me some tips on modeling hibernate entities that have some known attributes while the majority are defined by the user of the system (during initial setup of the system)
I ...
0
votes
3answers
102 views
User Defined Fields PHP Mysql
I am currently building a small crm application. I need each user to be able to define their own custom fields. I am currently building this crm using php and mysql.
Example: I have a ...
0
votes
0answers
25 views
How to create user defined data type in python
I would like to define a class 'adult' based on class 'person' as follows:
Class adult(person):
Age >= 18
Of course that's not a valid syntax, because 'age' must be assigned a value, not a ...
0
votes
1answer
76 views
Problems with glew and gltools, _glewInit already defined
I am trying to add shadders from opengl Superbible example to my program. The problem is, when I call any function from gltools i get
glew32.lib(glew32.dll) : error LNK2005: _glewInit already ...
0
votes
0answers
267 views
animating object along user defined path - android
I'm trying to make a simple object like a rectangle follow a path created by the user. I've been able to create and draw the path but have had no luck with the object following that path. here is what ...
0
votes
2answers
113 views
Swap div on link hover - Javascript error in Firefox
I have some code which allows me to hover over a number of links and subsequently replace the content in a specified DIV. It works in most browsers but Firefox gives an error - the error can be ...
0
votes
3answers
88 views
Jquery/JS - Function not defined
can anybody tell me why i get the error "translater is not defined" ?
working example
http://jsfiddle.net/PkqKg/7/
I am confused.Thanks in advance!
Peter
0
votes
3answers
116 views
Recursion function not defined error
Hi i have a problem with recursion.
i followed this example from wc3 http://www.w3schools.com/jsref/met_win_settimeout.asp
But mine seems to not work at all.
function rotateImages(start)
{
var a ...
0
votes
2answers
83 views
php defined named constant as a function name
How to create a dynamic function name dependent on a defined named constant?
eg:
define('NAME1','func1');
function NAME1($arg) {
echo "function 1 $arg\n";
print __FUNCTION__." in ...
0
votes
1answer
206 views
System.Xml.XmlDictionaryReaderQuotas not defined on GoDaddy server
I've got some code I created to break down a JSON HttpWebResponse into a XmlDictionaryReader:
Dim response As HttpWebResponse = request.GetResponse()
Dim xmlQuotas As New ...
0
votes
0answers
31 views
Enable an event named my_event from a trigger in MySQL?
I wish to enable a user defined event named my_event from a trigger that is fired after inserting rows in a table, say abc. It should go like 1st row inserted then enable my_event1, if 2nd row then ...
0
votes
2answers
249 views
Javascript window.location.hash is defined?
Is there some way I can tell whether window.location.hash is defined?
If it is set, then I will be getting the value of the variable, and using it to display extra content on the page.
0
votes
1answer
68 views
how to get List Of User Defined Functions using OleDbSchemaGuid in c#?
how to get List Of User Defined Functions using OleDbSchemaGuid in c#?
0
votes
2answers
364 views
Another BC30002: Type is not defined
Here's what I've done...
I used wsdl.exe to create a .cs class for my wsdl service connection.
I made a Visual Studio project to compile the .cs into a dll having namespace CalculatorService ...
0
votes
2answers
2k views
How do I fix class template has already been defined?
I am implementing ZipArchive library into my project, and I fought with it for over an hour getting it setup right to stop all the linker errors. But now I still have this left over and I am not sure ...
0
votes
1answer
73 views
Javascript error in IE
Hello =)
My problem in ie browser only...
auth.js
Deferred.errorHandler = function(e) { alert('Unhandled error ' + e); };
function User() {
SbApi.url = 'http://api.sindbad.ru';
var user = ...
0
votes
3answers
2k views
MySQL Function to return table name to be used in a query
Can I use a MySQL function or procedure to return table names that can be used in a query?
Something like
SELECT * FROM get_db_table_name(2342352412);
where get_db_table_name() is a user defined ...
-1
votes
1answer
237 views
If isset for constants, but not defined?
If i set a constant to = '';
How to i check if constant got something inside ?
defined(), does not work like i wish because it is defined
isset() does not work with constants
is there any simple way ...