0
votes
4answers
90 views
C# getting unique hash from all objects
Hi
I want to be able to get a uniqe hash from all objects. What more,
in case of
Dictionary<string, MyObject> foo
I want the unique keys for:
string
MyObject
Properties in MyObject
…
0
votes
2answers
55 views
C# get user to create class instance
If one had a class such as 'Painter' and one needed the user to be able to create an instance or instances of this class @ runtime, what's the best way to go about this?
So each time a user clicks a …
0
votes
1answer
29 views
Javascript extend objects in variable
I have a function that contains messages for form field validation. However I would like to have default messages but also have the possibility to add custom messages later on from a different …
1
vote
1answer
15 views
Adding records when binding a datagrid to a list of objects in a winforms app
I have the following classes:
public class MyItems : List<MyItem>
{
...
}
public class MyItem
{
...
}
I've instantiated MyItems and assigned it to the DataSource property of a WinForms …
0
votes
1answer
40 views
overriding default property in an object
i want to make an ajax call to a php file that return a users info in json then take that data and put it in an object property
example:
System = {
prop1= ''
}
i just want to override the prop1 …
0
votes
2answers
48 views
handling null in json or javascript
Im using an ajax json response to build some html to place in a webpage.
Occasionally I'll come across an empty value in my json.
This results in an empty object being placed into the html.
I …
0
votes
5answers
46 views
foreach through a session variable
I would like iterate on each Object in my session variable. 'items' is of type item which is a class I've created to store book information. I have done a count($_SESSION['items']) which returns a 1 …
1
vote
3answers
43 views
How to get instance ID with PHP
I'm looking for a way to get the instance ID of a given object / resource with PHP, the same way var_dump() does:
var_dump(curl_init()); // resource #1 of type curl
var_dump(curl_init()); // resource …
3
votes
5answers
73 views
Transaction on objects in C#
I was wondering if there is a way to have a transaction on object.
I'm asking this question for the following situation:
We pass our object to our dataaccesslayer. There we use transactionscope to …
2
votes
5answers
63 views
Objective-C + release Objects
I am using the following function in my application:
+(TeamTournamentLookUp *)getOpponentTeamTournamentLookUp:(int)tournamentId:(int)opponentTeamId
{
TeamTournamentLookUp *objOpponentTTL = nil;
…
0
votes
2answers
46 views
Form to object and loop through objects in c#?
I have a main form (frmMain), with some buttons (button1, button2...).
then I do this:
object objectsContainer = frmMain; // <--now the object contains form base, button1, button2...
how could …
0
votes
1answer
37 views
Getting Objective-C Objects in PHP
Hi all,
I am sending an NSData Object to the server script running PHP.Is it possible to collect that object in PHP ?
Is it possible to get NSArray,NSString, NSData or any Custom Objects (Subclass …
0
votes
4answers
45 views
Java Outputstream behavior when multiple outputstream objects are wrapped
Hi,
I have a code that does compression, encryption and checksum on a File Outputstream. Following is the code-
private void start() {
OutputStream os = null;
try {
os = new …
1
vote
3answers
83 views
Linux & C++: Easy way to exchange objects between two processes
Hello,
I would like to know what is the easiest way (amongst various alternatives) to exchange objects (or some data) between two linux-based systems.
It appears socket-programming could be a choice, …
0
votes
2answers
76 views
Generating names iteratively in R for storing plots
I'm using R to loop through a data frame, perform a calculation and to make a plot.
for(i in 2 : 15){
# get data
dataframe[,i]
# do analysis
# make plot
a <- plot()
}
Is there a way that I …
