‘cannot find or open the pdb file’ Visual Studio C++ 2013

Try go to Tools->Options->Debugging->Symbols and select checkbox “Microsoft Symbol Servers”, Visual Studio will download PDBs automatically. PDB is a debug information file used by Visual Studio. These are system DLLs, which you don’t have debug symbols for.[…] See Cannot find or open the PDB file in Visual Studio C++ 2010

How can I “unuse” a namespace?

Nope. But there’s a potential solution: if you enclose your include directive in a namespace of its own, like this… namespace codegear { #include “codegear_header.h” } // namespace codegear …then the effects of any using directives within that header are neutralized. That might be problematic in some cases. That’s why every C++ style guide strongly … Read more

How to create “No Activate” form in Firemonkey

It is possible using NSPanel with NSNonactivatingPanelMask flag. The NSView of fmx form should become child of NSPanel. I have written a helper class which works for both Windows and Mac platforms (Works on XE4): unit NoActivateForm; interface uses Fmx.Forms, Fmx.Types {$IFDEF POSIX} , Macapi.AppKit {$ENDIF} ; type TNoActivateForm = class private form: TForm; {$IFDEF … Read more