Test PB 5.73x64 over Windows11

Windows specific forum
User avatar
minimy
Enthusiast
Enthusiast
Posts: 344
Joined: Mon Jul 08, 2013 8:43 pm

Test PB 5.73x64 over Windows11

Post by minimy »

Hello, idk if this can be intersting for any.. i have installed windows 11 with PB5.73 x64 and work really good at the moment.
I try with canvas, networks, sounds and other things, with result positive, all woork as espected.
We need in PB6 this #PB_OS_Windows_Windows11 :mrgreen:

Personal opinion about 11:
Windows11 is not bad. As allways a lot of programas you never goes to use.
Because all computer now comes with last windows, the option is only one.. if you are programmer, developer, student.. install windows 11 in one machine to test your programas in a real environment..
Whats the next?? Windows 'millenians' (gta included) ? :lol:

PB question under my ignorance: :?
If PB use as webgadget Explorer, PB now use Edge?, because windows 11 have no explorer.
Then why i have the message 'script error' when use javascript?

try the example included and you will see.

Code: Select all

  Procedure NavigationCallback(Gadget, Url$) ;Windows only
    If Url$= "https://www.purebasic.com/news.php" 
      MessageRequester("", "No news today!") 
      ProcedureReturn #False 
    Else 
      ProcedureReturn #True 
    EndIf 
  EndProcedure 
  
  If OpenWindow(0, 0, 0, 600, 300, "WebGadget", #PB_Window_SystemMenu | #PB_Window_ScreenCentered) 
    WebGadget(0, 10, 10, 580, 280, "https://www.purebasic.com") 
    SetGadgetAttribute(0, #PB_Web_NavigationCallback, @NavigationCallback())
    Repeat 
    Until WaitWindowEvent() = #PB_Event_CloseWindow 
  EndIf

Greetings and have nice day!!

I7-10700 1650GTX 16Gb RAM
If translation=Error: reply="Sorry, Im Spanish": Endif
User avatar
STARGÅTE
Addict
Addict
Posts: 2067
Joined: Thu Jan 10, 2008 1:30 pm
Location: Germany, Glienicke
Contact:

Re: Test PB 5.73x64 over Windows11

Post by STARGÅTE »

The WebGadget neither uses the "Internet Explorer" nor "Edge", the WebGadget uses in Windows allways an outdated "Internet Explorer 4.0+ ActiveX Objekt", as it es written in the documentation. The WebGadget is not "connected" to a browser.
PB 6.01 ― Win 10, 21H2 ― Ryzen 9 3900X, 32 GB ― NVIDIA GeForce RTX 3080 ― Vivaldi 6.0 ― www.unionbytes.de
Lizard - Script language for symbolic calculations and moreTypeface - Sprite-based font include/module
User avatar
minimy
Enthusiast
Enthusiast
Posts: 344
Joined: Mon Jul 08, 2013 8:43 pm

Re: Test PB 5.73x64 over Windows11

Post by minimy »

Thanks Stargate, yes is true i was reading it now in my search for a solution. lol.
Then is time for update.

Thanks for help, have nice day!
If translation=Error: reply="Sorry, Im Spanish": Endif
User avatar
mk-soft
Always Here
Always Here
Posts: 5335
Joined: Fri May 12, 2006 6:51 pm
Location: Germany

Re: Test PB 5.73x64 over Windows11

Post by mk-soft »

According to ProcessExplorer, 'ieframe.dll' and 'jscript9.dll' are used.

With windows 10 there is also a script error too.
My Projects ThreadToGUI / OOP-BaseClass / EventDesigner V3
PB v3.30 / v5.75 - OS Mac Mini OSX 10.xx - VM Window Pro / Linux Ubuntu
Downloads on my Webspace / OneDrive
Post Reply