Err Function [Runtime] /text/sbasic/shared/03050200.xhp Sun Microsystems, Inc. converted from old format - fpe
Err function Err Function [Runtime] Returns an error code that identifies the error that occurred during program execution.
Syntax: Err Return value: Integer Parameters: The Err function is used in error-handling routines to determine the error and the corrective action. Example: Sub ExampleError On Error Goto ErrorHandler REM Set up error handler Dim iVar as Integer Dim sVar As String REM Error occurs due to non-existent file iVar = Freefile Open "\file9879.txt" for Input as #iVar Line Input #iVar, sVar Close #iVar Exit Sub ErrorHandler: MsgBox "Error " & Err & ": " & Error$ + chr(13) + "At line : " + Erl + chr(13) + Now , 16 ,"an error occurred" End Sub
istro/collabora/cp-6.2'>distro/collabora/cp-6.2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/uui/source/passwordcontainer.cxx
AgeCommit message (Expand)Author
2016-04-20loplugin:salbool: Automatic rewrite of sal_False/TrueStephan Bergmann
2016-02-09Remove excess newlinesChris Sherlock
2015-11-16use initialiser list for Sequence<OUString>Noel Grandin
2015-11-05use uno::Reference::set method instead of assignmentNoel Grandin
2014-12-18uui: Use appropriate OUString functions on string constantsStephan Bergmann
2014-11-17sal: clean up public headers with include-what-you-useMichael Stahl
2014-06-05uui: remove SAL_THROW macroNoel Grandin
2014-05-19fix-includes.pl: uuiThomas Arnhold
2014-05-02uui: sal_Bool->boolNoel Grandin
2014-02-26cppuhelper: retrofit std::exception into overriding exception specsStephan Bergmann
2014-02-26Remove visual noise from uuiAlexander Wilms