Webgadget strange incident

Just starting out? Need help? Post your questions and find answers here.
Little_man
Enthusiast
Enthusiast
Posts: 143
Joined: Fri Mar 29, 2013 4:55 pm
Location: The Netherland

Webgadget strange incident

Post by Little_man »

I'm using Windows 10 x64, (21H1, operating system 19043.1052)

What to see in the Webgadget:
Version PB 4.61 - x86 Pdf-file is shown.
Version PB 4.61 - x64 Nothing to see (empty).
Version PB 5.11 - x86 Pdf-file is shown.
Version PB 5.11 - x64 Nothing to see (empty).
Version PB 5.70 - x86 Pdf-file is shown.
Version PB 5.70 - x64 Nothing to see (empty).
Version PB 5.72 - x86 Pdf-file is shown.
Version PB 5.72 - x64 Nothing to see (empty).

Code: Select all

OpenWindow(0, 0, 0, 600, 750, "PDF Viewer.", #PB_Window_SystemMenu | #PB_Window_MaximizeGadget | #PB_Window_SizeGadget | #PB_Window_ScreenCentered )
  WebGadget(0, 10, 10, 580, 730, "file://C:\Dump\2021-0516-0001.pdf")

Repeat
  Select WaitWindowEvent()
    Case #PB_Event_CloseWindow
      Quit = 1

    Case #PB_Event_SizeWindow
      ;ResizeGadget(0, 10, 10, WindowWidth(0) - 20, WindowHeight(0) - 20)
  EndSelect
Until Quit = 1
Little_man
Cyllceaux
Enthusiast
Enthusiast
Posts: 458
Joined: Mon Jun 23, 2014 1:18 pm
Contact:

Re: Webgadget strange incident

Post by Cyllceaux »

Do you have a PDF Reader installed, like Foxit or Acrobat? Than it could be only a x86 Installation of it.
Little_man
Enthusiast
Enthusiast
Posts: 143
Joined: Fri Mar 29, 2013 4:55 pm
Location: The Netherland

Re: Webgadget strange incident

Post by Little_man »

Thanks for the information "Cyllceaux".

Little_man
Little_man
Enthusiast
Enthusiast
Posts: 143
Joined: Fri Mar 29, 2013 4:55 pm
Location: The Netherland

Re: Webgadget strange incident

Post by Little_man »

Does anyone have any suggestion to get this working on "x64" and "x86" version.

Little_man
Post Reply