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 bkrike 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
  • Content: Threads
  • 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

    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...
  9. 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))...
  10. 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...
  11. 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...
  12. 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...
  13. 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...
  14. 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...
  15. 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...
  16. pghTech

    Writing at the end of the file

    I am familar with some of the opentextfile properties, but the problem is that the either pertain to opening a file to "read" or "write", but properties that I need to use either are one or the other and I need both. I need to open a file, find the last character, go to the next line and write...
  17. pghTech

    How to get Script to continue on without waiting for return of Functio

    If I wanted a script to run and call a function that is recursive (possibly) that would allow it to monitor processes running keeping an eye out for a process, and if found kill the process, but the script continuing on? I know how to kill a process, collect a collection and do the many options...
  18. pghTech

    Checking Running Processes

    If I create a collection of running processes and I want to check that a process is no longer running, how do I make that check. Below is the collection but I can't figure out how to tack on a condition if the objprocess in the colprocess is no longer running strProcess = nameofprocess Do...
  19. pghTech

    Design and layout advice needed for new program project.

    C++ Program: (Program description first, then question at the end - sorry for the long post, trying to be as descriptive as possible) I am getting under way a program that will have a windows gui allowing a user to be able to save programming code to a database. Finally, you can do a search by...
  20. pghTech

    Programming projects online - any suggestions

    I was hoping to see if anyone knew of any C++ online projects (particularly C++ but not limited to)where groups are looking for programmers to help work on designated parts of the project. I am not looking particularly for a game project, but as an example, I know allot of time groups form...

Part and Inventory Search

Back
Top