Kayıtlar

Ağustos, 2018 tarihine ait yayınlar gösteriliyor

Delphi - What does Abort/Break/Exit

Resim
Abort Break Exit FormCreate - 1 FormCreate - 1 FormCreate - 1 MyLoop - 1 MyLoop - 1 MyLoop - 1 MyLoop - 2 MyLoop - 2 MyLoop - 2 MyLoop - 3 FormCreate - 2 FormCreate - 2 Abort Raises a silent exception. Use Abort to escape from an execution path without reporting an error. Abort raises a special "silent exception" ( EAbort ), which operates like any other exception, but does not display an error message to the end user. Abort redirects execution to the end of the last exception block. Break Causes the flow of control to exit a for, while, or repeat statement. The Break procedure causes the flow of control in Delphi code to exit a for, while, or repeat statement and continue at the next statement following the loop statement. A call to Break must be contained in a for, while, or repeat statement; otherwise, the compiler reports an

NuGet Behind Proxy

If you are in a network, which uses proxy, you may get below error while executing commands which uses nuget (like dotnet add package): error: Unable to load the service index for source https://api.nuget.org/v3/index.json. error:   A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond To prevent this error, first be sure that you can execute nuget command in a console. If you get below error, that means nuget.exe does not exists on your computer on it's in another directory. 'nuget.exe' is not recognized as an internal or external command, operable program or batch file. If nuget.exe is in another directory, you can switch that directory with change directory (for ex.:"cd c:\examplenugetdirectory"). If nuget.exe does not exists on your computer, you can install it from this link . Then you can execute below links: nuget.exe