Feeds:
Posts
Comments

Archive for the ‘Delphi tips’ Category

Recently I had a very hard to find bug-problem with closing my application (made in Delphi). It just refused to respond to Windows shutdown messages and prevented Windows to shutdown and restart..
I spent a lot of hours investigating this problem. Initially the first part of the problem, because [...]

Read Full Post »

Lately, I had a simple task to save and load some short strings in file. The quickest and fastest way is to do it with streams (TFileStream or TMemoryStream).
Because in Delphi 2009 string type strings are Unicode so they are also double byte sized than in previous Delphi strings. [...]

Read Full Post »

If you want to show your custom popup menu in your TWebBrowser component I really recommend to you to download a EmbeddedWB component by bsalsa productions ( <http://www.bsalsa.com/product.html> ). It is all the same TWebBowser only more user friendly, with more events and methods, added functionality. By the way, [...]

Read Full Post »

I’ll share some tip on File Creation in Delphi. Some day I had to make a solution to create same file stream a lot times in a cycle and to show it at regular intervals (it was opened in another application). Well, if file is already created and time interval get’s too short, you [...]

Read Full Post »