Forum: C++ Feb 6th, 2005 |
| Replies: 0 Views: 2,497 I am one of the many people trying to grasp something new in this forum. I come here, because it seems to frequented by C++ experts, who actually try to respond.
I am trying to learn how to... |
Forum: C++ Jan 28th, 2005 |
| Replies: 0 Views: 4,311 I would like to transfer a file from a server to a user for the user to read. I would like to be able to insure that the user can view, but not save or print the file.
I am willing to write a... |
Forum: C++ Jan 22nd, 2005 |
| Replies: 3 Views: 9,055 Thanks again. I did get it working yesterday by coding the functions in-line (right word? - meaning within the body of the class declaration). This response is very much appreciated, as it does... |
Forum: C++ Jan 21st, 2005 |
| Replies: 3 Views: 9,055 I am seeking to learn C++. I am using the complex base class as source for this learning, by trying to adapt it to a template class. I am calling this class "plexmath". My effort follows ,but does... |
Forum: C++ Jan 16th, 2005 |
| Replies: 5 Views: 3,604 -----------------------------------
Thank you!
Is there anyone who can tell me the difference between use of "typename" and "class" in defining a template function? Is there anyway to use the... |
Forum: C++ Jan 15th, 2005 |
| Replies: 5 Views: 3,604 ----------------------
The requested pseudocode would read something like:
From main routine that calls template class function:
...
AnsiString mycat;
mycat = "Persian";... |
Forum: C++ Jan 15th, 2005 |
| Replies: 5 Views: 3,604 I am learning/relearning C/C++. I have created a template class with various working functions. I have a problem when I try to use code that works for a char datatype with an AnsiString.
If I... |
Forum: C++ Jan 12th, 2005 |
| Replies: 6 Views: 6,784 ----------------------------------------------
Many thanks to Mr. Sinkula for all of his assistance with this thread. The content provides valuable insight into the difference between stack... |
Forum: C++ Jan 12th, 2005 |
| Replies: 6 Views: 6,784 -------------------------------------------------------------
THANK YOU. I am now able to create and delete a structure. As for the bigger picture, I had the functions working before I submitted... |
Forum: C++ Jan 12th, 2005 |
| Replies: 6 Views: 6,784 Thank you for the response.
I realize that not using "delete" in reference to the structure does eliminate the problem, but had hoped to learn how to free up memory that might otherwise be used by... |
Forum: C++ Jan 12th, 2005 |
| Replies: 6 Views: 6,784 Hello,
I am learning to use Borland Builder 6.0 (and trying to remember/learn to use C++ after taking a college course in C programming nine years ago). I have created a data structure. When I... |