Search found 60 matches

by agb2008
Fri Jul 29, 2016 10:46 am
Forum: General Discussion
Topic: Anti-cracking protection for my PureBasic EXE application?
Replies: 32
Views: 20400

Re: Anti-cracking protection for my PureBasic EXE applicatio

Thorium , Dude :

Unfortunately I can't agree that there is no sense to protect your application. Indeed it would be quite costly but still you could get result
out of this procedure. As for comment regarding providing incorrect results if cracked - well, that probably depends on the area where ...
by agb2008
Wed Jul 27, 2016 11:13 am
Forum: General Discussion
Topic: Anti-cracking protection for my PureBasic EXE application?
Replies: 32
Views: 20400

Re: Anti-cracking protection for my PureBasic EXE applicatio

Dude :

I never said that it would make ones application totally unbreakable. I said that protection level it provide is way above average.
Also I've mention that it's a good idea to combine different protection methods. Code Virtualizer provide powerful code obfuscation
system, Themida technology ...
by agb2008
Tue Jul 26, 2016 1:44 pm
Forum: General Discussion
Topic: Anti-cracking protection for my PureBasic EXE application?
Replies: 32
Views: 20400

Re: Anti-cracking protection for my PureBasic EXE applicatio

Just to add my 5¢ to the subject. I've done quite substantial checking on available software protection
systems available on the market for Windows platform (and as well considering multiplatform solutions)
and the most reasonable choice (for me) was WinLicense + CodeVirtualizer (from Oreans ...
by agb2008
Fri Jul 01, 2016 6:44 am
Forum: General Discussion
Topic: IUP GUI toolkit and IM / CD libraries (by TECGRAF)
Replies: 3
Views: 3514

Re: IUP GUI toolkit and IM / CD libraries (by TECGRAF)

New 3.19 version of IUP libraries now available for download from project web site:

http://iup.sourceforge.net/

Quite important note: a number of controls, headers and functions that were depreciated
removed in this version !

I would try to update PureBasic definitions to reflect these changes ...
by agb2008
Tue Jun 28, 2016 7:02 pm
Forum: General Discussion
Topic: IUP GUI toolkit and IM / CD libraries (by TECGRAF)
Replies: 3
Views: 3514

Re: IUP GUI toolkit and IM / CD libraries (by TECGRAF)

I've compiled IUP, IM and CD toolkit libraries on Linux 32/64 patform and recompiled
demo IUP samples that previously were built using these toolkits and PureBasic on
Windows 64 bit OS. Of cause there were quite simple basic aplications - but, to my
surprise they were compiled almost without any ...
by agb2008
Mon Jun 27, 2016 7:48 am
Forum: General Discussion
Topic: Alternative GUI libraries with PureBasic ?
Replies: 34
Views: 15493

Re: Alternative GUI libraries with PureBasic ?

hallodri:

I've posted few additional notes in a separate forum section: http://www.purebasic.fr/english/viewtop ... 30#p490330

It seems that IupSetStrAttribute function could be used instead of IupSetAttribute for UNICODE (UTF-8) strings.
by agb2008
Mon Jun 27, 2016 7:42 am
Forum: General Discussion
Topic: IUP GUI toolkit and IM / CD libraries (by TECGRAF)
Replies: 3
Views: 3514

Re: IUP GUI toolkit and IM / CD libraries (by TECGRAF)

To be able to use UNICODE (UTF-8) string with IUP toolkit, one must set following Global values
just after toolkit initialization with IupOpen() function:

IupSetGlobal("UTF8MODE","YES")

Also, as suggested by hallodri , following additional setting could be set:

IupSetGlobal("UTF8AUTOCONVERT ...
by agb2008
Fri Jun 24, 2016 12:21 pm
Forum: General Discussion
Topic: Alternative GUI libraries with PureBasic ?
Replies: 34
Views: 15493

Re: Alternative GUI libraries with PureBasic ?

hallodri :

Thank you again ! Your solution works and solves issue that i mentioned.
I still do not understand why IupSetAttribute function works for IupVBox / IupCBox
container types and the same function just does not work for IupFileDlg

BTW - I've contacted developers of IUP toolkit and ...
by agb2008
Thu Jun 23, 2016 1:42 pm
Forum: General Discussion
Topic: Alternative GUI libraries with PureBasic ?
Replies: 34
Views: 15493

Re: Alternative GUI libraries with PureBasic ?

Playing around with IUP library I could confirm that in most cases to get UTF-8 strings working one would have to set

IupSetGlobal("UTF8MODE",YES")

just after primary IUP toolkit initialization function:

IupOpen()

But... I was unable to get UTF8 strings working for example with IupFileDlg ...
by agb2008
Wed Jun 22, 2016 9:23 am
Forum: General Discussion
Topic: Alternative GUI libraries with PureBasic ?
Replies: 34
Views: 15493

Re: Alternative GUI libraries with PureBasic ?

hallodri :

A bit strange... If I use IupSetAttribute function to set TITLE value before calling IupShowXY - then it's not working correctly...
But if I do exactly the same, but after calling IupShowXY - it worked with both ASCII and UNICODE strings ! :D

I also tried to use IupSetAttributes ...
by agb2008
Wed Jun 22, 2016 7:30 am
Forum: General Discussion
Topic: Alternative GUI libraries with PureBasic ?
Replies: 34
Views: 15493

Re: Alternative GUI libraries with PureBasic ?

hallodri :

Thanks for suggestion. Unfortunately, in my case it's not working for main application window title. For non-unicode case (using older bindings that you suggested) I could set window title - but only in ASCII and as well only if I compile application in non-unicode mode. :?

P.S. I've ...
by agb2008
Wed Jun 22, 2016 7:21 am
Forum: General Discussion
Topic: IUP GUI toolkit and IM / CD libraries (by TECGRAF)
Replies: 3
Views: 3514

IUP GUI toolkit and IM / CD libraries (by TECGRAF)

IUP is a multi-platform toolkit for building graphical user interfaces. It offers a simple API in three basic languages: C, Lua and LED. IUP's purpose is to allow a program source code to be compiled in different systems without any modification. Its main advantages are:

- high performance, due to ...
by agb2008
Tue Jun 21, 2016 7:03 am
Forum: General Discussion
Topic: Alternative GUI libraries with PureBasic ?
Replies: 34
Views: 15493

Re: Alternative GUI libraries with PureBasic ?

hallodri :

I am using examples that you actually provided with small changes:

iuplib_demo.pb:
PrototypeC Icallback(*ih.Integer)

ImportC "iup.lib"
IupOpen()
IupMainLoop()
IupClose()
IupButton(title.p-utf8, action.p-utf8)
IupCbox(*handle, a=0, b=0, c=0) ;(...)
IupSetAttribute(*handle, name ...
by agb2008
Mon Jun 20, 2016 9:40 am
Forum: General Discussion
Topic: Alternative GUI libraries with PureBasic ?
Replies: 34
Views: 15493

Re: Alternative GUI libraries with PureBasic ?

HanPBH :

I was able to use UNICODE strings for some of IUP controls by setting global variable "UTF8MODE" to "YES" and as well
adjusting definitions of functions that I am calling from .dll shared libraries (right now only tests were done on Windows platform
but I plan to test on Linux as well ...
by agb2008
Sun Jun 19, 2016 11:30 am
Forum: General Discussion
Topic: Alternative GUI libraries with PureBasic ?
Replies: 34
Views: 15493

Re: Alternative GUI libraries with PureBasic ?

I've done some additional tests with IUP libraries over the weekend - overall I like solutions that they propose,
but got following "new" issue (that was probably already mentioned):

If I use pb solution made for 3.7 version of IUP libs with modern version of 3.18 IUP libs - all samples works fine ...