Forum: C++ Nov 3rd, 2009 |
| Replies: 9 Views: 234 I don't think it is doing what you think it is.
account newAccount(inType1);
newAccount.makeDeposit(ammount);
... |
Forum: C++ Nov 2nd, 2009 |
| Replies: 9 Views: 234 What it is telling you is it can't find a matching function to construct the base class 'account'.
If there is not one, change your checkingAccount constructor to call the correct account... |
Forum: C++ Oct 14th, 2009 |
| Replies: 5 Views: 237 I'm assuming that was a typo?
@Triztian:
Array elements follow each other contiguously in memory.
int arr[2][5] will look like this in memory
0,0 | 0,1 | 0,2 | 0,3 | 0,4 | 1,0 | 1,1 | 1,2... |
Forum: C++ Sep 9th, 2008 |
| Replies: 2 Views: 838 Thank you.
It turns out (after trying the various different exception handling techniques) that the exception was being thrown from another part of the code.
The dll calls the suspect function... |
Forum: C++ Sep 9th, 2008 |
| Replies: 2 Views: 838 Im calling a function in a 3rd party dll. Somewhere down the line it hits an access violation (0xC0000005).
I wrapped the call in a try/catch but it never catches and the runtime pops up the old... |