Manage PlItems

You may optionally enter a comparison operator (<, <=, >, >=, <> or =) at the beginning of each of your search values to specify how the comparison should be done.

Advanced Search
Displaying 151-160 of 300 results.
IDPlCodelangPlGroupPlItemTitleCode 
 
115SSRSZahlen/RechnenDIV/0' siehe auch: http://blogs.msdn.com/b/bwelcker/archive/2006/09/26/end-of-amnesia-_2800_avoiding-divide-by-zero-errors_2900_.aspx =IIf(Fields!SecondVal.Value = 0, "0", Fields!FirstVal.Value*100 / IIf(Fields!SecondVal.Value = 0, 1, Fields!SecondVal))View Update Delete
28DelphiProzeduren, Funktionen, MethodenVerarbeitung gezielt beendenprocedure TForm1.Proz(Sender: TObject); begin If 1<>2 Then exit; ShowMessage('Test'); end;View Update Delete
167Bash ScriptProzeduren, Funktionen, MethodenDeklaration einer Funktion/Prozedur#!/bin/sh do_something() { echo $1 echo $2 } do_something "this is my first" " and second argument" # this is my first and second argumentView Update Delete
188PythonProzeduren, Funktionen, MethodenDeklaration einer Funktion/Prozedurdef this_is_my_function_name(param1): print "do something inside the function " + param1 print "do something outside the function" # call the function this_is_my_function_name("hello world") View Update Delete
258PowerShellExceptionsTry Catch Except$DirectoryName = "C:\Temp\rename_test_new" Try { $newDirectoryName = $DirectoryName -replace "_new", "_old" Rename-Item -path $DirectoryName -newName $newDirectoryName } Catch { Write-host "Error. Exit!" Write-Error $_.Exception.Message exit # Wenn das Script hart beendet werden soll, dann kann exit verwendet werden } View Update Delete
26DelphiExceptionsTry Catch Excepttry // Code except // Handle the exception here... end; View Update Delete
160PythonExceptionsTry Catch Excepttry: print 1/0 except Exception as e: print traceback.extract_stack() else: print "this is the else block" finally: print "finally clean up or something"View Update Delete
195PythonExceptionsException auslösenif (a!=b): raise Exception("Not implemented, yet")View Update Delete
214T-SQLExceptionsTry Catch Except-- See also: http://msdn.microsoft.com/de-de/library/ms175976(v=sql.105).aspx -- !! -- TRY-CATCH cannot be used for all operations/situations in T-SQL. -- Be careful and refer to the link above for details -- !! BEGIN TRY SELECT 1/0; END TRY BEGIN CATCH SELECT ERROR_NUMBER() AS ErrorNumber ,ERROR_SEVERITY() AS ErrorSeverity ,ERROR_STATE() AS ErrorState ,ERROR_PROCEDURE() AS ErrorProcedure ,ERROR_LINE() AS ErrorLine ,ERROR_MESSAGE() AS ErrorMessage; END CATCH; View Update Delete
25PHPEmbedded JavaScript SnippetsAlert$msg="Hello"; echo "<script languache=\"JavaScript\">"; echo "alert('$msg')"; echo "</script>";View Update Delete