Tagged Questions

2
votes
2answers
99 views

NSManagedObject setValue problem (Core Data)

Hi, I wish to edit an existing record in core data. At the moment, I have this code, but it creates a new record (and inserts the correct data into the correct column): NSManagedObjectContext * …
0
votes
3answers
43 views

Fastest PHP Type Jugling with settype() vs *val() functions?

I am trying to figure out the fastest way (in PHP 5) to check that a value is the type I need it to be. I created two lines of code which both do the same thing. The problem is that I can't figure out …
0
votes
1answer
25 views

It throws an stackoverflow exception when I user PropertyInfo.SetValue()

When I use PropertyInfo.SetValue in asp.net , it throws a stackoverflow exception. That I write this code: for (int i = 0; i < rivalSeriesIDList.Count; i++) { cardb_series …
0
votes
2answers
63 views

how to store an array in the controller and use in the view file in cakephp

In my Users controller, I find the number of forms that the user has created by querying the 'Forms' table and store it in an array. But how to use the array variables in the view file. Normally, I …
1
vote
7answers
667 views

C# - setting a property by reflection with a string value

Hi, I'd like to set a property of an object through reflection, with a value of type string. So, for instance, suppose I have a Ship class, with a property of Latitude, which is a double. Here's what …
1
vote
4answers
963 views

SetValue on PropertyInfo instance error “Object does not match target type” c#

Been using a Copy method with this code in it in various places in previous projects (to deal with objects that have same named properties but do not derive from a common base class or implement a …