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: JasonUMD
  • Content: Threads
  • Order by date
  1. JasonUMD

    TC++PL 6.6.13 - new operator mystery

    Hello. Newbie working self through TC++PL. Ex: 6.6.3: Write a function cat that concatenates 2 C-style strings. Use new to find store for the result. My code: #include <iostream> using namespace std; char* cat(const char* str1, const char* str2){ char *catstr = new char[(strlen(str1) +...
  2. JasonUMD

    Acc97: End user printer control / compacting impossible?

    I'd like to add this functionality into my project, but it seems impossible. It's a split database (DB_FRONT.mdb & DB_DATA.mdb) 1. End-user printer selection: There are 3 categories of reports. I would like the user to be able to view a list of printers, and select a printer for each...
  3. JasonUMD

    Finding out who called the form.

    I have a button on one form that, when clicked, closes the current form and opens a second form. When that second form is closed, I want to reopen the first form. (When I was leaving the first form open I was getting strange results, since the 2nd form will be editing information on the first...

Part and Inventory Search

Back
Top