EMULATE THE PRINT SCREEN COPY BUTTON

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • YERVANT

    EMULATE THE PRINT SCREEN COPY BUTTON

    I would like use the Print Screen Button to copy a part of
    page using ASP.
    En fact, I use a data access page of a chart (pivot)
    created by access.
    And I would like copy only the chart.

    I think the easiest way is to use a Print Screen Button of
    keyboard.

    Some body could help me to found a solution to control
    this button using ASP.

    Thanks for your help.
    Regards.

    Yervant.

  • [ + 2 0 r p 3 ]

    #2
    Re: EMULATE THE PRINT SCREEN COPY BUTTON

    this could be done very easily in a vbs script. havent tried it in asp
    though. of course, this would only work server side, but you could creaet a
    page to asp file to run the vbs script.

    <script language="VBScr ipt">
    dim shell
    set shell = wscript.createo bject("wscript. shell")
    shell.sendkeys "{PRTSC}"
    wscript.sleep 200
    wscript.quit()
    set shell = nothing
    </script>



    "YERVANT" <yervant.mungan @eurocopter.com .mx> wrote in message
    news:209e401c45 971$5c8abff0$a1 01280a@phx.gbl. ..[color=blue]
    > I would like use the Print Screen Button to copy a part of
    > page using ASP.
    > En fact, I use a data access page of a chart (pivot)
    > created by access.
    > And I would like copy only the chart.
    >
    > I think the easiest way is to use a Print Screen Button of
    > keyboard.
    >
    > Some body could help me to found a solution to control
    > this button using ASP.
    >
    > Thanks for your help.
    > Regards.
    >
    > Yervant.
    >[/color]


    Comment

    Working...