怎样打开另存窗口

解决方案 »

  1.   

    添加组件Microsoft Common Dialog control 6.0然后添加一个CommonDialog到窗体上dim a as string 
    a = commondialog1.showsave
      

  2.   

    CommonDialog控件
    commondialog1.showsave
      

  3.   

    dim a as string 
    a = commondialog1.showsave    'showsave是方法,可不返回什么的
    dim a as string 
    commondialog1.showsave
    if commondialog1.FileName <>"" then
        msgbox "将要保存的文件名为:" & commondialog1.FileName 
    end if
      

  4.   

    同意   添加组件Microsoft Common Dialog control 6.0
      

  5.   

    添加组件Microsoft Common Dialog control 6.0