
PlanetSquires Forums
- March 03, 2021, 04:59:07 PM
- Welcome, Guest
11
on: February 26, 2021, 08:54:36 PM
|
||
Started by Jim Dunn - Last post by James Klutho | ||
I think it was revealed some time ago that 10.04 and 6.04 updates have been lost.
|
12
on: February 26, 2021, 08:49:05 PM
|
||
Started by Jim Dunn - Last post by Jim Dunn | ||
Hey all, another quick question (I hope).
I noticed at the PowerBASIC site, they are selling version 10.03 of PBWin and 6.03 of PBcc... but I see my downloads directory has 10.04 and 6.04 updates (from years ago). Did they make some announcement about the .04's being bad/buggy/something??? |
13
on: February 26, 2021, 08:47:24 PM
|
||
Started by Jim Dunn - Last post by Jim Dunn | ||
Johan, amazing! You've saved me COUNTLESS hours... thank you so much!!!
And I'm not surprised CWSTR saved me... that Jose Roca... he's a smart one!! : ) Thank you again for your kindness... and to Paul for running this site! |
14
on: February 26, 2021, 07:30:54 PM
|
||
Started by Jim Dunn - Last post by Johan Klassen | ||
your example using CWSTR
Code: [Select] '#define Unicode |
15
on: February 26, 2021, 07:27:01 PM
|
||
Started by Jim Dunn - Last post by Johan Klassen | ||
however this works
Code: [Select] '' examples/manual/proguide/arrays/passing.bas |
16
on: February 26, 2021, 07:16:26 PM
|
||
Started by Jim Dunn - Last post by Johan Klassen | ||
@Jim
even though it compiles without complaint, I don't think it will work as a test I modified "passing.bas" in a similar way and it compiles just fine but the output is not what's expected Code: [Select] '' examples/manual/proguide/arrays/passing.bas |
17
on: February 26, 2021, 07:05:29 PM
|
||
Started by Jim Dunn - Last post by Johan Klassen | ||
I am not sure that the splitString declaration is correct, this will also compile
Function splitString(Byref source As ws, destination(Any) As ws, Byref delimiter As ws) as Long |
18
on: February 26, 2021, 06:58:08 PM
|
||
Started by Jim Dunn - Last post by Jim Dunn | ||
Johan, thank you *SO SO MUCH*... I would've never figured out that.
Much appreciated!!! |
19
on: February 26, 2021, 06:50:56 PM
|
||
Started by Jim Dunn - Last post by Johan Klassen | ||
hello Jim
with some minor changes it compiles without complaint Code: [Select] type ws as WSTRING * MAX_PATH changed the Function splitString a bitCode: [Select] Function splitString(Byref source As ws, destination(Any) As ws, ByVal delimiter As String) as Long |
20
on: February 26, 2021, 09:10:28 AM
|
||
Started by Jim Dunn - Last post by Jim Dunn | ||
Hey all... I rewrote the "passing.bas" (which I'm able to compile) from the examples\manual\proguide\arrays folder, but I'm getting errors.
Would anyone be willing to tell me what I'm doing wrong? Code: [Select] ' FreeBasic |