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 biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by lorenzociripenso

  1. lorenzociripenso

    Getting Back to the Message Loop

    one more thing... you should declare your thread in the same file in which you call it and before!! you call it. you should substitute GameThread or YourThread in my examples with the name of your thread.
  2. lorenzociripenso

    Getting Back to the Message Loop

    I had something similar in my application. I solved assigning the data processing to a working thread. Don't be scared now. You can start your thread in your application with: void CSoccerVisionDlg::OnButtonstart() { AfxBeginThread(YourThread, this); // start thread } Implement the data...
  3. lorenzociripenso

    Cannot add new events to controls in dialog box

    sorry. I know that usually it should create an event or follow it to the source code. but all it does is to open the control properties.
  4. lorenzociripenso

    Cannot add new events to controls in dialog box

    sorry i'm using vc++ 6.0. Though the problem seems to be deeper than that. It seems that there is a missing link between dialog editor and source code... maybe...
  5. lorenzociripenso

    Cannot add new events to controls in dialog box

    Dear All, its me again. i post this new thread, though the problem might also be linked to my previous one. when i open the dialog editor and try to add new events to a control it just does not work. the caption "Events..." in the context menu does not activate. even when i want to...
  6. lorenzociripenso

    .dsp file not loading anymore !!DESPERATE CASE!!

    Hey! I found a solution in an other Forum now. The Out of Memory MessageBox comes from the .clw file. This one seems to get to big and I understood it has something to do with the language settings of my dialogs. better to say, if i don't define the language of my dialogs, they make a mess...
  7. lorenzociripenso

    .dsp file not loading anymore !!DESPERATE CASE!!

    OK. The page size is at 400 MB, should be enough. There is no point in reinstalling VC++ as all the earlier versions of the program still work fine and the error occures also on different computers with different OS. Now I have two suspicions: 1. The dialog editor is overloaded with controls 2...
  8. lorenzociripenso

    .dsp file not loading anymore !!DESPERATE CASE!!

    thanks again. i tried to free some space on the disk. now i have more than one GB free. that should be enough. still the problem persists. i load the recource file and i get a messagebox "out of memory" when i shut down VC++, and try to start again the workspace isn't loading at all...
  9. lorenzociripenso

    .dsp file not loading anymore !!DESPERATE CASE!!

    OK. I have news: I tryed to create a new workspace, by assembling all the files. When i open the resource file "MyProgram.rc" i get the messagebox "Out of Memory". The problem isn't resolved when i restart my computer... THANKS again! Lorenz
  10. lorenzociripenso

    .dsp file not loading anymore !!DESPERATE CASE!!

    Thanks, but i tried that for 5 days...
  11. lorenzociripenso

    .dsp file not loading anymore !!DESPERATE CASE!!

    Dear All, i'm using VC++ to build a machine vision software. the software is build on a dialog based MFC application. I already got it to work smoothly until, last week when I tried to add more functions to one of my dialogs. Suddenly the dialog editor started to make errors. I tried to turn...

Part and Inventory Search

Back
Top