Search found 71 matches

by msu
Tue Jun 04, 2019 2:41 pm
Forum: General programming
Topic: Problem with ReceiveData
Replies: 24
Views: 14955

Re: Problem with ReceiveData

Clyde wrote: Tue Jun 04, 2019 2:37 pm But I still don't know what "the table library" is!? Sorry,
https://www.hollywood-mal.com/docs/html ... tml#active
by msu
Tue Jun 04, 2019 2:34 pm
Forum: Showcase
Topic: PostgreSQL for Hollywood
Replies: 6
Views: 9222

Re: PostgreSQL for Hollywood

Important:
The current version 1.0 currently has problems receiving large amounts of data.
There will be an update in the next few days.
by msu
Tue Jun 04, 2019 2:32 pm
Forum: General programming
Topic: Problem with ReceiveData
Replies: 24
Views: 14955

Re: Problem with ReceiveData

Clyde wrote: Tue Jun 04, 2019 2:27 pm But, what do you mean by "spreadsheet" and "table library"? Thanks!
Thank you, have corrected that.
by msu
Tue Jun 04, 2019 2:18 pm
Forum: General programming
Topic: Problem with ReceiveData
Replies: 24
Views: 14955

Re: Problem with ReceiveData

Hi Andreas, Meanwhile, I solved the problem. :D It does not matter if you use #RECEIVEBYTES or #RECEIVEALL (untillterm = TRUE), both works. This code here is an absolute performance killer for large amounts of data: part$, c = ReceiveData(ConnectionID, #RECEIVEBYTES, 5) Answer$ = Answer$ .. part$ Th...
by msu
Sat May 18, 2019 11:36 pm
Forum: Newbie questions
Topic: List and strings
Replies: 16
Views: 13951

Re: List and strings

Please also read the documentation.

Here is an example with "Not":

Code: Select all

loadedline$ = "Hallo"
If Not loadedline$ = False
	DebugPrint("loadedline$ is not empty")
EndIf
by msu
Sat May 18, 2019 9:31 pm
Forum: Newbie questions
Topic: List and strings
Replies: 16
Views: 13951

Re: List and strings

"Not" can not be used with string variables.
"Not" can only result in True (1) or False (0).
by msu
Fri May 17, 2019 8:35 pm
Forum: Showcase
Topic: PostgreSQL for Hollywood
Replies: 6
Views: 9222

Re: PostgreSQL for Hollywood

Since the last beta I have written programs testing this library. I was able to find and fix a lot of bugs. Most of these were small mistakes, such as unreleased resources. All in all, many millions of database queries have been completed in the past few days. That's why here is the first final vers...
by msu
Sun May 12, 2019 9:28 pm
Forum: Newbie questions
Topic: List and strings
Replies: 16
Views: 13951

Re: List and strings

Just post a simple BlitzBasic example.
Maybe then I or someone else can help.
by msu
Sun May 12, 2019 5:02 pm
Forum: Newbie questions
Topic: List and strings
Replies: 16
Views: 13951

Re: List and strings

I think a 1: 1 implementation will not work.
I recommend you to use the "Traditional" Method.
In addition, the table library is very slow. :oops:
by msu
Sat May 11, 2019 11:30 pm
Forum: Newbie questions
Topic: List and strings
Replies: 16
Views: 13951

Re: List and strings

Code: Select all

test$={}
InsertItem(test$,"mytext")
TextOut(20, 100, test$[0])
WaitLeftMouse	
End