April 12th, 2012 02:48 PM
keang I'll certainly do that. Just getting going (2 days) with assessing Java and eclipse but I like it enough that I should start to tidy up. Hopefully squeaky clean next time, Cheers
April 12th, 2012 01:57 PM
Peter very many thanks for your help. All working now. Clearly I need to read up on my 'static's.
April 12th, 2012 03:13 AM
If anyone can explain the compiler error below I'd be grateful and it would end hours of torment. I'm sure its simple but I can't see it. The highlighted error in Eclipse is in bold (line 25).
...
February 10th, 2012 03:05 AM
February 9th, 2012 04:36 PM
Help. Anyone tell me why this code outputs 7 lines (the last line twice) while the file contains 6 lines?
cout << "read msgfile\n";
ifstream msgfile ("script1.msg");
while...
January 25th, 2012 12:20 PM
Sorry folks (although hopefully it might help someone).
I had an environment issue but now I have embedded an 'ifstream' into an event (a QtSlot).
So I'm guessing I can fully integrate my...
January 25th, 2012 11:35 AM
Hi. I've been looking at Qt to create GUIs and it looks useful.
However I have tens of thousands of lines of C++ that I want to maintain. Can I integrate my C++ classes and code within Qt...
January 24th, 2012 04:26 AM
Tx mlgoff that was it although why any release would not include a basic C++ program is beyond me.
Now both are 2.4.0
Hopefully Qt will prove a little more stable under Linux.
Cheers
January 23rd, 2012 05:52 AM
Just a thought: I loaded Qt on Windows and it offered a project type of "Plain C++" when I entered the 'New Project' dialog.
I load on Linux (Ubuntu) and that option is missing.
seems odd!
January 23rd, 2012 03:41 AM
Quick update
When I loaded all of the Qt stuff and did a few examples it seemed fine. However having run it on Windows7 I am getting issues with flie permissions and directories.
e'g' "cannot...
January 19th, 2012 05:44 AM
Tx Skizmo. On your recommendation I'll give it a serious workout. We're looking at just two developers but even so good multi-version control and bi-access will be a must.
There certainly seems...
January 19th, 2012 04:30 AM
Skizmo tx. Had a look but it seems as much into telephone interfaces and QML as C++ development. But perhaps that's just first appearances.
I wondered if there are any that have specific C++...
January 19th, 2012 03:59 AM
I need to maintain and develop largely C++ software to support a technical solution for multi user application testing. I want to use Ubuntu as the development platform and distribute my developed...
October 24th, 2009 05:13 AM
I need my client side to send a packet (message) to a known ip address. However the target is not aware of it or its purpose.
The packet contains three variables. Thus I say packet as it is very...
October 19th, 2009 12:11 PM
Tx Darwen they look the very thing. And I can get access to them online quite cheap to have a good look.
I note there are many 2005 but hopefully you guys here can help me with any recent changes
October 19th, 2009 06:16 AM
Philip many thanks. I'm now cooking with gas.
I've been looking around for articles on const and casting where I might find some examples. My fat book (Sams Teach Yourself C++) offers a light...
October 19th, 2009 05:39 AM
Tx Alex F
I'm afraid I'm making a meal of this. I do not remember having an issue with scope with this code before but .....
if ( y == 0 ) char *p_s_filename_script =...
October 19th, 2009 03:25 AM
c_progvs ci_progvs(argc, argv);
char *p_s_filename_log = &ci_progvs.m_s_filename_log;
ofstream f_logfile(p_s_filename_log);
The above code worked a while back. I guess my...
October 10th, 2009 03:45 AM
ddeme I think that is where I'm going. Basically the process is as follows:
capture two network traces of a business function (snoop or tcpdump or whatever). An example might be: logon, navigate...
October 7th, 2009 04:11 PM
Tx for the input guys
Ajay I was focussing on the GUI as I need a prototype. The development will be performed overseas, Vietnam favourite at the moment although the beauty competition will be...
October 7th, 2009 10:37 AM
For 17 years I have been load testing transaction based applications using a toolkit developed by my business partner. Having decided it is time to get an exit strategy we have decided to package...
August 7th, 2009 07:13 PM
D_Drmmr many thanks once again.
I thought one must be able to just use an iterator to the list of a class and indeed now I can.
But I'm a bit wary since you recently pointed out that I...
August 7th, 2009 03:43 PM
I have a program I need to change. There is a class which is used as the member of a list. The list is a member of another class. I need to access the list from outside of both classes.
...
August 5th, 2009 11:14 AM
Design?!*? design ???!!! ....(only joking)
Many tx Lindley and indeed D_Drmmr - I would have happily driven into the black hole and soon been lost without your prompt replies.
I...
August 5th, 2009 10:52 AM
D_Drmmr tx but not certain that is true. I've had some success in the last few minutes with
const_cast<string &>(findlocator1->first) = s_mapkey_candidates;
But if you think this is a...