object

Why getting error: Object#id will be deprecated; use Object#object_id

On my local development rails environment, I am able to check the output from a SOAP call just fine. I can use response.id to get the value from this packet displayed using the .inspect method: #<SOAP::Mapping::Object:0x15702d0c0604 {}id="dd26ce5f-0cfd-9bbb-3485-4c64c9d6378 4" {}error=#<SOAP::Mapping::Object:0x15702d0bf6f0 {}number="0"...

(Deep) comparison of an object to a reference in unit tests (C#)

Hi all, In a Unit Test (in Visual Studio 2008) I want to compare the content of a large object (a list of custom types, to be precise) with a stored reference of this object. The goal is to make sure, that any later refactorings of the code produces the same object content. Discarded Idea: A first thought was to serialize to XML, and t...

Javascript Function instance is automatically casted to object and can't be called anymore

Hi, I'm working with a fairly complex Javascript program wich, at a given point, returns some nested anonymous functions. Sometimes, when I try to "apply" one of such anonymous functions ("f" in this example)... f.apply (this.context, args) ...I get an "f.apply is not a function" error. It's weird, because alert(f) displays the fun...

php simplexml get object variable start with number

Hi, When I parse an rss file with SimpleXMLElement, I get this object : object(SimpleXMLElement)#307 (1) { [0]=> string(39) "http://workspace/wordpress/hello-world/" } $var->0 doesn't works. I don't know how to do it :( thanks. ...

mysqli object how do I get the fields

Hi. I tried this: $result = $conn->query("SELECT * FROM temp_users WHERE reg_code ='$passkey'"); This works: if($result->num_rows == 1){ values from print_r($result); mysqli_result Object ( [current_field] => 0 [field_count] => 11 [lengths] => [num_rows] => 1 [type] => 0 ) but $result->username where username is a field in the d...

In Java/Swing, is it ok to make new "main" JPanel objects when required by the user?

Hi folks, I am curious whether it is good practice to make a new main JPanel object every time a user wishes to return to that JPanel from a subsequent JPanel? FYI, my Swing application has a JFrame whose first object is a mainJPanel with three JButtons (one of them is a Review button). Let's say the user pushes the Review button. The...

TouchesBegan on specific object

hi all, I've been searching on google for that , but didn't found any answer. I want to use TouchesBegan but on a specific object, like a textview, a label, ... I've tried to replace "any object" by the pointer of my object but it doesn't work. Is there on other way to detect the touch on a object with a method , in witch I can tell a...

Can a MYSQLI connection be reopened WITHOUT instantiating a new object.

Hi All, Just a quick question here: If I choose the object oriented style to interact with my database, ie... $mysqli = new mysqli("localhost", "my_user", "my_password", "world"); And I then use $mysqli->close(); to close the connection at some point... Can I reopen that connection by simply initiating another query $mysqli->quer...

Deleting object from array

i'm working on app for iphone on objective-c i have array with object references If i remove item with object reference from array should i release this object additionally or it will be removed from memory automatically? ...

What POOP frameworks exist for Lisp and Scheme.

What all nice POOP (Prototype-based Object-oriented Programming) Frameworks exists in Lisp and Scheme I know one * Sheeple But I did not find any other. ...

How to use an object in more than one form in Visual C# ?

Hi. I'm new in c#. I have read some book about c# for beginners. Now i can code simple applications. I have 2 forms and 1 class in a project. I want to use a object from that class in 2 forms. I want first form to set a property of the object and secont to display this property. How can i do it. Please help me. Thanks ...

jQuery objects don't work

When I store a jQuery object in a variable, like this: var $myObject = $("div#comments"); ...I can't use the object $myObject! This is what I'm doing to change the html of div#comments: $myObject.html(data); It does nothing. I already tried this way too, this time to select an element inside div#comments: $("div.comment", $myObje...

Vbs - Can't create Word.Application

Hi, this is pretty strange. I'm trying to run a pretty simple vbs code from a terminal server and I have amongst others, this line: Set objWord = CreateObject("Word.Application") Strangely enough, this worked yesterday. But now, all that happens is that wscript.exe just seems to hang. I even tried to put a messagebox before the creati...

How can I store a reference to object property in another object?

This is a C# winforms app. Preface: I am creating a form that will allow users to import data from an existing MySql or SQL Server database into my SQL Server database. This allows users to quickly import IP addresses and other data without having to re-enter it via a control. Example: Simplified, I have two objects, FieldObject and ...

Why only one object gets constructed but multiple objects are destroyed when using functor?

The following example, beats me. I've been so far thinking, that when functor is being used, the object gets constructed once and the same object is used multiple times, when used with for_each algorithm and that seems to be correct. However, even though, only one object gets constructed, but multiple objects are destroyed. Now, this b...

How to grab a value from from an Object (associative array) in flash, and reassign that value to a new variable?

I have multiple toggle buttons on my flash stage. These toggle buttons are MovieClips. If a user clicks on one of the MovieClips, I want to be able to find a way to go through the Object below--get the appropriate value based on what the User clicked--and store that value in a new value called var powerData which will then be passed to a...

How do I find an annotation handle in MATLAB?

I'm trying to implement a modified version of datetick2 from the MATLAB FEX. When plots are zoomed in on a small date range, the day/month/year, etc. isn't shown, depending on the range of times in the plot. I'd like to put a 'dd-mmm-yyyy' formatted starting date as an annotation in the bottom left corner of the figure. No problem, that'...

javascript 'this' usage

let's say I have code like this: var object1 = {}; object1.class1 = function() { this.property1 = null; this.property2 = 'ab'; } in this case, what does 'this' stand for? object1 or class1? And whenever I want to define a class constructor inside an object, what is the best way to do it? ...

Javascript object serialisation with toSource() converts special chars to hex code - how to reverse?

If I'm converting a simple JavaScript object to a string, all special chars will be converted to hex code. function O() { this.name = "<üäö!"; } var myObject = new O(); console.log(myObject.toSource()); Result: {name:"<\xFC\xE4\xF6!"} How would I avoid this or convert all hex chars back to utf8 chars? ...

How to clone an Object you dont know the type of?

its easier to explain in code so here Object anObj; anObj = new MyObj(); anObj = new Rectangle(); anObj.clone();//this doesnt exist because its on the root Object class what can i use instead of the Object.clone() method in this example? ----------------------- extra info ------------------------------ I have added extra info but it...