C# Console App - Task Scheduler - How to Debug? C# console app to monitor a process and its CPU C# Console Application - How to use the timer? C# console application compiles to .dll and not .exe c# console application silently exits C# console application to dll file C# Console Applicat...
Debug your project. Find the place where it crashes and check variables before it.Tuesday, December 15, 2009 4:07 AM ✅Answered | 2 votesHi,Please also check your code, are all the objects and resource released correctly before exiting, such as the memory freeing in destructor, resource ...
More complete and correct information about leaks can be obtained by disabling optimization. Click onProject-Project Options, go toBuilding-Delphi Compiler-Compiling, setCode Generation-OptimizationtofalseandDebugging-Use debug .dcustotrue: If the application is built with the help of the command line...
1) in your IDE, go to"Tools", "Language", "Delphi", "Library":---> choice Linux 64-bit---> add the folder where is the "Release files" to Linux:---> C:\<<FMXLinux-folder>>\lib\Release2) in "Browse Path" add: C:\<<FMXLinux-folder>>\source3) in "Debug DCU Path" add:...
Just make sure that each EXE file you add is a result of the same Delphi project file. In addition to 32-bit, you might have Debug/Release EXEs or an EXE using different conditional compiling. Read more about the platform files.Note! macOS application files have no file extension. For ...
There are books about how to debug in Visual Studio and limited info about how to use Windbg. But these usually just explain how the tool works. The posts on this blog show how to go beyond just using the tool in to how to actually use it to problem sol...
I want people to ask lots of questions, or comment on things that they want to know more about, don’t understand or don’t agree with. The more such comments and questions there are, the more I and others can learn from them. In a perfect world, this wo...
NOTE:Remember to replace the default value (“.”) of Remote Path with one of the values below. Despite having the same name, the providers for Android and iOS are different and located in their respective folders. Debug The debugging process is described in the articleRemote Debug...
sciter-sdk/samples/font-@-awesome/test-fontawesome.htmshows how to use FontAwesome icon font. In your HTML you would need to type, for example,&fa-address-book-o;to insert the icon in your text flow. However, there are some drawbacks in working with icon fonts: ...
Is there any way to know the name of a method I'm currently in? So that: procedure TMyObject.SomeMethod(); begin Writeln('my name is: ' + <hocus pocus>); end; would produce this output: my name is: SomeMethod delphidelphi-7 ...