Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: kai2005
  • Content: Threads
  • Order by date
  1. kai2005

    how large can be the allocation in stack?

    the code like this: int main() { int intArray[10000][10000]; //I got no problem, //but I got problem in run time //now I think the space demand //is too large. //now the question...
  2. kai2005

    how to write a java program, which can excute a jar file

    hi all, I have finished a java program, now someone give me an executable jar file with source code, and want integrate this jar file in my java program. My Idea is I write a JDialog Object as ProgramChooser, which has some some radio button. When someone choosed an item and clicke OK button...
  3. kai2005

    problem with keyword const

    please take a look of this program, how can this be explained? #include <iostream> #include <cstdlib> using namespace std; int main() { const int i=0; int * j=(int*)&i; const int k=0; int * u=(int*)&k; *j+=1; *u+=1; cout<<i<<" "<<*j<<endl; cout<<&i<<" "<<j<<endl...
  4. kai2005

    How to program web-browser?

    Hi all, I want try to write a web-browser, like IE or firefox. But how? Can someone speak something about this? I can C/C++ and java.
  5. kai2005

    how to realise the fullscreen with winapi

    same as subject
  6. kai2005

    how to invoke an exe in a cpp

    I want know, whether it is possible to invoke an exe file in a cpp file. For example, int main() { // some code... // here I want invoke WindowsMediaPlayer // or some other MP3 player // and some code continue... return 0; }

Part and Inventory Search

Back
Top