imagenetics
Programmer
I've build an application that DOESN'T do anything with the registry, it hasn't even "Registry.hpp" included. However, when I execute this program, a registry key "frmNewCustomSize" is being created under HKEY_CURRENT_USER\Software. The key includes string value of screen resolution (my app indeed resizes its window to fit current resolution), and DWORD values named "Top" and "Left". It's strange because, as I said, there's no registry acces in my code and even the form is not named "frmNew".
But I programmed the main form in OnCreate to
Top = 0;
Left = 0;
Width = Screen->Width;
Height = Screen->Height;
What's going on?!
But I programmed the main form in OnCreate to
Top = 0;
Left = 0;
Width = Screen->Width;
Height = Screen->Height;
What's going on?!