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 gkittelson 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. lloydie2

    VCL not found problem

    I am having a problem compiling a package. I have the following instructions 5. Unzip tntUnicode.zip from the Exodus\Exodus\Components directory. 6. Open Exodus\Exodus\Components\tntUnicode\Packages\BDS4\TntUnicodeVCL_Design.bdsproj 7. From the Project Manager, Right click, and select Install...
  2. lloydie2

    Help with Threads

    Thanks Glenn9999. I think I have the create(false) covered. I have managed to track down the offending thread. If I open my app and send some data to it, all seems to be fine. The problem I have is if I open the App and then close it without sending data. For some reason the very first thread...
  3. lloydie2

    Help with Threads

    Doh. Wrong Database name! I am still have a few problems when I close the app. I suspect I am opening a thread but not closing all the threads which are open. Do I need to force 'terminate'? Do I need to create a destructor for each thread?
  4. lloydie2

    Help with Threads

    I am having my first foray into using threads, but I am coming unstuck when trying to use sql in one of the threads. I suspect That I am not creating an instance of the database connection. Also I think I am also have a problem destroying the threads when I close the App. Can you Help? Main...
  5. lloydie2

    newbie console app question

    OK I got the following working in a fashion. I get a connection the data is processed, but if I disconnect and try and connect again a socket is not available. What do I do now? ======================== begin sock:=TTCPBlockSocket.create; with sock do begin CreateSocket...
  6. lloydie2

    newbie console app question

    I am trying to develop a console app which listens for information on a network (using synapse) and put's it into a database. I am having difficulty get the app to stay open and listen for traffic. I have tried using the echo demo. I have tried adding 'readln' but I still can not get 'echo' to...
  7. lloydie2

    Split CSV Procedure problem

    Don't worry, I re-wrote the function and all is OK.
  8. lloydie2

    Split CSV Procedure problem

    I have a procedure which I used in an old DLL, which is now causing me a little grief. I suspect it is the way I am using it or I may need to change it to a function. Code:================================================ {***************************************************** Split Data...
  9. lloydie2

    Using Hipath as Dealer Board

    Do you think the siemens can cater for 6-12 dealer turrets, maybe going upto 24?
  10. lloydie2

    Using Hipath as Dealer Board

    I have a customer how wishes to use a telephone system as a dealer Board. They require that they have 12 keys programmed with external numbers against each. They can then dial and toggle between these calls by press they programmed keys. Is this possible on Hipath 3000?
  11. lloydie2

    SOPHO IPC100

    Some documents here http://www.idealcomms.com/faq/phlipsipcphone_help.php
  12. lloydie2

    Installing Library

    I am having a problem installing a library in delphi 2006. I am following the instructions below as best as possible but it does not seem to work. All is OK in D6. Any ideas? Instructions--------------------------- Firstly, make sure that the Diva component API is registered in your Delphi...
  13. lloydie2

    Service with seperate GUI app

    Thanks guys. I was kind of going the sockets route anyway but I just wanted to check that there was not some thing obvious I was missing.
  14. lloydie2

    Service with seperate GUI app

    I wish to write an service app with a seperate gui. I am not sure really where to start. The thing I am relly stuck on is showing the realtime information provided to the service in the seperate GUI app. Any Ideas on how I should go about this?
  15. lloydie2

    list index out of bounds (63) problem

    There were plenty of bugs, but it's all sorted out now.
  16. lloydie2

    list index out of bounds (63) problem

    Zathras, I managed to sort that out earlier, but thanks for the info. Lloydie T
  17. lloydie2

    list index out of bounds (63) problem

    Whosrdaddy, thanks for your reply. I mamanged to sus it out. for some reason 'for i := 0 to sl.count - 1 do' was going beyond the end of the file. I managed to sort it by doing 'for i := 0 to sl.count - 2 do' Does'nt make any sense to me, but it's working (in a fashion).
  18. lloydie2

    list index out of bounds (63) problem

    I am trying to import some text on multiple lines into my app and then process in a function (ProcessSearch2), But I get any error as soon as I start the import which reads 'list index out of bounds (63) problem' Where am I going wrong in the following? procedure...
  19. lloydie2

    Validate multiple editbox for empty

    Managed to sus it if (editbox1.text ='') or (editbox2.text ='') or (editbox3.text ='')
  20. lloydie2

    Validate multiple editbox for empty

    Simple one for someone. How do I check multiple editboxes to see if the are empty ---------------- if editbox1.text or editbox2.text or editbox3.text then begin showmessage('please fill in required fields'); end; else begin //do something end;

Part and Inventory Search

Back
Top