Search found 472 matches

by Cyllceaux
Thu Nov 06, 2025 5:09 pm
Forum: Bugs - Windows
Topic: [Done] How to find the reason for compiler-problems?
Replies: 11
Views: 788

Re: How to find the reason for compiler-problems?

HA!!!! I can reproduce it!!!

you need 4 files:
str.pb

Structure str1
feld.i
EndStructure

Structure str2
feld.i
EndStructure


dec.pb

Declare test1(*t1.str1,*t2.str2)
Declare test2(*t1.str1,*t2.str3)


glob.pb

Procedure test1(*t1.str1,*t2.str2)
Debug "OK"
EndProcedure

Procedure test2 ...
by Cyllceaux
Thu Nov 06, 2025 4:53 pm
Forum: Bugs - Windows
Topic: [Done] How to find the reason for compiler-problems?
Replies: 11
Views: 788

Re: How to find the reason for compiler-problems?

Hi Bisonate... without my AV its the same result. :(
by Cyllceaux
Thu Nov 06, 2025 6:19 am
Forum: Bugs - Windows
Topic: [Done] How to find the reason for compiler-problems?
Replies: 11
Views: 788

[Done] How to find the reason for compiler-problems?

I receive this error. Is there a compiler-log to check?

I receive this with the ASM Backend and the C-Backend.


I don't know why, but my

--------------------------------------------------------------------------------
Erstellen von 'Standard-Ziel ...
by Cyllceaux
Sun Oct 12, 2025 12:06 pm
Forum: Coding Questions
Topic: Slow code !! Why ?
Replies: 10
Views: 732

Re: Slow code !! Why ?

Or you can Try this:

OpenWindowedScreen(WindowID(0), 0, 0, 800, 800,#False,0,0,#PB_Screen_NoSynchronization)
by Cyllceaux
Sun Oct 12, 2025 11:43 am
Forum: Coding Questions
Topic: Slow code !! Why ?
Replies: 10
Views: 732

Re: Slow code !! Why ?

It's the "WaitWindowEvents". I had the same problem. WaitWindowsEvent do not work here as you expected. You can do something like that WaitWindowsEvent (10) or do a WindowEvent instead.
by Cyllceaux
Fri Oct 10, 2025 6:29 pm
Forum: Coding Questions
Topic: Missing IMA in C-Backend
Replies: 2
Views: 683

Missing IMA in C-Backend

Hello there... I know the code is wrong, but in the ASM Backend I receive a IMA, what I expected.
On the C-Backend nothing happens.

Code: Select all

Structure strTest
	value.i
EndStructure

Define *test.strTest=5

Debug *test\value
by Cyllceaux
Wed Aug 27, 2025 5:34 am
Forum: Coding Questions
Topic: [SOLVED] FindString() with CRLF in the search?
Replies: 12
Views: 1213

Re: FindString() with CRLF in the search?

Hi,

Easy... it is #CRLF$ not #LFCR$

Code: Select all

search.s = #CRLF$+"Word" ; <--- Here
If OpenFile(0,"c:\temp\test.txt")
  text.s = ReadString(0,#PB_Ascii | #PB_File_IgnoreEOL)
  CloseFile(0)
EndIf
Debug FindString(text,search) ; 11
by Cyllceaux
Thu Jun 19, 2025 9:36 am
Forum: Bugs - Windows
Topic: [Done] undefined symbol 'SM_3057'.
Replies: 12
Views: 2965

Re: undefined symbol 'SM_3057'.

just for me... is it a bug or not?
I created that thread in "Codingquestion".
Someone moved it to the bug section and @kiffi moved it back zu "Codingquestion".

Now I'm confused
by Cyllceaux
Sun Jun 15, 2025 11:15 am
Forum: Bugs - Windows
Topic: [Done] undefined symbol 'SM_3057'.
Replies: 12
Views: 2965

Re: undefined symbol 'SM_3057'.

Fred wrote: Sun Jun 15, 2025 10:38 am This one should work
What should work? The code or the useful error message?

For me it is not a problem but both would be nice :)
by Cyllceaux
Sat Jun 14, 2025 6:11 pm
Forum: Bugs - Windows
Topic: [Done] undefined symbol 'SM_3057'.
Replies: 12
Views: 2965

[Done] undefined symbol 'SM_3057'.

I know the strRecord should be before strSchema but the intersting thing is, if I change the order *schema.strSchema still workes


Structure strVTable
*vtable
EndStructure

Structure strSchema Extends strVTable
name.s
Map types.i()
List *records.strRecord()
EndStructure

Structure strRecord ...
by Cyllceaux
Sun Jun 01, 2025 11:29 am
Forum: General Discussion
Topic: Can't access this forum outside EU
Replies: 32
Views: 4755

Re: Can't access this forum outside EU



I'm in Germany and I can't visit this site with my Huawei P40. My Huwai P20 has no problem.
they use the same browser, same WiFi and same DNS.


What are the user agent strings of both phones?
https://www.whatismybrowser.com/detect/what-is-my-user-agent/


Mozilla/5.0 (Linux; Android 10; ELS ...
by Cyllceaux
Fri May 23, 2025 5:42 am
Forum: General Discussion
Topic: Can't access this forum outside EU
Replies: 32
Views: 4755

Re: Can't access this forum outside EU

I'm in Germany and I can't visit this site with my Huawei P40. My Huwai P20 has no problem.
they use the same browser, same WiFi and same DNS.
by Cyllceaux
Sat Mar 08, 2025 8:13 am
Forum: Coding Questions
Topic: Direct write or draw on desktop
Replies: 11
Views: 3121

Re: Direct write or draw on desktop

Its called "Topic Icon"
Normally it's disabled, but you can put one if you are use the phpBB API (HTML POST) directly or over another Program.

Maybe he had a browser Addon or use this while fred upgraded/configured the board. (the to many request problem)
by Cyllceaux
Mon Mar 03, 2025 12:41 pm
Forum: The PureBasic Editor
Topic: Wrong Syntax Highlighting in 6.20
Replies: 9
Views: 2026

Re: Wrong Syntax Highlighting in 6.20

yes... you are right. it is the inline ASM Syntax. :oops: