zoukankan      html  css  js  c++  java
  • WScript.popup

    Display text in a pop-up message box.

    Syntax
          intButton = objShell.Popup(strText,[nSecondsToWait],[strTitle],[nType]) 
    
    Arguments
    
       objShell       : A WScript.Shell object
    
       strText        : String value containing the text you want to appear
                        in the pop-up message box. 
    
       nSecondsToWait : Maximum length of time to display the pop-up message
                        box (in seconds, Optional, default=infinite)
    
       strTitle       : Title text string, Optional. 
    
       nType          : Type of buttons and icons (Numeric, Optional)
                        These determine how the message box is used. 
    
       IntButton      : Number of the button (Integer value) 
                        This is the value returned when the user OK's the message box. 
    
    The meaning of nType is determined by combining values from the 2 tables below:
    
    Button Types
    
      Value Description 
        0   OK button. 
        1   OK and Cancel buttons. 
        2   Abort, Retry, and Ignore buttons. 
        3   Yes, No, and Cancel buttons. 
        4   Yes and No buttons. 
        5   Retry and Cancel buttons. 
       
    Icon Types
       
       Value Description 
        16  "Stop Mark" icon. 
        32  "Question Mark" icon. 
        48  "Exclamation Mark" icon. 
        64  "Information Mark" icon. 
    
    Possible values for IntButton the return value:
    
    Value Description 
       1  OK button 
       2  Cancel button 
       3  Abort button 
       4  Retry button 
       5  Ignore button 
       6  Yes button 
       7  No button
    
    If the user does not click a button before nSecondsToWait
    intButton is set to -1. 
             
    Example
    
    Set objShell = Wscript.CreateObject("Wscript.Shell")
    objShell.Popup "Click me Quick!",, "My Popup Dialogue box"
  • 相关阅读:
    2019 SDN上机第2次作业
    2019 SDN上机第1次作业
    第07组 团队Git现场编程实战
    第二次结对编程作业
    c语言之问题集
    2019春第2次课程设计实验安排
    2019年十二周总结
    第十一周总结
    第十周作业
    第九周总结
  • 原文地址:https://www.cnblogs.com/feiyucha/p/11266637.html
Copyright © 2011-2022 走看看