object

Debugging a C# Object Initializer

Does anyone have any tips for debugging exceptions in a C# object initializer block? The object initializer syntax is basically all or nothing, which can make it especially difficult to troubleshoot inside of a LINQ query. Short of breaking the object creation out to a separate method, is there anything I can do to see which property set...

differences between using wmode="transparent", "opaque", "window" for an embedded object on webpage

when embedding a Flash object with the <object> and <embed> tag, there is an attribute called "wmode". It seems that most of the time, wmode="transparent" is the same as wmode="opaque" as the Flash doesn't actually have any transparent color so that the bottom HTML element is to be shown. As a result, "opaque" should be faster than "tr...

Create Image file (using C# or VB.NET) from MS Access OLE Object column

An OLE Object column contains images but the image type (jpg/gif/tiff) is unknown. These images need to be extracted from the DB and saved to disk. The application is primarily using VB.NET but C# examples are welcome too. thanks Rahul ...

What's the correct way to test for existence of an attribute on a JavaScript Object?

I have a custom Javascript object that I create with new, and assign attributes to based on creation arguments: function MyObject(argument) { if (argument) { this.prop = "foo"; } } var objWithProp = new MyObject(true); // objWithProp.prop exists var objWithoutProp = new MyObject(false); // objWithoutProp.prop does not ex...

Extending ruby object; extend_object callback prevents instance methods from being extended

Having some trouble extending an object instance with a module, specifically when I define an extend_object callback in the Module class. My understanding is that when you do something like: (s = String.new).extend SomeModule The SomeModule extend_object callback is called. This seems to be the case, but when I include a callback, no...

Cast JSON as a custom object?

Hello I was wondering if it is possible to cast my JSON string as a custom object? basically : var customObject:CustomObject = JSON.decode(evt.result as String) as CustomObject; Regards Adlertz ...

what is the best use Cache Object or static variabels

I need to store large data in my website but I'm not sure what is the best to use cache objec or store the data in static variabels in the master page? thanks alot ...

How can I use a different object inside of a class?

If I create an object inside of the main scope: INDEX.PHP: $db = new database(); Then how can I use this same object inside of a completely different class? ANYTHING.PHP: class anything { function __construct(){ $db->execute($something); # I want to use the same object from INDEX.PHP } } Would I need to make $db a...

Use of Iframe or Object tag to embed web pages in another

In a web-based system I maintain at work that recently went live, it makes an Object element to embed a second web page within the main web page. (Effectively the main web page contains the menu and header, and the main application pages are in the object) For example <object id="contentarea" standby="loading data, please wait..." ...

Rails: How do I save a string representation back into a model?

I have an Employee model that has a SecurityClearanceLevel. When you make a new employee, you're asked to set a SecurityClearanceLevel by choosing from a <select> list. The problem is that when I save the object, it's a string, not a SecurityClearanceLevel, so the save fails. Where do I take care of this kind of back-and-forth conversio...

Passing js object as json to jquery?

I have the following but it's not working, I read somewhere on the stackoverflow that it works like this but I can't seem to get it to work.. it errors... am I doing something wrong? If I do pass data like this - it works -- so I know my service is working //THIS WORKS data: "{one : 'test',two: 'test2' }" // BUT SETTING UP OBJECT do...

relations in oracle objects?

how to make relations 1 to n and n to n in oracle objects? ...

stdClass object and foreach loops

I am using the following code to get data from a website using Soap. $client = new SoapClient('http://some.url.here'); class SMSParam { public $CellNumber; public $AccountKey; public $MessageCount; public $MessageBody; public $Reference; } $parameters = new SMSParam; $parameters -> AccountKey = "$sms_key"; $parameters -> MessageC...

How can I create objects with reference using instantobjects framework programmaticaly in Delphi code

I am a experimenting with instantobjects. I have two simple classes tband and tcountry both are defined as stored. tband has a properts named tcountry referencing the tcountry class/table. (country is the lookup table). When creating a new band I want the user to be able to select the country in the form from a list/combo and then save t...

JVM, Java, Multithreading, Object Creation

i am encountering a weird scenario, Is there a possibility of JVM re-using an already created object when we are initializing a new one and the object count is JVm is very high? abc a = new abc(); a.setAttribute("aaaa"); ......... a...is no longer being used...and has not yet been garbage collected by the JVM. There are multiple threads...

Use of the standby attribute of the object element

Hi, I was just going over the OBJECT element in HTML (http://www.w3.org/TR/REC-html40/struct/objects.html#h-13.3) . I've done a few flash projects and a few silverlight, and so would have seen the element in passing. For some of the flash, I would have written some 'loading' logic to let the user know the actual flash body is loading. ...

Is this possible with Subsonic

I need to generate Entities/Object from selected tables - not all. Is this possible with Subsonic and if so how? ...

Use of object vs string vs enum

Hi! I have a situation that may seem ridiculus but I have not been able to figure out a good enough solution. To simplify things the problem is something like this, suppose you have an object like Manufacturer that has a countryname property (like car.Manufacturer.CountryName) and you want to be sure that the countryname property can no...

Creating anobject passing a lambda expression to the constructor

I have an object with a number of properties. I want to be able to assign some of these properties when I call the constructor. The obvious solution is to either have a constructor that takes a parameter for each of the properties, but that's nasty when there are lots. Another solution would be to create overloads that each take a subs...

DRY'er Object Initialization in Ruby

Hi, Is there a more 'DRY' way to do the following in ruby? #!/usr/bin/env ruby class Volume attr_accessor :name, :size, :type, :owner, :date_created, :date_modified, :iscsi_target, :iscsi_portal SYSTEM = 0 DATA = 1 def initialize(args={:type => SYSTEM}) @name = args[:name] @size = args[:size] @type ...