Forum: C++
Sep 23rd, 2007, 9:13 PM
|
|
Replies: 9
Views: 337
|
Forum: C++
Sep 2nd, 2007, 9:37 AM
|
|
Replies: 3
Views: 169
|
Forum: C++
Aug 16th, 2007, 7:57 PM
|
|
Replies: 6
Views: 209
|
Forum: C++
Aug 14th, 2007, 10:06 PM
|
|
Replies: 6
Views: 209
|
Forum: C++
Aug 14th, 2007, 9:00 PM
|
|
Replies: 6
Views: 209
template specialization problem
Hello
I would like to do:
Code:
std::list<some_templated_class> _list;
_list.push_back(some_templated_class<some_object>(arguments));
but my compiler wont allow me to compile this. I get error:
|
Forum: C++
Jul 19th, 2007, 4:24 PM
|
|
Replies: 4
Views: 151
|
Forum: C++
Jul 17th, 2007, 8:44 PM
|
|
Replies: 8
Views: 255
|
Forum: C++
Jul 17th, 2007, 3:07 PM
|
|
Replies: 8
Views: 255
|
Forum: C++
Jul 16th, 2007, 4:05 PM
|
|
Replies: 8
Views: 255
programming design
Hello
I have a programming design question..
Lets say I have 3 classes like below:
class parser {
};
class user {
};
|
Forum: C++
May 8th, 2007, 4:09 PM
|
|
Replies: 6
Views: 218
|
Forum: C++
May 8th, 2007, 11:03 AM
|
|
Replies: 6
Views: 218
advanced user output
Hello
I want to allow user to use advanced output feature with my application. In other words I want to have some simple scripting language inside c++ application so that user could call c++...
|
Forum: C++
Apr 8th, 2007, 8:01 AM
|
|
Replies: 7
Views: 217
|
Forum: C++
Mar 28th, 2007, 9:05 AM
|
|
Replies: 5
Views: 137
MSVC question
Hello..
I'm working on a solution that has 2 applications that depend each on another. (2 programs)
What I want to do is a multiproject inside a solution (more projects). Im unsure how to do this -...
|
Forum: C#
Mar 23rd, 2007, 3:45 AM
|
|
Replies: 4
Views: 193
Hey guys
Heres the command being...
Hey guys
Heres the command being built:
cmdUpdateReturn = new OleDbCommand("UPDATE tblBarrowed SET DateRetured =@getDateRetured, DelayedDays =@getDelayedDays, Fines =@getFines, Notes =@getNotes,...
|
Forum: C#
Mar 19th, 2007, 1:02 PM
|
|
Replies: 4
Views: 193
sql query
Hello..
I use a class OleDbCommand
When my program calls cmdUpdateReturn.ExecuteNonQuery(); program crashes.
cmdUpdateReturn is an object of OleDbCommand.
How can I print sql query string before...
|
Forum: C#
Mar 19th, 2007, 1:01 PM
|
|
Replies: 4
Views: 227
|
Forum: C#
Mar 17th, 2007, 8:29 AM
|
|
Replies: 4
Views: 227
management system problem
Hello..
Im in urgent net to compile some Libary Management System written in .NET.
The code seems very good, but I'm facing some problems I cannot solve/figure out myself, because I dont have any...
|
Forum: C#
Mar 16th, 2007, 4:21 PM
|
|
Replies: 2
Views: 119
newbie question - compiling
Hello..
What do I need to compile .NET project?
Can I do it with MSVC 2005?
If no, what would you recomment? MSVC .NET?
|
Forum: C++
Mar 13th, 2007, 5:11 PM
|
|
Replies: 6
Views: 177
|
Forum: C++
Mar 13th, 2007, 4:10 PM
|
|
Replies: 6
Views: 177
|
Forum: C++
Mar 13th, 2007, 3:48 PM
|
|
Replies: 6
Views: 177
large file reading optimization
I'm working on a code that should be able to read text file on the fastest way..
As some of you recommented its the best to use read() instead of getline() and open text file in a binary mode..
I...
|
Forum: C++
Mar 7th, 2007, 7:25 AM
|
|
Replies: 3
Views: 124
Hey Grumpy!
Thanks for your reply!
I noticed...
Hey Grumpy!
Thanks for your reply!
I noticed most of the professional programs (even boost libaries) dont care about that.. They just use std::string instead.. Even stl exceptions (for instance...
|
Forum: C++
Mar 6th, 2007, 6:22 AM
|
|
Replies: 3
Views: 124
exception object and its members
Hello..
I read its not good to have members like std::string inside exception class, because if their creation fails it could lead to program termination.
I need to inform user/me about program...
|
Forum: C++
Mar 3rd, 2007, 4:04 PM
|
|
Replies: 2
Views: 183
exception handling
Hello..
I have some questions about exception handling in c++..
I know its the best to throw object when exception occurs and I wonder what is the best way to do this.
I was thinking about deriving...
|