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 Mike Lewis 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: *

  1. teubenragee

    COM programming with C++ Builder 5

    Try this: Componnents->Install Component Click your source file then build dclusr50.bpk Ok directly add your source file to dclusr50.bpk and install it
  2. teubenragee

    Terminating Application

    My probleme is simple... I Run my Appli, No pb! But when I terminate It, Either by close the Main window or by sending the WM_QUIT signal or by calling the Application->Terminate() function My appli calls a function Application.Free (in Controls.pas) And in this function the GetHandle function...
  3. teubenragee

    Exceptions

    For example, could it come from a TBitmap.SaveToFile(XXXX) in a directory where there is about 1000 or 2000 files? or a memcpy where I copy too much data for the ptr I use? Thank U
  4. teubenragee

    Exceptions

    In my soft, I get sometimes an error messageBox "Exception software exception at address XXXXX" What does it come from?
  5. teubenragee

    TabSheets and Threads

    Ok I've found what was wrong: I had to add a sleep command between The part I display messages, and the part I Return to the waiting function. Thank You
  6. teubenragee

    TabSheets and Threads

    Yes, I have to synchronize it with the main thread to get errors, so there is an event that I wait... When I get it.. I change my int value, I dislay my message and I wait for the next time the event is pulsed
  7. teubenragee

    TabSheets and Threads

    The error is generated by the user: for example a client who has just disconnected... The question I ask to the user is : "Is the link out of order? or will the client reconnect?" Two choices: Wait for the client reconnection or kill the client in the server memory Just after I ask...
  8. teubenragee

    TabSheets and Threads

    I just change an int and enable two buttons for the user answer... (+ changing the active tabsheet) that's all! No exception, no loop, no answer expected... (I've just checked all this)
  9. teubenragee

    TabSheets and Threads

    I've got a PageControl in my main form with 5 TabSheets! One of these is there to acquit errors... Errors are controled by a thread that waits an event. When The event is set The active sheet is errors and messages appear in a Memo, buttons are enabled by the event When an error occurs, all is...
  10. teubenragee

    PLEASE HELP .OFFICE SERVER COMPONENTS

    Lucky man! I had to do it with C++Builder 5
  11. teubenragee

    Events and Wait functions

    Here is a little code: HANDLE hThread; ... hThread=CreateThread(NULL,0,(LPTHREAD_START_ROUTINE)ThreadFunc,(LPVOID) Param,0,ThreadID); ... void ThreadFunc(LPVOID Param) HANDLE hEvent; hEvent=CreateEvent(NULL,FALSE,FALSE,NULL); ResetEvent(hEvent); WaitForSingleObject(hEvent,INFINITE); ... I never...
  12. teubenragee

    Debugging

    What I would like to do is to execute an appli on a Computer and to debug It on another.. of course the two Computers communicate by TCP/IP. It is very important because this appli can execute only on this computer!and I can't install Builder on it. Is there a way to do that?
  13. teubenragee

    Internal Errors

    When I make a project the logical internal errors of the compiler appears, When I Build my project, It disappear (for twice ...) How Can I avoid it? where does it come from?
  14. teubenragee

    Chained lists and int values

    I've created a chained list class, and I use it like a fifo. In it, I put a class with an int inside. But if I push a value in the stack and immediatly I Pop It, the int value has changed (from '3' to '-12..... (don't remember the exact value but I think in Hexa it looks like FFFFFFFF)) why?
  15. teubenragee

    How do you do Redo in BCB5?

    Edition-Redo command or shift+Ctrl+Z
  16. teubenragee

    Multithread Appli

    When I Compile my appli, It works... the first time I execute it. If I Quit my appli, and I restart it, it doesn't work anymore... (Semaphores don't work correctly, drawing functions are called twice instead of once, pointer values change when it wants (not when i decide it), Constant values...
  17. teubenragee

    ControlStyle

    How Should I do to change a ControlStyle property in a CheckBox ( it is a pascal property and in C++ it is not TcontrolStyle type but Controls_8 or smthg like that)
  18. teubenragee

    VCL

    Yes but how do I use them ( those properties are in Pascal and I don't know how to change them
  19. teubenragee

    VCL

    I Use objects in VCL , and there are places in the code where I call the OnClick Event. I d'on't want the object to respond to the mouse click but It must respond to my calls. I want the object to be displayed as if it was enabled. Is there a way to do that? Please answer quick
  20. teubenragee

    CheckBoxes

    Is there a way to disable a checkbox and to display Checkbox caption in black instead of a "3D gray"? Thank you

Part and Inventory Search

Back
Top