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) +...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.