faxstatus.cs

来自「faxcomlib + crystal report」· CS 代码 · 共 34 行

CS
34
字号
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

/// <summary>
/// Summary description for FaxStatus
/// </summary>
/// 
namespace IFS.ReportFax
{
    public class FaxStatus
    {
        public const int SENDER_ERROR = -1;
        public const int SENDER_SENDING = 1;
        public const int SENDER_IDLE = 0;

        public const int FAX_SENT = 2;
        public const int FAX_UNSENT = 3;
        public const int FAX_SENDING = 4;
        public const int FAX_ERROR = 5;

        public const int SERVICE_UNINIT = 6;
        public const int SERVICE_RUNNABLE = 7;
        public const int SERVICE_RECIEVED = 8;
        public const int SERVICE_RUNNABLE_ERROR = 9;
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?