Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
563 views

Powershell Custom Objects: How To Acess NoteProperty of collected result

Reading through an Article about custom Objects: http://technet.microsoft.com/en-us/library/ff730946.aspx I wonder why i get a result for the individual entry: e.g $objAverage.Name while by ...
1
vote
1answer
189 views

iCloud - How to save archive containing array of custom objects

I have developed a small app that stores locally in iOS through archiving an array of custom objects containing: @property (nonatomic, copy) NSString *name; @property (nonatomic, copy) NSString ...
1
vote
3answers
85 views

What is the best way to save an NSMutableArray to NSUserDefaults?

I have a custom object called Occasion defined as follows: #import <Foundation/Foundation.h> @interface Occasion : NSObject { NSString *_title; NSDate *_date; NSString *_imagePath; } ...
1
vote
1answer
98 views

SilkTest workbench Invalid Object Handle Exception?

I'm trying silktest for the first time with an in house application. In one of the windows, I have a button that has two menu lists : New (pushbutton) ---> Option1 (list menu ) + Option2 if ...
1
vote
2answers
356 views

Returning a custom class in WCF

I created WCF service that returns a custom object called XmlElementTreeNode. This is what the object looks like: [DataContract] public class XmlElementTreeNode { [DataMember] public string ...
1
vote
2answers
243 views

Javascript Custom Object - Expected Identifier in IE

I'm new to creating custom object in JavaScript, so it could easily be something simple. I have these objects: function jsonObj(_id,_title,_class,_icon) { this.attr = new ...
1
vote
2answers
908 views

Finding matches in arrays of objects in Powershell

I'm using custom objects to hold the name and schema from a set of SQL Server objects. I put the objects into an array, then I get another set of objects and put those into another array. What I'd ...
1
vote
4answers
152 views

What's the best way to store custom objects in relational database?

I have my objects with their properties. Objects could change their structure: properties may be added/removed/changed. Objects could be absolutely dropped. So object's metadata (description, classes, ...
1
vote
2answers
1k views

How to create custom objects/list of custom objects in VB.NET?

I need two seperate lists, which every item is Integer, String, Bitmap - and one which every item is Integer, String String. However I don't know how to do this, or even where to look - I've googled ...
1
vote
5answers
5k views

asp.Net GridView bind custom object with nested List

I have a List of custom object, which consist of a custom list. class person{ string name; int age; List<friend> allMyFriends; } class friend{ string name; string address; } ...
0
votes
8answers
54 views

Sorting Arraylist of Custom object by creation date

I have a custom object whose structure is public String name; public int type; public String createdOn; createdOn is date and its format is : 2011-12-16T23:27:27+0000 I have stored multiple ...
0
votes
2answers
35 views

Getting a Custom Objects properties by string var [closed]

Possible Duplicate: javascript object, access variable property name? Trying to get more advanced in my JS... I have a custom object: Object myObject = new Object(); myObject.thing = ...
0
votes
1answer
220 views

GridView DataKeyNames of nested collections or custom object

I'm using custom objects to bind to a GridView. Suppose I have a collection of Car Companies (Audi, Ford, BMW, etc). Each Company object has properties like Id, Name, Country, etc. Each Company also ...
0
votes
0answers
34 views

Array of Custom Objects changes between View Controllers?

In my app I have two custom classes that define the objects Child and Notification. Both classes conform to NSCoding and in my app delegate I decode arrays of Child and Notification objects (from ...
0
votes
1answer
203 views

Adding Markers to Google Maps v3 After Map Created

I'm relatively new with using Google Maps API. Right now I am working on a project where a user can select various search filters and see results automatically show up on the map without reloading ...
0
votes
3answers
68 views

How to post a custom user defined object to a url?

MyObject myobject= new MyObject(); myobject.name="Test"; myobject.address="test"; myobject.contactno=1234; string url = "http://www.myurl.com/Key/1234?" + myobject; WebRequest myRequest = ...
0
votes
1answer
322 views

Performance regarding return type for LINQ query compatible with automatic sorting

this isn't really an issue, but more of a concern that I would appreciate some input on please. Winforms C# .net3.5[sp1] Visual Studio 2008 using Linq2Sql (more specifically PLINQO...which is ...
0
votes
3answers
3k views

WCF returning a custom object with a collection of custom objects containing streams

I don't know if this could be done, but I have a WCF service that should return a custom object, the object has a collection of another custom object that contains a stream. when I try to return this ...