Search found 640 matches

by flaith
Fri Oct 09, 2020 10:08 am
Forum: General Discussion
Topic: Which BASICs have been you using in your life?
Replies: 61
Views: 22093

Re: Which BASICs have been you using in your life?

  1. [1] Applesoft BASIC (Apple II,//e,//c)
  • [2] MBASIC (CP/M)
  • [3] Blitzbasic/Blitzmax (Windows)
  • [4] Purebasic (Windows/Linux)
:)
by flaith
Tue Apr 07, 2020 4:58 pm
Forum: Off Topic
Topic: Happy Birthday, Fred!
Replies: 18
Views: 5628

Re: Happy Birthday, Fred!

Oops, late but ... Happy Birthday Frédéric :mrgreen:
by flaith
Fri Mar 06, 2020 11:53 am
Forum: Coding Questions
Topic: Postgresql on a network
Replies: 4
Views: 1336

Re: Postgresql on a network

ouverture.l = OpenDatabase(#PB_Any, "host=xxx.xxx.x.xx/ port=5433 dbname=mandat", "postgres", "postgres",#PB_Database_PostgreSQL) Hi instead of using "host=", did you try with "hostaddr" ouverture.l = OpenDatabase(#PB_Any, "hostaddr=xxx.xxx.x.x...
by flaith
Fri Jun 14, 2019 1:59 pm
Forum: Applications - Feedback and Discussion
Topic: DialogDesign0R V1.85
Replies: 212
Views: 106478

Re: DialogDesign0R V1.48

HeX0R, thank you, your great DialogDesigner is helping me a lot :D
by flaith
Sun Sep 02, 2018 8:27 pm
Forum: Announcement
Topic: [APP] DevTools::ImageConverter - Update 1.3
Replies: 7
Views: 4807

Re: [APP] DevTools::ImageConverter

Interesting tool, planning to do a command line tool also ?
by flaith
Sat Oct 21, 2017 3:20 pm
Forum: Announcement
Topic: Death Star vs Asteroids
Replies: 47
Views: 9051

Re: Death Star Vs Asteroids

@JHPJHP
Thanks for sharing, really fun/hard enough game :)
by flaith
Wed Jan 11, 2017 12:43 am
Forum: Coding Questions
Topic: [Tired Brain]-CanvasGadget in a called procedure
Replies: 3
Views: 1450

Re: CanvasGadget in a called procedure

:oops: :o :lol:
Oops, something's wrong with my brain, it's really time to sleep :mrgreen:
Thanks a lot guys :D
by flaith
Wed Jan 11, 2017 12:06 am
Forum: Coding Questions
Topic: [Tired Brain]-CanvasGadget in a called procedure
Replies: 3
Views: 1450

[Tired Brain]-CanvasGadget in a called procedure

Hi all, I'm struggling with a simple code, I've just created a procedure calling a canvas gadget I call it 2 times but I only see the result of the first call :shock: Here is the simple code: Procedure.i CanvasTextGadget(id.i, x.i, y.i, width.i, height.i, text.s = "") CanvasGadget(id, x, y...
by flaith
Wed Dec 28, 2016 7:28 pm
Forum: Coding Questions
Topic: [Done]-SQLite + many UPDATE : Purebasic process stand still
Replies: 5
Views: 1977

Re: SQLite + many UPDATE : Purebasic process stand still

Try wrapping it inside a transaction started with 'begin immediate' I suspect it's to do with implicit transactions and the associated file locking. Great :D Thanks for your reply, I've added "BEGIN" before and "COMMIT" after the updates, and it worked really well without frozen...
by flaith
Wed Dec 28, 2016 6:28 pm
Forum: Coding Questions
Topic: [Done]-SQLite + many UPDATE : Purebasic process stand still
Replies: 5
Views: 1977

Re: SQLite + many UPDATE : Purebasic process stand still

skywalk wrote:Did you try with the IDE session history disabled?
Thanks for your answer
I just tried no change, even worse :(
Before launching the console program:
Image
During:
Image
by flaith
Wed Dec 28, 2016 6:08 pm
Forum: Coding Questions
Topic: [Done]-SQLite + many UPDATE : Purebasic process stand still
Replies: 5
Views: 1977

Re: SQLite + many UPDATE : Purebasic process stand still

Another try, without DEBUGGER
I changed to a console program, launch it, worked, BUT purebasic.exe froze again more than a minute :shock:
Using sqlite with purebasic opened is an issue?
by flaith
Wed Dec 28, 2016 5:46 pm
Forum: Coding Questions
Topic: [Done]-SQLite + many UPDATE : Purebasic process stand still
Replies: 5
Views: 1977

[Done]-SQLite + many UPDATE : Purebasic process stand still

Hi everyone, I wanted to try a code to get all of my files in my current directory and in the sub-directories And I want to save them in a sqlite database My issue is in my directory there is more than 150 files and, each time, I need to kill purebasic.exe process If there is around 20 files, it's o...
by flaith
Mon Mar 14, 2016 5:44 pm
Forum: Applications - Feedback and Discussion
Topic: Lisp Interpreter
Replies: 10
Views: 5277

Re: Lisp Interpreter

oh thats cause its returning a t for true after it finishes the print command you can add a newline like this: (progn (print "hello world") (newline)) its like that so you can do stuff like this: (progn (setq var 20) (print "number:") ( print var ) ( newline ) ) >number: 20 usua...
by flaith
Tue Mar 08, 2016 4:47 pm
Forum: Applications - Feedback and Discussion
Topic: Lisp Interpreter
Replies: 10
Views: 5277

Re: Lisp Interpreter

Great and thanks for the sharing :D
Just started to test it and have an issue with the "print" function, after the "print" the interpreter add a "t" at the end:

Code: Select all

$ lisp
> (print "Hello world!")
Hello world!t
> (print "Hello")
Hellot
by flaith
Wed Mar 02, 2016 5:23 am
Forum: Announcement
Topic: PureBasic 5.42 LTS final is available !
Replies: 98
Views: 42966

Re: PureBasic 5.42 LTS final is available !

Thank you so much guys :D