Max Lybbert

4,368
Reputation
320 views

Registered User

Name Max Lybbert
Member for 1 year
Seen 9 hours ago
Website
Location Nevada
Age 31
9h
comment Linq to SQL - Security Exception
There are only two ways to fix this: either change the method to not use reflection or grant your process the security clearance necessary to use reflection. The link I provided in the original answer has enough links to other resources detailing how to get the needed security clearance that I'll leave that to you to follow.
Nov
25
revised Seemingly basic C++ question
added 52 characters in body; deleted 66 characters in body
Nov
25
comment Seemingly basic C++ question
Edited, based on final answer by shawnjan
Nov
24
answered Seemingly basic C++ question
Nov
24
answered move c++ program to foreground
Nov
16
answered Programmatically parse and edit C++ Source Files
Nov
14
answered Getting rid of pre-compiled headers
Nov
13
answered Using non-abstract class as base
Nov
13
comment templated class can’t redefine operator[]
Although templates were designed with the intention of being able to put the declaration in the header and the implementation in a .cpp file, in practice that isn't implemented (except by Comeau). Cfront actually had this ability but it's not common anymore ( gcc.gnu.org/onlinedocs/gcc/… ). The main solution is to roll the declaration into the definition and put it in the header.
Nov
13
comment Cross compiler exception handling - Can it be done safely?
GCC used to intentionally generate code that would not link to other compilers specifically because of issues like this. With the de facto standardized ABI an most non-Windows platforms, they've stopped doing that, though.
Nov
13
answered Display message in windows dialogue box using “cout” - C++
Nov
12
comment When should you use an STL other than the one that comes with your compiler?
Yes, necessary but not sufficient.
Nov
10
answered Coding Standards / Coding Best practices in C++
Nov
10
answered When should you use an STL other than the one that comes with your compiler?
Nov
6
answered C++: watch a memory location/install ‘data breakpoint’ from code?
Nov
5
answered What is Perl’s “standard string comparison order”?
Nov
3
answered How can I reclaim memory from perl?
Nov
3
answered How port WaitForMultipleObjects to Java?
Nov
3
answered Linq to SQL - Security Exception
Nov
2
awarded  Organizer
Nov
2
comment here is my code what is wrong with it
There are a few possible problems with this code. For one, the case parts of the switch statement all start with a { but none end with a }. That will prevent the code from compiling. "void main" is not Standard (the Standard is "int main"). Aside from that, there's the chance that the code doesn't do what you want. If you narrow down your question, it will be easier to give you a helpful answer.
Nov
2
revised here is my code what is wrong with it
added 248 characters in body; edited tags
Oct
30
answered C++ boost::thread and automatically locking containers
Oct
26
answered Cleaner pointer arithmetic syntax for manipulation with byte offsets
Oct
23
comment Why can you return from a non-void function without returning a value without producing a compiler error?
@Paul: it means they didn't have a goodeditor. All other languages say "never returns normally" -- i.e., "doesn't return using the normal return mechanism."
Oct
23
answered Vector initializing slower than array…why?
Oct
23
answered What does a C++ compiler do to create an object?
Oct
23
comment How to read the string into a file C++
Thanks. Edited. I used fstream out of habit.
Oct
23
revised How to read the string into a file C++
added 1 characters in body
Oct
22
revised Why does ofstream sometimes create files but can’t write to them?
added 786 characters in body
Oct
22
comment Catching “Stack Overflow” exceptions in recursive C++ functions
I really don't know what happens, although I doubt destructors are run. There is a __finally construct that you can use, a la Java.
Oct
21
answered How to read the string into a file C++
Oct
21
answered C++ valarray vs. vector
Oct
16
revised Catching “Stack Overflow” exceptions in recursive C++ functions
added 94 characters in body
Oct
16
answered Catching “Stack Overflow” exceptions in recursive C++ functions
Oct
16
answered One class with multiple implementation files
Oct
16
answered Why does ofstream sometimes create files but can’t write to them?
Oct
16
comment When are member data constructors called?
@Andrey: Thanks, I had missed that comment when I edited the question for an earlier correction. @Pavel: Thanks for the clarification; I knew default initialization happened in some cases, but I couldn't remember when it didn't happen.
Oct
16
revised When are member data constructors called?
added 692 characters in body; added 104 characters in body
Oct
15
answered When are member data constructors called?
Oct
15
answered Why Access Violation for cout And Stack Overflow for printf
Oct
14
awarded  Good Answer
Oct
9
revised Using a class in a namespace with the same name?
added 554 characters in body
Oct
9
comment Using a class in a namespace with the same name?
Oh well, it's useful in cases where there isn't ambiguity (eg., "using std::cout").
Oct
8
answered Using a class in a namespace with the same name?
Oct
6
comment separating compilation for to avoid recompilation when I add some debugging to .h file
"my application is time sensitive and call_some_function_dummy function will add unnecessary overhead": more overhead than the debugging stuff?
Oct
5
revised C++ copy constructor causing code not to compile ( gcc )
deleted 7 characters in body
Oct
5
comment C++ copy constructor causing code not to compile ( gcc )
Thanks again. I've corrected things.
Oct
5
answered double type digits in C++
Oct
5
comment double type digits in C++
The reference to internal representation is just that the computer thinks in binary binary, not decimal; and all registers are binary, not decimal.