FirstClassトップページ


 ヘルプの目次
このヘルプについて このヘルプについて
 
エンドユーザ向けヘルプ エンドユーザ向けヘルプ
Client Help クライアントヘルプ
Web Help Webアクセスヘルプ
ScreenReader Help スクリーンリーダ
Form フォーム
Synchronization 同期
Definitions 用語
container コンテナ
 
管理者向けヘルプ 管理者向けヘルプ
Administration サーバの管理
Internet Services インターネットサービス
Customization Tools カスタマイズツール(英語)
Administering OTSW OTSWの管理
OTSW Custodian OTSW Custodian
Using FirstClass ED FirstClass ED(英語)
 
バナー:
 
 XOR
 
Purpose
Evaluates whether only one of two expressions is TRUE.
One expression must be TRUE and the other must be FALSE for the XOR result to be TRUE.
Syntax
Expression1 XOR Expression2
Example
Sub Main()
        Dim e1 as Integer, e2 as Integer
        e1 = TRUE: e2 = 5 < 34
If e1 XOR e2 Then
                Print "Only one expression, e1 or e2, is TRUE"
        Else
                Print "Both e1 and e2 are TRUE or Both e1 and e2 are FALSE"
        End If
End Sub

 

Copyright(C) 2002-2011 FC Management Co. All Rights Reserved