Search found 118 matches

by Mike Yurgalavage
Fri Sep 11, 2020 11:15 pm
Forum: General Discussion
Topic: Webview2 control - Chromium browser for Purebasic (Windows) [Jan 1, 2024]
Replies: 181
Views: 98919

Re: Webview2 control - Chromium browser for Purebasic (Windo

Just wanted to post here a sincere thanks for taking up this project and posting it.

I tested the examples and they all work here fine.

I have been looking for something like this for quite some time. THANK YOU!
by Mike Yurgalavage
Thu Jun 25, 2020 1:18 am
Forum: Windows
Topic: Webgadget scrollbars and window colors
Replies: 2
Views: 2084

Re: Webgadget scrollbars and window colors

Kiffi, thanks so much for the reply!

Is there any way to make this stay in place when you load a URL?

For instance to have the orange and yellow scrollbar that you made to be used when loading the page

www.purebasic.com


for instance..

I need to be able to customize the scrollbar of the ...
by Mike Yurgalavage
Wed Jun 24, 2020 6:34 pm
Forum: Windows
Topic: Webgadget scrollbars and window colors
Replies: 2
Views: 2084

Webgadget scrollbars and window colors

Is it possible to change the color of the scrollbars of the webgadget? (without changing all the color scheme of windows theme/os?)

I have a nice app, but the webgadget has windows theme colors for stuff like scrollbars, etc. Is this changeable? What else in the webgadet can be modified color wise ...
by Mike Yurgalavage
Wed Jun 24, 2020 6:32 pm
Forum: Windows
Topic: Use New Edge Browser with Feature Controls in Webgadget?
Replies: 0
Views: 2042

Use New Edge Browser with Feature Controls in Webgadget?

Note here:

https://msdn.microsoft.com/en-us/library/ee330730(v=vs.85).aspx#browser_emulation

And we've used:

[(HKEY_CURRENT_USER or HKEY_LOCAL_MACHINE)\Software\wow6432node\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION]

to set the value for the latest version:

11001 ...
by Mike Yurgalavage
Sun Jun 07, 2020 5:36 pm
Forum: Applications - Feedback and Discussion
Topic: PB.Ex WebGadget (Windows) (WebKit)
Replies: 97
Views: 111185

Re: PB.Ex WebGadget (Windows) (WebKit)

Is anyone successfully using this library in their programs?
For some reason it stopped working for me a while ago (even the example code now silently fails to display the browser control)

No sure what happened to RSBasic, but I'd be willing to take this project over and continue it if I knew his ...
by Mike Yurgalavage
Sun Feb 23, 2020 6:41 pm
Forum: Applications - Feedback and Discussion
Topic: PB.Ex WebGadget (Windows) (WebKit)
Replies: 97
Views: 111185

Re: PB.Ex WebGadget (Windows) (WebKit)

Using actual chrome browser, going to this page:

http://www.html5videoplayer.net/html5video/mp4-h-264-video-test/

You can play the video.

Using that link from within the .pb test program the video cannot be played.

https://html5test.com/

from within the .pb test program, says

H.264 support ...
by Mike Yurgalavage
Wed Apr 03, 2019 3:49 pm
Forum: Windows
Topic: Remove Title Bar completely or be able to color Title Bar
Replies: 1
Views: 2725

Remove Title Bar completely or be able to color Title Bar

Or both?

Look at this code:

Global MainWindow = OpenWindow(#PB_Any, 0, 0, 800, 800, "", #WS_SIZEBOX | #PB_Window_BorderLess |#PB_Window_ScreenCentered )
WindowBounds(MainWindow, 800, 800, 10000, 10000)
SetWindowColor(MainWindow, RGB(1,200,200))

MainLoop:

Repeat
Event = WindowEvent()
If ...
by Mike Yurgalavage
Thu Feb 14, 2019 12:20 am
Forum: Windows
Topic: Get ProgramFilename() info for the .exe, not .dll
Replies: 3
Views: 2536

Re: Get ProgramFilename() info for the .exe, not .dll

Hi Mike Yurgalavage,

Windows Services & Other Stuff
- \Other_Stuff\ProcessStuff\CallingProcess\...

Run the executable and the DLL will report the calling process (path \ executable).

Thanks for reply, got it sorted!

For those interested,

;-GRAB EXE NAME AND DIRECTORY
;{

OpenWindow(1 ...
by Mike Yurgalavage
Thu Feb 14, 2019 12:18 am
Forum: Windows
Topic: Win API call to check if cert is valid?
Replies: 3
Views: 2339

Re: Win API call to check if cert is valid?

JHPJHP wrote:Hi Mike Yurgalavage,

See this post by Thunder93: Verifty Digital Signatures with PB

Alternate method: CryptQueryObject...

Windows Services & Other Stuff
- \Other_Stuff\OtherStuff\CryptQueryObject.pb
Thanks for reply!

Got it sorted

best,
Mike
by Mike Yurgalavage
Thu Feb 14, 2019 12:16 am
Forum: Windows
Topic: How to determine running process that called/ran my program?
Replies: 1
Views: 2467

How to determine running process that called/ran my program?

I have software that uses a launcher .exe, then there is the actual program .exe. I will have certain parameters that do special things if they are sent to my program .exe via the launcher or with launch commands.

At any rate, some of those parameters are only for developers, so if someone were to ...
by Mike Yurgalavage
Tue Feb 05, 2019 11:23 pm
Forum: Windows
Topic: Get ProgramFilename() info for the .exe, not .dll
Replies: 3
Views: 2536

Re: Get ProgramFilename() info for the .exe, not .dll

Another way to ask this, is there a command that can be called from within a .dll to give the path and name of the .exe that the .dll is currently being used in?
by Mike Yurgalavage
Tue Feb 05, 2019 11:16 pm
Forum: Windows
Topic: Get ProgramFilename() info for the .exe, not .dll
Replies: 3
Views: 2536

Get ProgramFilename() info for the .exe, not .dll

If you use ProgramFilename() as a call from a .dll, the .dll and it's directory are the output.

For instance if the program is Test.exe and the .dll in it has the name display.dll, then if a function in the .dll calls ProgramFilename() from within the Test.exe, the output will show display.dll ...
by Mike Yurgalavage
Tue Feb 05, 2019 4:51 pm
Forum: Windows
Topic: Win API call to check if cert is valid?
Replies: 3
Views: 2339

Re: Win API call to check if cert is valid?

I see this (The WinVerifyTrust API):

https://docs.microsoft.com/en-us/window ... -a-pe-file

Is anyone used this api or can translate an example out of this link to info and source code for PB?

best,
Mike
by Mike Yurgalavage
Tue Feb 05, 2019 4:06 pm
Forum: Windows
Topic: Win API call to check if cert is valid?
Replies: 3
Views: 2339

Win API call to check if cert is valid?

Hi guys. To address some of the anti virus false positives that come along with using Purebasic as a programming platform, we've gotten ahold of a certificate and are applying it to our .exe compilations. One of the things that we considered that might be of use with this is that the cert process ...
by Mike Yurgalavage
Sun Jul 01, 2018 1:27 am
Forum: Coding Questions
Topic: Control PC from iPhone.. communicate?
Replies: 4
Views: 1382

Control PC from iPhone.. communicate?

Let's say you had an app on the iphone that if you pressed a specific button, it would send a signal somehow through the network and the PC would detect that you pressed it? This could be used for gaming or remote control of on-screen stuff on the PC. Has anyone dabbled in this? Any ideas how to go ...