Search found 457 matches

by bbanelli
Sun Aug 19, 2018 1:07 pm
Forum: Linux
Topic: [QT] How to use enumeration in QML?
Replies: 0
Views: 1573

[QT] How to use enumeration in QML?

http://doc.qt.io/qt-5/qml-enumeration.html For backwards compatibility, the enumeration value may also be specified as a string, e.g. "AlignRight". This form is not recommended for new code. This actually works just fine, i.e.: If OpenWindow(0, 0, 0, 322, 205, "qt placeholder", #...
by bbanelli
Mon Jul 23, 2018 10:14 pm
Forum: Announcement
Topic: [Game] Scavenger
Replies: 37
Views: 12961

Re: [Game] Scavenger

Massive respect!!!
by bbanelli
Wed Jul 18, 2018 1:25 pm
Forum: General Discussion
Topic: To Fred and Timo: Can we have a discussion about the future?
Replies: 81
Views: 19156

Re: To Fred and Timo: Can we have a discussion about the fut

Let us think a bit more about it and we will do a special page (on forum or on website) to handle it smoothly. I can definitely agree with this - perhaps even something we would access via our Purebasic members area login, completely without forum. It is a bit... profane to barter like this on foru...
by bbanelli
Tue Jul 17, 2018 10:56 pm
Forum: General Discussion
Topic: To Fred and Timo: Can we have a discussion about the future?
Replies: 81
Views: 19156

Re: To Fred and Timo: Can we have a discussion about the fut

These are features I will donate a new single user license fee (EUR 79) for if they're in the next release of PB: Native support for MariaDB SetMailBodyText() / SetMailBodyHTML() HTTPRequest() (as implemented in SpiderBasic) These offers aren't dependent on each other, I will honour each one indivi...
by bbanelli
Tue Jul 17, 2018 10:17 am
Forum: General Discussion
Topic: To Fred and Timo: Can we have a discussion about the future?
Replies: 81
Views: 19156

Re: To Fred and Timo: Can we have a discussion about the fut

Compiler wise, I don't think we will add a tons a new stuffs, as PureBasic has been created to be a beginner friendly language, and that's our main target . I'm also using other languages (mainly C#) on daily basis, and while I like a lot of features of it (LINQ, Generics, Garbage Collector, Lamba,...
by bbanelli
Sat Jun 16, 2018 7:29 pm
Forum: Tricks 'n' Tips
Topic: Matrix Inversion
Replies: 11
Views: 3959

Re: Matrix Inversion

Is it only me or this seems as an ideal candidate for AVX optimization? Wilbert or other ASM gurus??? :)

Good job doctornash, BTW!
by bbanelli
Thu May 31, 2018 7:33 pm
Forum: Announcement
Topic: PureBasic 5.70 LTS is out !
Replies: 252
Views: 135694

Re: PureBasic 5.70 LTS beta 1 is out !

PB 5.7 b1, tried to recompile PCI-Z, it works without debugger, but when debugger is activated, I get " Procedure stack has been corrupted. " while using AllocateMemory() and some WinAPI calls. Previous stable version of PB works as expected. Team, if you wish, I will gladly share whole so...
by bbanelli
Sun May 13, 2018 7:55 pm
Forum: Announcement
Topic: PureBasic Interface to OpenCV
Replies: 885
Views: 656815

Re: PureBasic Interface to OpenCV

Hi bbanelli, a. See the following post: http://www.purebasic.fr/english/viewtopic.php?p=518127#p518127 Thanks. This version, however, for my language (Croatian) is almost 4 times (~4MB) smaller than latest (~18MB). Obviously there has been tremendous advancement in Tesseract during time... b. Pleas...
by bbanelli
Wed May 09, 2018 12:25 pm
Forum: Announcement
Topic: PureBasic Interface to OpenCV
Replies: 885
Views: 656815

Re: PureBasic Interface to OpenCV

Greetings to all, regarding Tesseract OCR Engine, has anyone managed: a) implement new language file? It crashes when I edit hAPI = TesseractInit(#PSM_AUTO, #OEM_TESSERACT_ONLY, #PB_Compiler_FilePath + "binaries/tesseract/tessdata", "eng", #Null$) with new language file b) read a...
by bbanelli
Wed May 09, 2018 11:50 am
Forum: Coding Questions
Topic: How to detect MenuTitle() event
Replies: 5
Views: 1187

Re: How to detect MenuTitle() event

RSBasic wrote:For Windows:
Bingo! Thanks!
Dude wrote:You mean like this?
My whole life was a lie!

I was utterly unaware that it was possible to create menu item *without* menu title. :face palm:

Thanks for both solutions, guys!
by bbanelli
Wed May 09, 2018 11:36 am
Forum: Coding Questions
Topic: How to detect MenuTitle() event
Replies: 5
Views: 1187

How to detect MenuTitle() event

Greetings, I must be very dumb right now, but is is possible (perhaps even cross-platform) to detect event (left click) on MenuTitle()? If not, Windows procedure would do at the moment... I'd use that for menu entry to exit program from menu, but without unnecessary drop-down from menu title. Thanks...
by bbanelli
Sat May 05, 2018 12:57 pm
Forum: Feature Requests and Wishlists
Topic: Any Plan for PureBasic for other popular platforms
Replies: 13
Views: 3831

Re: Any Plan for PureBasic for other popular platforms

DarkDragon wrote:You can actually write android apps in C++.
Is there any sane and usable tutorial/guide to start such? I really detest Android's Java mess, but would have nothing against trying C++ for some simpler apps...
by bbanelli
Thu Apr 19, 2018 12:53 pm
Forum: Windows
Topic: Sending characters to Olivetti PR2 RS232 dotmatrix printer
Replies: 0
Views: 1413

Sending characters to Olivetti PR2 RS232 dotmatrix printer

Greetings, I have a printer that works in Olivetti PR2 emulation. It is connected to COM4 port on Windows. Following commands work from Windows CLI. set /p x="some text" <nul >\\.\COM4 type somefile.txt >\\.\COM4 Printing works via Print dialogue in PureBasic as well, however... Is there a...