I am having issues using an imported type library in Delphi 2010 and cannot for the life of me get my head around how to fix it.
ive a news server Built on Delphi7, using Indy9 TId开发者_如何学运维TCPServer, and the clients are using TClientSocket from ScktComp for size, and the traffic is encrypted in RC4 (string)
I was looking at the implementation of the TCustomComboBoxEx object since I need to create a custom combo box in delphi and I was triying to get what I needed, when suddenly I came over this piece of
While looking for alternatives to replace GDI, I was trying to test Delphi\'s 2010 TDirect2DCanvas performance in Windows 7.
I just ventured into writing my first socket based programs in Delphi 2010. I tried with Indy, no success, just even writing a simple clie开发者_StackOverflownt and server that could send packets. The
I am trying to compile a Delpho 201开发者_Go百科0 project using the msbuild tool. Unfortunately when firing the command
I created a Delphi 2010 application. It is use by many company in the region from trusted to untrusted users. The application authenticate users with MySQL behind MD5 encrypted password. F开发者_开发技
I\'ve been trying to define a generic, inheritable TSingleton class. Here\'s what I had in progress: TSingleton<RealClass, InheritsFrom : class> = class(InheritsFrom)
I want to show a string like this as a note\'s text: Name: 开发者_如何转开发John It has a bold part and a regular one. Is there a way that I can do this?Yes, using custom drawing (OnCustomDraw, OnCu
I\'m trying to build a generic worker thread in Delphi, one that I can pass a function/procedure (doesn\'t matter) as an argument and let it execute.