Announcement

Collapse
No announcement yet.

QuickViewer for PB?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • QuickViewer for PB?

    Is there a way to "tap into" the Windows QuickView as seen in
    Win98 Explore? If not, is there another alternative to allow
    the user to view file contents without having to write my own
    viewer?


    ------------------

  • #2
    To run quikview via PB code, one can use SHELL, like:

    SHELL "c:\windows\system\viewers\quikview.exe c:\setuplog.txt"

    The above works in my Win98 system. Not sure where your viewer is.
    It needs a valid filename to start, and you need to know where/if
    users have it installed. Should be possible to find in the Registry,
    if you have a week or two to spend..


    ------------------

    Comment

    Working...
    X