Search found 8 matches

by bohne_68
Mon Nov 30, 2015 8:32 pm
Forum: Coding Questions
Topic: Debugger - 10s no communication
Replies: 1
Views: 662

Debugger - 10s no communication

Hallo,

i have sometimes the problem, when i want to test/debug a program, that the debugger not starts and execution/connection is stoped after 10s.
It not depends on the number of lines of code and the version od PB.

Does exists there a workaround or a solution?

Thanks in advance.

regards ...
by bohne_68
Sat May 02, 2015 3:22 pm
Forum: Coding Questions
Topic: Structures in Procedures
Replies: 10
Views: 2615

Re: Structures in Procedures

Do you tried the internal sort-functions?
  • SortStructuredArray()
  • SortStructuredList()
In my cases it works wery well. With the structure described it should work very well ...
by bohne_68
Sat May 02, 2015 10:40 am
Forum: Coding Questions
Topic: ExtractXMLMap
Replies: 2
Views: 1189

Re: ExtractXMLMap

Thanks for your replay. I'am also tried the convertion to a string using the Method ComposeXML() with the same result.
Now I'am using the classical implementation, pasing the XML-tree manualy.

"It's not a bug, it's a feature" :mrgreen:
by bohne_68
Fri May 01, 2015 7:13 pm
Forum: Coding Questions
Topic: ExtractXMLMap
Replies: 2
Views: 1189

ExtractXMLMap

Hallo,

i try to write and to read a MAP using the xml-features.


Procedure SaveSettings()
Define FileName.s

If MapSize(SettingsData()) > 0
If CreateXML(0) And InsertXMLMap(CreateXMLNode(RootXMLNode(0), "settings"), SettingsData())
FileName = SettingsFileName()
SaveXML(0, FileName ...
by bohne_68
Tue Apr 14, 2015 12:00 pm
Forum: Windows
Topic: PB5.31 (32bit) on Windows 98
Replies: 13
Views: 7669

Re: PB5.31 (32bit) on Windows 98

VB6_to_PBx wrote:Like you , PureBasic version 5.24 LTS is the highest version i could Run on my old WIN-98 Computer

http://www.purebasic.fr/english/viewtop ... 33#p461633
The compiler of version 5.31 runs on Win98 (command line) too.
by bohne_68
Fri Apr 10, 2015 11:43 am
Forum: Windows
Topic: PB5.31 (32bit) on Windows 98
Replies: 13
Views: 7669

Re: PB5.31 (32bit) on Windows 98

Hallo everybody,

thanks for your help. The version 5.24 LTS runs on my old mashine.
I'm also using the the german help/documentation ... my be, it's time for an update ;-)

Regards
Thomas
by bohne_68
Fri Apr 10, 2015 10:04 am
Forum: Windows
Topic: PB5.31 (32bit) on Windows 98
Replies: 13
Views: 7669

PB5.31 (32bit) on Windows 98

Hallo,

Today I have been installed the latest Version 5.31 (32bit) of Purebasic on an old Notebook with Windows 98 using the normal sources from the repository. According the system requirements it should work normally.

The program itself "start's" with the message:

Cannot Initialize Scintilla ...
by bohne_68
Fri Aug 30, 2013 1:07 pm
Forum: Coding Questions
Topic: [SOLVED] Splitting an SQLite table into two.
Replies: 1
Views: 913

Re: Splitting an SQLite table into two.

Hallo,

I don't thing that that the file size (table size) is the problem.

Do you tried to reduce the number of received record's? Usually you see only 50 lines in a table/grid :D.
This depends on your workflow, queries etc.

Or you have to improve/cleanup your database using "external" tools ...