Search found 34 matches

by Morty
Thu Aug 26, 2021 12:26 pm
Forum: Announcement
Topic: Chromium WebGadget v4
Replies: 241
Views: 74462

Re: Chromium Edge WebGadget

Hi JHPJHP

Is there an easy way to call a javascript function with parameters and get back a result? I have looked through your codes (even the html/js) and there are too many functions - so I don't get it.

In your PB-code you use the CE_WebGadget_Post function which refers to your website. And in ...
by Morty
Wed May 12, 2021 8:11 am
Forum: General Discussion
Topic: Webview2 control - Chromium browser for Purebasic (Windows) [Jan 1, 2024]
Replies: 181
Views: 86622

Re: Webview2 control - Chromium browser for Purebasic (Windows)

Hi Justin,

thank you very much. That was realy fast. I will give it a try in the next days.

Morty
by Morty
Tue May 11, 2021 12:10 pm
Forum: General Discussion
Topic: Webview2 control - Chromium browser for Purebasic (Windows) [Jan 1, 2024]
Replies: 181
Views: 86622

Re: Webview2 control - Chromium browser for Purebasic (Windows)

Thank you. This is awesome!

So far it works very well, but I have a big problem to place it into ContainerGadgets

I will put the WebViewControll in a Container as part of a SplitGadget in a Container. The initialization is ok, no errors, but the view isn't shown. I've tried with SetParent_ and ...
by Morty
Wed Nov 07, 2018 8:47 am
Forum: General Discussion
Topic: chilkat library users?
Replies: 8
Views: 4004

Re: chilkat library users?

Hi.
I didn't bought a licence yet, but I'm thinking about it (for me it's a lot of money). I've tried serveral things with the IMAP Functions and I'm impressed. Everything runs fine - sometimes the library says, that the demo time is over ... but one or two days later it runs fine again. Good ...
by Morty
Mon Feb 12, 2018 10:00 am
Forum: Announcement
Topic: PureBasic Interface to OpenCV
Replies: 885
Views: 734377

Re: PureBasic Interface to OpenCV

Good morning,

I've send you a few dollars for coffee ;-)

Thank you again and have a nice day.

- Morty
by Morty
Fri Feb 09, 2018 8:43 am
Forum: Announcement
Topic: PureBasic Interface to OpenCV
Replies: 885
Views: 734377

Re: PureBasic Interface to OpenCV

Good morning JHPJHP,

I thank you a thousand times :D With these files it works. I only wonder a bit, because the german files are much smaller than the origin english wone.
Where is the donation button? 8)

- Morty
by Morty
Thu Feb 08, 2018 4:32 pm
Forum: Announcement
Topic: PureBasic Interface to OpenCV
Replies: 885
Views: 734377

Re: PureBasic Interface to OpenCV

Hi JHPJHP,

thanks for these great codes and for your work.

I have a problem with tesseract and german traineddata. I downloaded this file:
https://github.com/tesseract-ocr/tessdata/blob/master/deu.traineddata

After that I copied the file into the folder "binaries\tesseract\tessdata" and ...
by Morty
Mon Oct 19, 2015 3:09 pm
Forum: Announcement
Topic: PureBasic 5.40 LTS final is out !
Replies: 52
Views: 26894

Re: PureBasic 5.40 LTS final is out !

Nice Nice Nice :D
by Morty
Thu Sep 03, 2015 8:44 am
Forum: Announcement
Topic: PureBasic 5.40 LTS beta 10 is out !
Replies: 213
Views: 93174

Re: PureBasic 5.40 LTS beta 1 is out !

Thanks to the team for the great work :D
by Morty
Wed Apr 02, 2014 8:50 am
Forum: Announcement
Topic: PureBasic Interface to OpenCV
Replies: 885
Views: 734377

Re: PureBasic Interface to OpenCV ---- 03/30/14 10:00 AM

Thanks again for your work ... it's amazing to see what you did and how it extends PureBasic. Keep on :D
by Morty
Thu Mar 06, 2014 8:50 am
Forum: Announcement
Topic: PureBasic Interface to OpenCV
Replies: 885
Views: 734377

Re: PureBasic Interface to OpenCV ---- 03/02/14 03:20 PM

For me it's nearly the same.

I'm reading this topic every morning and I'm realy impressed what you did here. It's amazing to see how OpenCV can work togther with PB.
And I also have ideas what to do with this cool and amazing stuff ... but at the moment there is no free time slot for me to start a ...
by Morty
Fri Jun 28, 2013 12:51 pm
Forum: Coding Questions
Topic: Test that a string value has an integer format ?
Replies: 25
Views: 6294

Re: Test that a string value has an integer format ???

Thanks
The Devil is in the details. :) Watch out for leading zeros with "If Str(Val(in_string.s)) = in_string.s"
Yes, that's right. My mistake in search of an easy solution ... BUT!!!
If you want to write the value to an integer database field (for example) it writes it without the leading zero ...
by Morty
Fri Jun 28, 2013 7:12 am
Forum: Coding Questions
Topic: Test that a string value has an integer format ?
Replies: 25
Views: 6294

Re: Test that a string value has an integer format ???

Maybe this is a short solution ... convert it and compare it

Procedure IsInteger(in_string.s)
If Str(Val(in_string.s)) = in_string.s
ProcedureReturn #True
Else
ProcedureReturn #False
EndIf
EndProcedure

Debug IsInteger("2")
Debug IsInteger("-2")
Debug IsInteger("2.56")
Debug IsInteger("asd ...
by Morty
Tue May 22, 2012 4:38 pm
Forum: Announcement
Topic: PureBasic 4.61 final is out !
Replies: 43
Views: 21022

Re: PureBasic 4.61 final is out !

Thanks ... and go on :D
by Morty
Tue Apr 12, 2011 1:09 pm
Forum: Feature Requests and Wishlists
Topic: IDE -> optional reload for Procedures/Macros/Variables ...
Replies: 1
Views: 923

IDE -> optional reload for Procedures/Macros/Variables ...

Hi.

Related to this topic: http://www.purebasic.fr/english/viewtopic.php?f=18&t=45885
It would be really nice to have an option in the settings for disabling the automatic scan for procedures/variables/macros/ ... and so on.
Because slowly it really becomes pain to work width the IDE.

If we have ...