0
votes
0answers
23 views
Subsonic: How to add new properties and populate its data using Linq
I extend the Order Class generated by activerecord:
public partial class Order
{
private string _refCustomer;
public string RefCustomer {
get { r …
2
votes
4answers
172 views
C++ Object without new
Hi, this is a really simple question but I havn't done c++ properly for years and so I'm a little baffled by this. Also, it's not the easiest thing (for me at least) to look up on …
0
votes
1answer
36 views
iPhone create folder inside documents folder
Hello,
i just want to create new folders in the documents folder of my iPhone app
does anybody know how to do that ?
appreciate your help!
0
votes
4answers
39 views
bad_alloc exception when trying to print the values
I've debugged my other problem back, to the MyMesh constructor. In this code:
if (hollow) {
numTriangles = n*8;
triangles=new MyTriangle[numTriangles];
if (smooth) num …
0
votes
4answers
101 views
problems with operator new when allocating arrays
Hello!
I'm having prblems with my C++/openGL program.
at some point of code, like these(it's a constructor):
MyObject(MyMesh * m, MyTexture* t, float *c=NULL, float *sr=NULL, int …
0
votes
2answers
31 views
Add new data into PHP JSON string
Hello. I have $data as JSON encoded data and I have this string:
$new_data = "color:'red'";
that needs to be added to $data so that I can read it from it as a json string.
How …
0
votes
1answer
329 views
Add New Column in Infragistics Wingrid
I am using Infragistics wingrid in my application. I have assigned a datasource to my wingrid.Now i want to add a new column at a specific location.
Can any one plz tell me how ca …
0
votes
1answer
31 views
Serialization of a derived class that hides a base property
I have a class like this
MyClass : BaseClass
string new FirstName
When I try to serialize this class I get the following error message
Member SQLClientAdapter.Columns of ty …
0
votes
2answers
33 views
Pointer won’t return with assigned address
I'm using Qt Creator 4.5 with GCC 4.3 and I'm having the following problem that I am not sure is Qt or C++ related: I call a function with a char * as an input parameter. Inside th …
0
votes
1answer
47 views
Asp.net page crashes other asp pages
I have a couple Asp.net pages that use a few database connections - the problem is when these two pages are separately loaded they crash all the other .asp pages but none of the .a …
0
votes
8answers
183 views
What is the ‘new’ keyword in JavaScript?
What exactly is the new keyword in JavaScript? Javascript is not a object oriented programming languges and thebefore there are no classes, so it's probably not for creating instan …
2
votes
10answers
276 views
Is there any danger in calling free() or delete instead of delete[]? [closed]
Possible Duplicate:
( POD )freeing memory : is delete[] equal to delete ?
Does delete deallocate the elements beyond the first in an array?
char *s = new char[n];
delete …
-1
votes
1answer
56 views
Add a row dynamically in TableView of iphone
Hi all,
I need to add a new row in the tableview when i select a row in the table.
Am i suppose to use the following method???
- (void)insertRowsAtIndexPaths:(NSArray *)indexPat …
4
votes
5answers
640 views
new on stack instead of heap (like alloca vs malloc)
Is there a way to use the new keyword to allocate on the stack (ala alloca) instead of heap (malloc) ?
I know I could hack up my own but I'd rather not
0
votes
0answers
61 views
Where do you go to find open source projects that are in the planning stage [closed]
Note: I searched and could not find a another question that covers this:
I am a computer engineering student. I have good coding skills but lack experience developing projects com …
