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 TouchToneTommy 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. edgarasm

    Only one SELECT to retrive data into output variables

    I would like to know whether or not there is a way to execute an unique SELECT and get the results into the respective output variables I have created? PROCEDURE [DETALHES_DIVULGADO] @ID_DIV INT, @TURMA_FK SMALLINT OUTPUT, @PERIODO_FK INT OUTPUT, @PROFESSOR VARCHAR(60) OUTPUT, @MONITORES...
  2. edgarasm

    adding an interface to a component?

    please, look down my code and see whether is possible or not to do this. IControleServico = interface ['{A76DC1D9-2737-4A94-91F2-ECFF002EE82A}'] procedure AddNovoCliente(pSession_ID:String); end; TListViewClient = class(TListView, IControleServico) private { Private declarations }...
  3. edgarasm

    How can I block a singular register?

    How can I block a singular register? When using begin transaction, it already blocked my register? thanks in advance for any help!
  4. edgarasm

    what is the difference from varchar...

    Hi, what is the difference from varchar to nvarchar and text to ntext beyond length? What situation should I use one or another? thanks very much for any explanation! regards
  5. edgarasm

    TRTLCriticalSection works...?

    Hi, TRTLCriticalSection works only if I am using it into a thread? thanks in advance!
  6. edgarasm

    Threads connection

    Hi, I have a program client using a TClientSocket to connect to a program server using TServerSocket. In the program Server I am working with threading blocking. When a client connect to the server program, the server program creates a new thread connection. The thread continues to exist...
  7. edgarasm

    Hello Im trying to build a client

    Hello Im trying to build a client/server application in delphi where the server is capable of handling thousands of concurrent connections. I would like to know if using multi-threaded blocking sockets would have a performance increase over using a single-thread nonblocking server. thanks for...
  8. edgarasm

    How to use GetClientThread?

    how can I realize wich connection send me a data, to response only to that connection. I´d try with GetClientThread... and others, but I don´t really understand how they works... regards
  9. edgarasm

    UDP or TCP?

    i am trying to develop a chat application and i am trying to learn how to work with sockets (indy). What protocol is more suitable for my application, udp or tcp? Could someone give me some hint? thanks in advance for any helpfull information.
  10. edgarasm

    what number of port?

    1. i am trying to develop a chat program and i am straining my mind to figure out exactly what a number of port is? Could i use any number of port to connect two or more computers? 2. what about UDP/TCP? what i should use to develop such program? Thanks in advance for any hint!
  11. edgarasm

    helding more than 255 characters

    Hi, what I could do to held more than 255 characters in a variable?
  12. edgarasm

    what is the potential of automation object?

    ok I got your point of view, but my question has no answer so far. I am gone try one more time. Using automation object, could I have a server application running and many clients in differents machines running a client application and these clients having access to the server application...
  13. edgarasm

    what is the potential of automation object?

    for instance, using automation object, could I have a server application running and many clients in differents machines running a client application and these clients having access to the server application? isn't it a problem?
  14. edgarasm

    what is the potential of automation object?

    what kind of good application I could develop with automation object? for instance, using automation object, could I have a server application running and many clients in differents machines running a client application and these clients having access to the server application?
  15. edgarasm

    I would like someone could give me a hint

    I had wanted to say that I intended that this program would be able to deal with more than 1000 users in the same time.
  16. edgarasm

    I would like someone could give me a hint

    I am developing a program in delphi to exchange messages between users. This program will be a kind of controller program which is going to be installed in a server computer in order to receive and to send messages for many users. This program will deal with many requests and responses and it...
  17. edgarasm

    I Don't know how to tackle in delphi

    id:=Length(oper)+1; SetLength(oper, id ); oper[Length(oper)-1].id := id-1; oper[Length(oper)-1].group:=0; oper[Length(oper)-1].msg:=''; I have a problem that I Don't know how to tackle in delphi. Many programs, connected to a main program, will execute this peace of code above in order to be...
  18. edgarasm

    redefining array length

    I need to know if redefining array length with SetLength is always a bad ideia or in some cases it would be more efficient than using dynamic struct with pointers etc...
  19. edgarasm

    What data type to use?

    you asked me how much is a lot. How about a big text with much more than 8000 characters? If you have some suggestion, thanks in advance!
  20. edgarasm

    What data type to use?

    What data type should I use in order to held a lot data. Is there some data type which let me held an ilimited amount of data?

Part and Inventory Search

Back
Top