I just discovered that Firefox removed the 'Disable or replace context menus' checkbox from its OPTIONS panel. They say its and improvement. Mozilla! What the fuck? That was our first defense line against some intrusive web sites.
To get access to this feature type 'about:config' in your address bar then search for this string: dom.event.contextmenu.enabled
Double click the 'value' column to change it from enabled to disabled.
MOZILLA stop screwing around!
You want to do amateur or power-level computing? Then there is no other choice than Windows! Period. As a Windows user you don't have to spend tons of a money for a Mac PC (sorry Mac guys but Mac is nothing else than an expensive PC now) and you don't have to waste time on forums to learn how install stuff. All that Linux/Mac can offer you can get on Windows and get is better. I spent many years working with Linux but it was always only my second choice. Sorry Linux friends, but I said it.
Tuesday, August 27, 2013
Wednesday, August 14, 2013
How to solve the "Cannot load a form that has itself as ancestor" error in Delphi
How to solve the "Cannot load a form that has itself as ancestor" error in Delphi
This is how a new/empty project should look like:
And this how your project probably looks like:
I spent on hour to find the well hidden culprit.
I had a previous problems where Delphi messed up the DPR file (the {$R *.res} declaration).
When do we ever learn?
uses
Forms,
Unit1 in 'Unit1.pas' {Form1};
And this how your project probably looks like:
uses
Forms,
Unit1 in 'Unit1.pas' {Form}; <--------- here="" missing="" span="">--------->
I spent on hour to find the well hidden culprit.
I had a previous problems where Delphi messed up the DPR file (the {$R *.res} declaration).
When do we ever learn?
Subscribe to:
Posts (Atom)