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 Chris Miller 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: dd007
  • Order by date
  1. dd007

    Saving as PDF replaces data with ##

    I am trying to save a report in Impromptu as PDF. When I open the pdf most of the data is replaced with '##'. I have tried different computers and different version of Adobe Reader. Is there a setting I'm missing? Thanks Dave
  2. dd007

    Passing pointer to array

    I have a 2dimensional array and I only want to pass one row to a function. The array is setup as: myArray[4][8]; I call the function: status = functionx(myArray[j]); where j is the row Fuction Prototype: short functionx(short *myArray); Function: short functionx(short *myArray) Is this...
  3. dd007

    Pass and object to a class

    Thanks for the response. Class2::Class2(Class1* pClass1) { m_pClass1 = pClass1 } That cleared it up for me, thanks for the explanation. I got it running now! Dave
  4. dd007

    Pass and object to a class

    Thanks for the reply Matt. I would like to use a pointer to the object approach. There is going to be about 3-4 instances of Class2, these will need to have access to one function of a single Class1 object. Can you explain more on your code. Class2::Class2(Class1* pClass1)...
  5. dd007

    Pass and object to a class

    Can someone lead me in the right direction. I am trying to pass just one instance of a class(class1) to multiple instances of another class(class2). I tried just passing class1 to class2 in the constructor and having class2's constructor accept a class1 pointer. Is this correct? I am having...
  6. dd007

    User Interface for c++ program

    Thanks for everyones input. I will keep this in mind when I am programming the project. Thx
  7. dd007

    User Interface for c++ program

    I am developing a project programmed in c++ to run from a command prompt. A simple text based menu will be used to change parameters before running. My question, how hard will it be to later add a GUI using visual c++ to my existing code? Any tips or tricks for importing my c++ classes to...

Part and Inventory Search

Back
Top