Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: spirou
  • Content: Threads
  • Order by date
  1. spirou

    Basic array of classes

    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] =...
  2. spirou

    In the following lines of codes, I

    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...
  3. spirou

    Compile DirectX code whith command line.

    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...
  4. spirou

    Hye, I want to compile some Dire

    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...
  5. spirou

    Can't alloc a two dimensional string array

    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...

Part and Inventory Search

Back
Top