| BB FlashBack SDK: FBLogs | 
| 
 LogWarning Description This event handler is called by the FBEditor and FBRecorder classes when they want to write warning information to a log file. It is also called when the FBLogs::AddWarning method is called. Syntax [C#/C++] [VB.NET] 
 Remarks Use this event handler to write debug information to a log file. Note: calls to the 
 event handlers are asynchronous - your code should use critical sections, 
 semaphores or some other mechanism to ensure that writes to the log file 
 are correctly synchronized. Setting the event handler In the samples below, fbLogSys is an instance of FBLogs, and fbLogSys_LogWarning is your event handling method. See the samples that come with the SDK for more examples. [C#] [VB] [Delphi] [C++ Builder] See Also Using the FBLogs class FBLogs::AddWarning FBLogs::LogError FBLogs::LogInfo FBLogs::Enabled  |