Hi, i'm a bit lost by using C++.
I want to store the adresses of each instances of a classe in an array of pointers.
Here is a sample of what i'm trying to do :
class object{
...
};
main()
{
object **a_objects;
a_objects = new (* objet)[10];
objet myobject1();
a_objects[0] =...
In the following lines of codes, I tried to insert some records of a table into another. There is a cursor witch has an ORDER BY clause on the field N_RIB. The insert comes after some work.
Just a example of what's going wrong :
Source Table N_RIB : 2, 3, 1
Program Insert Work : 1, 2, 3...
Hye,
I want to compile some DirectX5 code i find on the Web.
I download the Borland C Compiler where DirectX7 librairies are supplied.
I configured bcc32 and iLink32 to look in the librairie and include directories but when I compile I have this message :
Error: Unresolved external...
Hye,
I want to compile some DirectX5 code i find on the Web.
I download the Borland C Compiler where DirectX7 librairies are supplied.
I configured bcc32 and ilink32 to look in the librairie and include directories but when I compile I have this message :
Error: Unresolved external...
Can you tell me if the declaration and definition below are correct ?
I had a "segmentation error" after puting some char in the array but I can't find my mistake.
Here is some lines of my code :
[code]
struct t_Zone
{
short zProfondeur, zLargeur;
char **Grille;
};
typedef...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.