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...
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...
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?
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...
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...
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...
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...
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?
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...
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?
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).
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...
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;
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.