怎么调用系统的打印机并将表格中的数据打印出来?谢谢!!

解决方案 »

  1.   

    什么表格?
      一般都要自己计算用printer打印的
      

  2.   

    Print Datagrid Using Datagrid and Adodc Controls 
    http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=31485&lngWId=1
      

  3.   


    调用某个指定的打印机:dim a as printer
    for each a in printers
        if a.devicename='XXXXXXX' then
            set printer=a
            exit for
        end if
    next