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 strongm 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: cindy13732
  • Content: Threads
  • Order by date
  1. cindy13732

    Timer stops generating events when main program is called

    Borland 6 I want the test executing statement to flash while the test is running. The timer works until the EFCSER_MAIN code is called. Timer1Timer is not called again until it returns from EFCSER_MAIN. Tag initialized to 0, Interval to 1000, and Enabled to true void __fastcall...
  2. cindy13732

    disable/enable tasking functions

    I am translating C code from the VAX environment to the PC using Borland 6. In the VAX code there are 2 functions called TSKLock and TSKUnlock. They are replaced by EnableTasking and DisableTasking in the Borland environment based on #define statements. # if (_UNIX || VXWORKS || VAX) #...
  3. cindy13732

    Display messageDlg box in front

    Borland 6 I have a test that takes a while to run, and have created a MessageDlg to be generated when it is completed. MessageDlg("Execution Time: " + s, mtInformation, TMsgDlgButtons() << mbOK, 0); However, since I am doing other work while it is running, there are windows open on top of...
  4. cindy13732

    borland 6 - header file data not being seen

    My project doesn't seem to set the data correctly that is in a header file. File 1: (x1.h) contains: extern int var1; File 2: (x2.h) contains: var1 = 10; File 3: (y.c) contains" #include "x1.h" #include "x2.h" int var2; var 2 = var1 + 1; Problem: var1 is always 0 Does x2.h need to...
  5. cindy13732

    Borland 6 - application failed - not finding bpl file

    I created a myProg.bpl file in directory A, then created an application in directory B. The application added an entry on the options->packages tab for the bpl. The directory path B is contained in the include and library paths, and was browsed to when entering the .bpl. Everything compiles...

Part and Inventory Search

Back
Top