Search found 199 matches

by t57042
Fri Jan 12, 2018 6:53 pm
Forum: Coding Questions
Topic: buttyon, no reaction
Replies: 9
Views: 2262

Re: buttyon, no reaction

thanks guys
Richard
by t57042
Fri Jan 12, 2018 5:34 pm
Forum: Coding Questions
Topic: buttyon, no reaction
Replies: 9
Views: 2262

buttyon, no reaction

If OpenWindow(0, 0, 0, 900, 600, "test", #PB_Window_SystemMenu | #PB_Window_TitleBar | #PB_Window_ScreenCentered )

EditorGadget(0,5,5,890,560,#PB_Editor_ReadOnly)
StringGadget(1, 15, 530, 790, 30, "")
ButtonGadget(2, 810, 530, 77, 30, "Enter")
EndIf ...
by t57042
Mon Dec 18, 2017 6:36 pm
Forum: Coding Questions
Topic: sqlite
Replies: 4
Views: 1526

Re: sqlite

When the timout is too high i have to wait too long while testing.
It has to be set each time the database is connected.

I am playing with multiple users.
I know Sqlite is not made for multiuser use but am trying it anyway.
I use MariaDB (mysql) as well, but would like to have a "serverless ...
by t57042
Mon Dec 18, 2017 5:54 pm
Forum: Coding Questions
Topic: sqlite
Replies: 4
Views: 1526

Re: sqlite

thanks, I feel stupid
by t57042
Mon Dec 18, 2017 5:21 pm
Forum: Coding Questions
Topic: sqlite
Replies: 4
Views: 1526

sqlite

Why is this not working?
I want to set the busy_timeout, but I can't even read it!
searched whole day.

Richard


UseSQLiteDatabase()
OpenDatabase(0, "test.db", "", "")
DatabaseQuery(0,"pragma busy_timout")
While NextDatabaseRow(0)
col$= GetDatabaseString(0,0)
Debug col$
Wend
by t57042
Sat Feb 06, 2016 12:55 pm
Forum: Coding Questions
Topic: gantt chart
Replies: 2
Views: 1386

gantt chart

Anybody experience with programming a ganttchart?
How to make timeline in PB?

Richard
by t57042
Mon Dec 28, 2015 5:15 pm
Forum: Coding Questions
Topic: color
Replies: 2
Views: 1043

color

probably stupid, but i don't see why the colors don't change

OpenWindow(0,0,0,890,700,"",#PB_Window_ScreenCentered|#PB_Window_SystemMenu)

LoadFont(2, "tahoma", 40,#PB_Font_Bold|#PB_Font_Italic )
TextGadget(990, 100, 200, 700,500, "LAURIE ",#PB_Text_Center)
SetGadgetFont(990, FontID(2 ...
by t57042
Mon Dec 21, 2015 5:24 pm
Forum: Coding Questions
Topic: slow reaction when clicking
Replies: 2
Views: 1082

Re: slow reaction when clicking

thanks KENMO.
Richard
by t57042
Mon Dec 21, 2015 1:19 pm
Forum: Coding Questions
Topic: slow reaction when clicking
Replies: 2
Views: 1082

slow reaction when clicking

Following code is based on something old i found in the forum.
; English forum: http://www.purebasic.fr/english/viewtopic.php?t=6203&highlight=
; Author: Freak (updated for PB4.00 by blbltheworm)
; Date: 21. May 2003
; OS: Windows
; Demo: Yes
Global a,b
#ListIcon = 1
LoadFont(0, "tahoma", 12 ...
by t57042
Thu Dec 17, 2015 9:19 pm
Forum: Announcement
Topic: Tiny Database Browser
Replies: 3
Views: 5764

Re: Tiny Database Browser

The progam does not compile (PB 5.30 an PB 5.40 - windows 7).
A window is displayed and then a message: Purebasic_compilation.exe problem.

Any suggestions?

Richard
by t57042
Wed Nov 25, 2015 12:30 pm
Forum: Coding Questions
Topic: convert dll-call
Replies: 2
Views: 811

convert dll-call

Help needed to adapt: Prototype sluConvertDat(a,b,c,d,e)
according description below.
How obtain result?
Thanks - Richard


'===========================<[ ConvertDat ]>===========================
Declare Sub sluConvertDat lib "SQLiteningU.Dll" alias "sluConvertDat" ( _
byval DataIn as Long ...
by t57042
Fri Nov 13, 2015 11:32 am
Forum: Coding Questions
Topic: wrapper - dll translation
Replies: 59
Views: 14087

Re: wrapper - dll translation

Hi thanos
I had to stop this because of serious health problems.
It s a Pity because sqlitening looks very promising.
If you manage to produce a wrapper i will give it a serious try.
Good luck
Richard
by t57042
Wed Oct 21, 2015 10:57 am
Forum: Coding Questions
Topic: wrapper - dll translation
Replies: 59
Views: 14087

Re: wrapper - dll translation

no not working on it anymore. Now trying MariaDB ( = MySQL) but open source
Richard
by t57042
Mon Oct 19, 2015 7:45 pm
Forum: Announcement
Topic: Arctic reports (reporting system - Windows)
Replies: 201
Views: 125199

Re: Arctic reports (reporting system - Windows)

can anyone tell if this software still available?
richard
by t57042
Sun Oct 18, 2015 3:03 pm
Forum: Coding Questions
Topic: 2 windows
Replies: 6
Views: 1501

2 windows

Following code opens a window with 2 buttons. When clicking EXECUTE or pushing F5 a second window opens.
But only briefly! It Should remain visible until the same button is clicked again, which reopens and displays the second window over and over again.
What is wrong?
Richard

;test
Global Window ...