Search found 141 matches

by klaver
Fri Sep 20, 2024 11:32 pm
Forum: Tricks 'n' Tips
Topic: Tesseract — text recognition engine
Replies: 18
Views: 11047

Re: Tesseract — text recognition engine

Lunasole wrote: Sun Jul 24, 2016 10:35 amYou can download it here: http://geocities.ws/lunasole/
Working link: https://lunasole.github.io/data/_extrn/tesseract/l
by klaver
Sun Jun 30, 2013 11:45 pm
Forum: PureFORM & JaPBe
Topic: jaPBe 3.13.4 [IDE for PB 4 and PB 5]
Replies: 1545
Views: 680254

Re: jaPBe 3.13.4 [IDE for PB 4 and PB 5]

Is there a chance for stop using the PEComp?
by klaver
Mon Jun 04, 2012 2:25 pm
Forum: Feature Requests and Wishlists
Topic: SQLite DB encryption
Replies: 15
Views: 4373

Re: SQLite DB encryption

Polo wrote:This looks free: http://sqlcipher.net/
Is here someone who managed to compile it and test with PureBasic?
by klaver
Sun May 13, 2012 11:47 pm
Forum: General Discussion
Topic: GTK+ bindings? (or native support)
Replies: 5
Views: 2797

Re: GTK+ bindings? (or native support)

Is it reasonable to check for this again in the future or should I forget about it? :|
http://gtk-win.sourceforge.net
by klaver
Fri May 06, 2011 4:14 pm
Forum: Coding Questions
Topic: Disabled item in combobox???
Replies: 14
Views: 5049

Re: Disabled item in combobox???

Updated version with few bugs fixed (drawing, PgUp/PgDn, multiple CB support).

Structure MyCB
oldProc.i
prevItm.i
lastKey.i
EndStructure
wc.WNDCLASSEX\cbSize = SizeOf(WNDCLASSEX)
GetClassInfoEx_(GetModuleHandle_(0), @"ComboBox", @wc)
Global *TmpCB.MyCB, *Text=AllocateMemory(128), CBCB = wc ...
by klaver
Sat Feb 05, 2011 8:21 pm
Forum: General Discussion
Topic: GTK+ bindings? (or native support)
Replies: 5
Views: 2797

Re: GTK+ bindings? (or native support)

Ask again in 6 years :lol:
by klaver
Sun May 09, 2010 10:51 am
Forum: Coding Questions
Topic: Cracking methods and how to stop them
Replies: 79
Views: 47750

Re: Cracking methods and how to stop them

SFSxOI wrote:[...] If the IP address changes the hash changes requiring a "hash reset" [...]
[...] If the user gets a brand new computer of course everything is going to be different, but the IP may still be the same [...]
My IP changes about 2 times a day. Ever heard of dynamic IP address?
by klaver
Sat May 08, 2010 3:02 pm
Forum: Coding Questions
Topic: C++ DLL (Visual Studio) open with PureBasic
Replies: 10
Views: 2670

Re: C++ DLL (Visual Studio) open with PureBasic

cas, open the .dll in a HEX editor and replace "_testfunction@4" with "testfunction".
by klaver
Sat May 08, 2010 12:45 pm
Forum: Coding Questions
Topic: Library for creating AVI files?
Replies: 13
Views: 9059

Library for creating AVI files?

Hello, I'm looking for Win32 DLL (or cross-platform) library that will allow me to record movies with sound.
So, for example I will send to that library frames and sound stream, and the lib will make a AVI file for me using a codec (for example XviD or DivX). I want the compression with codec to be ...
by klaver
Wed Mar 10, 2010 2:26 pm
Forum: Coding Questions
Topic: UTF-8: I don't get it...
Replies: 4
Views: 1283

Re: UTF-8: I don't get it...

Thanks, but why are characters converted into UTF-8 incorrectly?
by klaver
Tue Mar 09, 2010 3:13 am
Forum: Coding Questions
Topic: UTF-8: I don't get it...
Replies: 4
Views: 1283

UTF-8: I don't get it...

mem = AllocateMemory(64)
PokeS(mem, "ĄąĆćĘꣳŃńŚśŹźŻż", -1, #PB_UTF8)
For i=0 To 16
Debug Hex(PeekB(mem+i*2) & $FF) +" "+ Hex(PeekB(mem+i*2+1) & $FF)
Next
Debug PeekS(mem, -1, #PB_UTF8)

Debug PeekS(?Start, -1, #PB_UTF8)

DataSection
Start:
Data.b $C4, $84;Ą
Data.b $C4, $85;ą
Data.b $C4, $86;Ć ...
by klaver
Sun Feb 21, 2010 4:51 am
Forum: Applications - Feedback and Discussion
Topic: TSI include, new image file format
Replies: 59
Views: 22292

Re: TSI include, new image file format

Any news on TSI & TSA? 8)
by klaver
Sun Feb 21, 2010 3:26 am
Forum: General Discussion
Topic: Forum Search
Replies: 20
Views: 5683

Re: Forum Search

I'll post in this thread as I also have problem with phpBB search.

I want to search the forums for two words: "load icon". Ok, so I search for (+ works as AND): +load +icon
And what I get? Search term used: +load +icon ignored: icon
Why the heck the "icon" keyword is ignored?! Results for "load ...
by klaver
Thu Feb 04, 2010 9:59 pm
Forum: PureFORM & JaPBe
Topic: jaPBe 3.13.4 [IDE for PB 4 and PB 5]
Replies: 1545
Views: 680254

Re: jaPBe 3.10.2 [IDE for PB 4.xx]

gnozal wrote:this release should fix the syntax coloring issue posted by klaver
Thanks!

Code: Select all

If #True
Else
  
EndIf
Please place cursor after the "#True" word, and press Enter. It adds another, unecessary "EndIf". Can this be fixed?

PS gnozal, do you code in jaPBe or in PB IDE? :)