1
vote
1answer
12 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
33 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
47 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
45 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
42 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 …
0
votes
2answers
43 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
4answers
44 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 …
3
votes
5answers
71 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 …
0
votes
0answers
23 views
how to combine two different tables data into a single json object
iam making a json object by the following query
$arr = array();
$qs=qq("select main_cat_id,main_cat_name,id,name,cat_id,cat_id_main from main,scheme where main_cat_name='xyz' and …
2
votes
5answers
62 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
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 …
1
vote
3answers
82 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
72 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 …
0
votes
3answers
55 views
How to sort an array of objects in Visual C#?
I have an object that has two members that are both integer values. I made an array of these objects. Each objects values are filled with random integers.
I want to sort the array of objects …
0
votes
3answers
136 views
How to share variables among libraries in Delphi 2009?
Hi dudes, I'm trying to divide my monolithic, Delphi-Win32 app in libraries, so I get some questions around how to share global variables and object among my libraries using Delphi 2009. For example, …
