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 strongm 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: pghTech
  • Order by date
  1. pghTech

    Problem Running switches with executable - need assistance

    I am trying to run a program that has switches involved that I can successfully run from the "Run" window in Windows XP. Example: c:\temp\inst\InstData\VM\install.exe -f installer.properties However, when putting this into VBScript like I normally do such as: objShell.run...
  2. pghTech

    Need asssistance changing App View Size in MFC SDI App!

    I have created a SDI using VC++ 2005 w/ MFC, and I was hoping someone could tell me how to make the following view changes: 1) When you run the application, I would like for it to default to full screen, BUT I would like for it to just make the application full screen at a default limited...
  3. pghTech

    Question about Casting Pointers - need Explanation!

    I am reading a book that is helping me develope a application to access a MS Access DB through ODBC with MFC. They walk you through manually adding a class derived from CRecordView. In the process, they have you add a *second* derived class from CRecordView to you program (the first being the...
  4. pghTech

    CView vs. CForm View

    -------------------------------------------------------------------------------- I have a program that I am working on where I can use edit boxes on a dialog to load records in an attached database and and query the database. Taking some advice from some community members, I have attempted to...
  5. pghTech

    Problems posting text to edit box - need help.

    I am attempting to post text to an edit box: I created a class off of the main dialog window and was using the constructor to initialize the edit box with text: public: CSnipitDlg(CWnd* pParent = NULL); // standard constructor Constructor: CSnipitDlg::CSnipitDlg(CWnd* pParent /*=NULL*/)...
  6. pghTech

    Using Combo Boxes

    I am creating a program that query's a Acces Database and displays the results in a list box. However, I have grouped the search fields into a group and the search results in another group. One of the search fields is a combo box which contains different programming languages. What I am...
  7. pghTech

    Creating Customize Result window - need advice!

    In my program, there are some edit boxes users are able to use to fill out and it will query a access database for the results. However, I would like to have a "results" window where it looks like: Columns - column headers "read-only" (greyed out appeance) Rows - shows query results that are...
  8. pghTech

    Designing Access DB for C++ program

    Thanks Golom for that information - I'll get on reading that. Since I am trying to do this with C++, and I am not familar with these .NET interfaces your referring to, would it be adventagous to write the interface in .NET and the back end in C++? and is that even possible without having to be...
  9. pghTech

    Designing Access DB for C++ program

    I am writing a program, where I would like the user to be able to use any of the fields I provide to search for records that correspond, either using only one field, or a any combination of the fields available. I am struggling to figure out how to setup the Access DB for my program to use. Do...
  10. pghTech

    Creating Customized GUI's - need help

    Thanks for the help Salem, greatly appreciate it. To answer your question, the previous post was in regard to created standard windows gui interfaces as you would with using the "standard" gui tools in MFC, *BUT* with another API/EDI. Since I am new to programming and windows GUI's, I was...
  11. pghTech

    Creating Customized GUI's - need help

    I am working on a program that uses MFC for generating the user GUI. I was wondering how developers generate the "customized" GUI's that is not any windows or MFC standard "looking" interface. Just throwing out some examples, "Bear Share" or any Windows based Music/DVD player (i.e WinDVD))...
  12. pghTech

    Creating interfaces with programs

    I personally only know about MFC as an API that will allow you to develope programs with GUI interfaces using native C++ (as opposed to .NET or C#). However I have heard it mentioned more than once about MFC being somewhat "unfavored", for lack of better word, by programmers anymore. Besides...
  13. pghTech

    Function Call issue - Please help

    Thanks all.... I was actaully on a binge to find out how to call a function as an argument to another function. Yes your correct my logic for this problem wasn't correct, and I corrected it. Thanks for all the advice.
  14. pghTech

    Function Call issue - Please help

    This is sort of confusing for me to Post, so I'll do my best and show all my code. I have two .cpp files, one that includes the other's .h file. I have defined the following member variables: private: bool m_fullscreen And three public member functions: void...
  15. pghTech

    Locating the correct Header:

    As a newbie to C++, I am having a problem finding what Header needs to be included when I search on the net or in Help and find a function I want to use. Also, can a MFC function be only used in MFC programs - how do I determine that i might be looking at an MFC based function (i.e...
  16. pghTech

    Need help Asking user question in program

    Since currently winmain.cpp seems to just setup the window for the application could I: 1)move the fullscreen variable to my CGfxOpenGL.h file as a private 2)create two new functions in CGfxOpenGL.h one to take the return selected button (yes / no) to define member variable...
  17. pghTech

    Need help Asking user question in program

    The following opengl code has to source files and a few standard and gl based header files. I would like to add to the program a question that promps the user if they would like to run the program in fullscreen then take that inputted answer (i.e. y or n) and set the fullscreen global variable...
  18. pghTech

    Fatal Error 1080: Missing .h file

    @cpjust I am using 2005 express, as far as path: "C:\Program Files\Microsoft Visual Studio 8\VC\include\glut.h" is what VS is saying the path is. @ArkM Well I apologize for my ignorance, but when you say to check [b]gl directory [/i] can you elaborate?
  19. pghTech

    Fatal Error 1080: Missing .h file

    Ok I am trying to compile a simple sample program in a book I am reading and I have loaded the workspace from the source directory that has all the workspace, source files, and resource files to compile it. However, I continue to have one error that it is it cannot include gl\glut.h that the...
  20. pghTech

    Code::Blocks vs VC2005 Standard

    I posted a similar topic were I was able to get some colorful adjectives for what people thought of Code::Blocks. However, I am just starting to use Code::Blocks, but have been using a couple different version of VC (6 and 2005express). So, I have been considering whether or not I should drop...

Part and Inventory Search

Back
Top