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 Wanet Telecoms Ltd 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

    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...
  2. teubenragee

    Exceptions

    In my soft, I get sometimes an error messageBox "Exception software exception at address XXXXX" What does it come from?
  3. 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...
  4. 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...
  5. 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?
  6. 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?
  7. 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?
  8. 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...
  9. 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)
  10. 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
  11. teubenragee

    CheckBoxes

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

    Help me with Sleep

    I've got a real problem with the Sleep command: The Sleep performs before the trts that are written before in the Same Bloc if (Condition) { trt 1... Sleep(xxxx); trt2.... } The Sleep command performs before 'trt1' What does it come from? What can I do to prevent from...
  13. teubenragee

    Sleep command

    here is a bloc: if (checkbox->checked) { trt... Sleep(xxx); trt... } why does it begin with the sleep command??? How can I prevnet from that?
  14. teubenragee

    HEEEEEEEEEEEEEEEEEEEEEEEELP!

    What could prevent a bit on a IO Board from getting the true value in an OKClick Function? Answer back quick please!!!!
  15. teubenragee

    PLEASE HELP .OFFICE SERVER COMPONENTS

    I want to use Excel server component to Open, Update and save Excel 4.0 File. Please tell me how to do it.... From begining to the end please

Part and Inventory Search

Back
Top