Forum: C++ Aug 27th, 2008 |
| Replies: 11 Views: 2,485 You could check this out. link (http://www.governmentsecurity.org/archive/t3669.html) |
Forum: C++ Aug 27th, 2008 |
| Replies: 11 Views: 2,485 You want one? You can find it here (http://www.google.com/). |
Forum: C++ Aug 26th, 2008 |
| Replies: 2 Views: 1,350 #include <iostream>
using namespace std;
int main(){
cout << "This program will self destruct if you will press enter." << endl;
return 0;
} |
Forum: C++ Aug 22nd, 2008 |
| Replies: 8 Views: 742 Check this one out. This one is a demo made by one of the members here.
http://www.daniweb.com/code/snippet171.html |
Forum: C++ Aug 22nd, 2008 |
| Replies: 8 Views: 606 I think that would be impossible. :) And I think the mods can't do it too. |
Forum: C++ Aug 22nd, 2008 |
| Replies: 8 Views: 606 iamthwee's much more reliable, with the exit and the d-while loop :) |
Forum: C++ Aug 22nd, 2008 |
| Replies: 8 Views: 606 I think it closes because of the break; after the loops.
I've edited a bit in your code.
#include <iostream>
#include <stdio.h>
using namespace std; |
Forum: C++ Aug 22nd, 2008 |
| Replies: 2 Views: 680 You can check this out too.
link (http://www.mochima.com/tutorials/vectors.html)
The interface would be easy. So I think you should start on how to manipulate your input and present your... |
Forum: C++ Aug 22nd, 2008 |
| Replies: 2 Views: 680 I think you should start with getting the input and producing the output as a file by studying this:
input/output (http://www.cplusplus.com/doc/tutorial/files.html)
Then you can do the sorting by... |
Forum: C++ Aug 22nd, 2008 |
| Replies: 11 Views: 1,163 Or if you mean this one:
link (http://ph.answers.yahoo.com/question/index?qid=20080314121307AAG2qcC)
I googled your problem. Maybe this should give you an idea. |
Forum: C++ Aug 22nd, 2008 |
| Replies: 8 Views: 606 I think you should give more details about your problem. Have you started to write your code even just the main function? What menu?
show menu
if i pick one menu
... |
Forum: C++ Aug 21st, 2008 |
| Replies: 6 Views: 600 And of course, int main returns an exit code. For good coding practice. :)
#include <iostream>
using namespace std;
int count,a[2][2]={0,2,2,3}; //primary matrix |
Forum: C++ Aug 21st, 2008 |
| Replies: 2 Views: 754 I have solved the problem. I transferred FreeLibrary function in my exit function and transferred my initializationof pSampleFunc to OnInit function. :) |
Forum: C++ Aug 21st, 2008 |
| Replies: 6 Views: 600 You have to. :) It's a challenge. All you need is a little motivation, Google and peanuts. *tap at the back* |
Forum: C++ Aug 21st, 2008 |
| Replies: 2 Views: 754 Hello there! I'm currently doing some VC++ programming. I'm using MFC programming and DLL which is explicitly linked. I have placed my initialization and the usage of GetProcAdress inside my... |
Forum: C++ Aug 21st, 2008 |
| Replies: 2 Views: 499 It works perfectly fine now! Thanks :) |
Forum: C++ Aug 21st, 2008 |
| Replies: 2 Views: 499 Hello there. I'm a bit new to creating DLL's. I've been learning a bit and I have created my own (finally). Well, my goal is to load my DLL to an application in VC++ and VB. I have successfully... |