| Welcome, Guest |
You have to register before you can post on our site.
|
| Latest Threads |
center line not working w...
Forum: PowerBASIC for Windows
Last Post: Dale Yarker
Yesterday, 06:44
» Replies: 5
» Views: 160
|
Euclidean division; quoti...
Forum: Source Code Library
Last Post: Dale Yarker
31.08.2026, 06:25
» Replies: 0
» Views: 69
|
Is PBUsers.org broken?
Forum: Suggestions and discussion about PUMP
Last Post: Jules Marchildon
09.08.2026, 00:04
» Replies: 4
» Views: 446
|
Does PB progs run well in...
Forum: PowerBASIC for Windows
Last Post: Stanley Durham
06.08.2026, 12:42
» Replies: 6
» Views: 708
|
Where is pbusers.org?
Forum: This and that - friendly chat
Last Post: Kurt Kuzba
05.08.2026, 12:32
» Replies: 3
» Views: 413
|
FFTW - Attn Dan Soper
Forum: Programming
Last Post: Dan Soper
20.05.2026, 12:31
» Replies: 1
» Views: 787
|
Discussions
Forum: JKB (32/64 bit Compiler)
Last Post: Albert Richheimer
27.04.2026, 19:42
» Replies: 9
» Views: 2,919
|
Announcements for updates
Forum: JKB (32/64 bit Compiler)
Last Post: Juergen Kuehlwein
27.04.2026, 14:26
» Replies: 1
» Views: 1,250
|
Enter PIN popup dialog in...
Forum: Source Code Library
Last Post: Dale Yarker
23.04.2026, 16:54
» Replies: 0
» Views: 630
|
Sounds good!
Forum: JKB (32/64 bit Compiler)
Last Post: Dale Yarker
13.04.2026, 02:54
» Replies: 0
» Views: 724
|
|
|
| How to run own code |
|
Posted by: Juergen Kuehlwein - 12.04.2026, 14:08 - Forum: JKB (32/64 bit Compiler)
- No Replies
|
 |
My IDE makes extensive use of hot keys, type CTRL + H for a list of key combinations
In the IDE´s folder there is a file (list of available features.txt) listing all currently supported statements. Most statements are compatible to PB syntax
I´m not absolutely sure, if my implementation of macros works correct under all circumstances, the same applies to math functions and all kinds of expressions, especially with new data types like QWORD and SBYTE. I am sure there will be bugs, issues and problems i didn´t find yet!
Compiling the same code for 32 and 64 bit requires a special data type, which represents 32 bit in 32 bit and 64 bit in 64 bit: XWORD (unsigned) and XLONG (signed). Therefore all include files (i used José´s) must be prepared for this. Currently not all but about 2/3 have been translated and can be found in \Basic\Include_new.
64 bit code is much more picky about alignment, 64 bit code refuses to work, if structure alignment is not correct. This produces hard to find errors, and i´m not sure if all structures have been translated properly for 64 bit.
Inline assembler works as usual, i build ebp/rbp based stackframes and you can use PUSH and POP as usual, but in 64 bit code the stack pointer (rsp) must be 16 byte aligned before calls, otherwise you will experience all kinds of crashes. You may replace e/r by x for registers in order to write code, which compiles in 32 and 64 bit. Internally xax becomes eax in 32 bit and rax in 64 bit, this applies to all standard 32 bit registers (eax, ebx, ecx, edx, esi, edi, ebp, esp), obviously you cannot use r8 - r15 in 32 bit code.
In 32 bit code the constant %x32_code and in 64 bit code %x64_code are predefined, so you can build conditional compiling blocks like:
#ifdef %x64_code
... 64 bit code goes here (must be compilable)
#else
... 32 bit code goes here (must be compilable)
#endif
While PowerBASIC allows for (variable)names like "cx" or "si", which are valid register names, my implementation currently doesn´t. So you must use different names. ATM there are some more words (in addition to language keywords), which are forbidden. You will get an error message in such cases.
My object and COM implementation may need improvement, the focus was on being able to use COM services, which seems to work.Writing COM servers is possible but with some restrictions. Inheritance and multiple interfaces are not handled absolutely correct, i fear. There is nothing like #TLIB and "ME." (an object calling itself) doesn´t work yet.
I want better error reporting, in many places you will get a simple "syntax error". It is possible to have more specific messages and i plan to do that, but it is not on top of my priority list.
There are many ways of improving and optimizing my code, but for the moment the most important thing is making the "core" things stable.
Then will be the time to add more features, currently it supports, what i would call the "core" features of a BASIC language. Feel free to ask for "core" features i might have missed. But i won´t add more or less "special" things, before the core can be considered actually stable. At the current point of development i must thoroughly test, what i have in order to avoid changes in the core functionality later on. Code generation must cover different scenarios, the currently supported feature set covers all these scenarios in (hopefully) all it´s aspects. So it should be suited for testing and finding bugs i missed. Further development will then be a variation or implementation of the existing core of code.
E.g when passing arguments, such an argument can be: a literal, a constant, a variable, an array (as a whole, or as one single element), a structure (as a whole, or as one member of it), nested structures, a pointer, a resolved pointer, procedure returns, intrinsic functions (results from key words) and combinations and expressions of all of this. An argument can be passed "byref", "byval" and "bycopy". So there is a variety of possibilities, which must be taken care of.
The most simple code for own tests would be:
Code Select
Code:
#COMPILER JKB 32
#COMPILE EXE
FUNCTION MAIN
...
END FUNCTION
Now you can fill in the body of MAIN (for convenience PBMAIN is also possible) with declarations of variables and code using the syntax known form PB. You can add subs and functions as usual. You may add "#INCLUDE "Win32Api.inc" for access to predefined constants and the Windows API.
About 2/3 of José´s include files are already adapted to work in 64 bit Windows. There might still be issues though
"F9" will start the code generation and if this was successful, start the compiled executable. AV will often not be you friend here! You may add resources by "#RESOURCE "<resourcefilename>.res", but even adding a version control block and a manifest does not ensure smooth testing.
When there are syntax errors inside the BASIC code, these errors are shown in the IDE. In case of no error so far, the generated assembler code is passed to an assembler and linker, errors are shown in the IDE. Finally the created executable is run.
For debuging you can inspect final or intermediate results with "MSGBOX", use "STR$" or "HEX$" for numeric results, or you can make use of "ODS" or "ODX", which show debug output in a special viewer, which doesn´t block code flow like a message box.
Basically everything listed in features is allowed as syntax element. Expressions and block constructs have a maximum nesting level of 64.
The generated assembler code still has potential for optimizing, but (as already mentioned) first i want to get it working and then i want to make it smaller, faster, whatever...
The IDE will create a bunch of extra files mostly for debugging purposes, these will not be visible anymore in a final state.
Please don´t post in this thread, use the "Discussions" thread. More explanations will follow as needed.
|
|
|
| Download and setup |
|
Posted by: Juergen Kuehlwein - 12.04.2026, 13:51 - Forum: JKB (32/64 bit Compiler)
- No Replies
|
 |
Hi all,
Below are a link and instructions for a setup - have fun
whole package: https://www.dropbox.com/scl/fi/tc6syg81r...pbwwe&dl=1
update package: https://www.dropbox.com/scl/fi/cl6294npc...bwzsq&dl=1
The .zip file is about 40 MB and contains an updated version of my IDE and the complete tool chain necessary for the new "compiler". In fact working together with my IDE this is a complete compiler toolchain creating Windows executables (internally it is a code converter creating assembler code, which in turn is assembled to standard COFF .obj files and then linked to an execuatable). There is a linker (PoLink64.exe) included. A better choice would be Mircosoft´s linker (link.exe + a bunch of dlls), but this linker is not redistributable. It is included in a (free) community version of Visual C. You may download and install VC to have it installed on your machine. For using it you must specify this executable in Path Options Dialog in my IDE. A typical location for VC22 would be: C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.44.35207\bin\Hostx86\x86\link.exe.
There might be problems with AV scanners, even Windows Defender sees some versions of JK-Basic.exe (the "compiler") as a potential threat, while virustotal sees no problem. In Windows 11 .exe files might not run, because there is no digital signature. The IDE itself (jk-ide.exe) and the "compiler" (jk-basic.exe) are not digitally signed, and newly created executables will have no digital signature, except you can digitally sign them yourself (the IDE can do that, if you have a certificate).
As usual you can expand the package to a directory of your choice, it is path independent. I recommend a new location, if you already use my IDE. This version is still experimental, so in order not to destroy your work with an existing install, don´t just unpack this over it. Please don´t select a path way down in your folder tree, because there still is a limit in length for paths, which could come into play, if your install path is too long.
When expanding Windows defender (or other AV) might block or quarantine some of the files, so be sure you got them all. In Windows 10 and below it is sufficient to add the "root" directory of this package to the AV´s exception list. I recommend doing this, because to my experience every now and then AV will "butt in" and produce all kinds of strange errors. Sometimes it can be really hard to get such false positives out of quaratine and get it to work again. The package doesn´t contain any dangerous or malicious things. Fell free to re-check with virustotal.
Currently the tool chain only works with my IDE (jk-ide.exe), so you must be or make yourself familiar with it. There is a quite comprehensive help file (menu -> help\JK-IDE Help)
For a start i would like you to do the following things:
- download (full package, the "update package" is for updates, which requires only a subset of files to be replaced)
- unzip
- run jk-ide.exe (you maybe will be asked to specify a path for the PB compiler and for an include file set, please fill in the necessary paths and press "Apply". This happens only, if the IDE cannot find these paths itself)
- the IDE will do some internal setup work, don´t worry, this is expected. It will tell you, when it is finished.
- open "File" menu, select "New As" and "JKB", name and save this source file wherever you want, press "F9". Congratulations, you should have compiled your first 64 bit executable with JKB
Please tell me, if this doesn´t work as described in "Discussions" thread. Don´t post in this thread!
|
|
|
| How many "1" bits /Is Number a Power of 2 |
|
Posted by: Dale Yarker - 16.03.2026, 11:54 - Forum: Source Code Library
- No Replies
|
 |
Code: 'The FASTPROCs here are for both PBWin 10 and PBCC 6.
'For older PB versions change FASTPROC to FUNCTION.
'The demo (in PBMAIN below) would need significant change to compile in older
'versions of PB.
#compile exe
#dim all
#if %def(%pb_cc32) 'ignore this in PBWin
#console off 'no unneeded in PBCC
#endif
'
'#### Please start thread in Programming for comments/questions. ####
'
'I want a solitare game that was not in old PB formum Source Code.
'Do it myself.
'That requires shuffling cards. Instead of repeating shuffle code for other
'games make a DLL.
'Shuffling requires PRNG(s), and seeds for PRNDs. They are useful for more
'than just card game, so another DLL.
'One of the PRNG algorithms fails if seed is a power of 2.
'
'(PRNG is pseudo Random Number Generator, NUT is Number Under Test.)
'
'How many bits are "1"?
''Simple use of the assembly POPCNT needed in power of 2 procs.
''is DWORD/LONG agnostic
fastproc BitCount(byval NUT as long) as long
! popcnt eax, NUT
! mov NUT, eax
end fastproc = NUT
'
'Is a DWORD number a power of 2?
fastproc IsPowerOf2Dw (byval NUT as long) as long
! mov ebx, NUT 'so not to modify NUT
! and ebx, &h00000001 'without this 1 returns as PO2
! jz IsEven
! jmp NotPO2
IsEven:
! popcnt ebx, NUT
! cmp ebx, 1
! jne NotPO2
! mov NUT, -1
! jmp Done
NotPO2: ' -4 -8
! mov NUT, 0
Done:
end fastproc = NUT
'
'Is a LONG number a power of 2?
''(Second procedure because in DWORD bit 31 is MSB of the number, while
'''in a LONG it is the sign flag and remaining bits are in 2s compliment
'''format.)
fastproc IsPowerOf2Lg (byval NUT as long) as long
'check if NUT is negative
! bt NUT, 31
! jc NotPO2
! mov ebx, NUT
! and ebx, &00000001
! jz IsEven
! jmp NotPO2
IsEven:
! popcnt ebx, NUT
! cmp ebx, 1
! jne NotPO2
! mov NUT, -1
! jmp Done
NotPO2:
! mov NUT, 0
Done:
end fastproc = NUT
'
'###############################################################################
function pbmain () as long
local hTWin, NumD as dword
local NumL, Retrn as long
txt.window("BitCount, IsPowerOf2Dw and IsPowerOf2Lg"$$, 75, 50, 27, 40) _
to hTWin
'
txt.color = %rgb_blue : txt.print "BitCount" : txt.color = %rgb_black
NumL = 1 : Retrn = BitCount(NumL) : gosub PrintCount
NumL = 2 : Retrn = BitCount(NumL) : gosub PrintCount
NumL = 15 : Retrn = BitCount(NumL) : gosub PrintCount
NumL = &h80050006 : Retrn = BitCount(NumL) : gosub PrintCount
'
txt.print : txt.color = %rgb_blue
txt.print "Is DWORD a power of 2?"$$ : txt.color = %rgb_black
NumD = 1 : Retrn = IsPowerOf2Dw(NumD) : gosub PrintDwd
NumD = 4 : Retrn = IsPowerOf2Dw(NumD) : gosub PrintDwd
NumD = 5 : Retrn = IsPowerOf2Dw(NumD) : gosub PrintDwd
NumD = 4294967294 : Retrn = IsPowerOf2Dw(NumD) : gosub PrintDwd
'
txt.print : txt.color = %rgb_blue
txt.print "Is LONG a power of 2?"$$ : txt.color = %rgb_black
NumL = 1 : Retrn = IsPowerOf2Lg(NumL) : gosub PrintLng
NumL = -1 : Retrn = IsPowerOf2Lg(NumL) : gosub PrintLng
NumL = 8 : Retrn = IsPowerOf2Lg(NumL) : gosub PrintLng
NumL = -8 : Retrn = IsPowerOf2Lg(NumL) : gosub PrintLng
NumL = 128 : Retrn = IsPowerOf2Lg(NumL) : gosub PrintLng
NumL = -128 : Retrn = IsPowerOf2Lg(NumL) : gosub PrintLng
NumL = 1024 : Retrn = IsPowerOf2Lg(NumL) : gosub PrintLng
NumL = -1024 : Retrn = IsPowerOf2Lg(NumL) : gosub PrintLng
NumL = 1026 : Retrn = IsPowerOf2Lg(NumL) : gosub PrintLng
NumL = -11026 : Retrn = IsPowerOf2Lg(NumL) : gosub PrintLng
'
txt.print
txt.color = %rgb_green
txt.print "Any key to close."$$
txt.waitkey$
exit function
PrintCount:
txt.print dec$(NumL) + " has " + dec$(Retrn) + " ""1"" bits."
return
PrintDwd:
txt.print dec$(NumD);
if Retrn then
txt.print " is"$$
else
txt.print " is not"$$
end if
return
PrintLng:
txt.print dec$(NumL);
if Retrn then
txt.print " is"$$
else
txt.print " is not"$$
end if
return
end function
'#### Please start thread in Programming for comments/questions. ####
|
|
|
| Notepad++ hacked |
|
Posted by: Stanley Durham - 03.02.2026, 03:36 - Forum: This and that - friendly chat
- Replies (4)
|
 |
Chinese Hackers Remote Executed Code Via Notepad++ for 6 Months
_______________________________________________________
Please do not post any Youtube links (and others) without comment.
Thank you
Albert (PUMP admin)
|
|
|
| Making text unreadable, 1 sample code works, 2 do not work |
|
Posted by: Robert Alvarez - 22.01.2026, 19:32 - Forum: PowerBASIC for Windows
- Replies (8)
|
 |
Found three code samples in the internet to make text unreadable.
First one can read text and encrypt it and decrypt .
The second and third seems to encrypt it but decrypt does not work.
First sample code:
Code: #COMPILE EXE
#INCLUDE "WIN32API.INC"
GLOBAL hDlg AS LONG
CALLBACK FUNCTION ENDPROG()
DIALOG END CBHNDL, 1
END FUNCTION
FUNCTION PBMAIN () AS LONG
$REGISTER NONE
LOCAL result, i AS LONG
'1. Basic Character Shift (Caesar Cipher Style)
OPEN "secret 1a.dat" FOR OUTPUT AS #1
text$ = "This is my secret message."
FOR i = 1 TO LEN(text$)
PRINT #1, CHR$(ASC(MID$(text$, i, 1)) + 5);
NEXT
CLOSE #1
OPEN "secret 1a.dat" FOR INPUT AS #1: LINE INPUT #1, text$
? text$ 'encryt
FOR i = 1 TO LEN(text$)
text1$=text1$+CHR$(ASC(MID$(text$, i, 1)) - 5)
NEXT
? text1$ 'decreypt
DIALOG NEW 0, "TEST 1", ,, 200, 150, %WS_MINIMIZEBOX+%WS_SYSMENU, 0 TO hDlg
CONTROL ADD LABEL, hDlg, 100, "LABEL 1",80, 40, 60, 14,
CONTROL ADD BUTTON,hDlg, 202, "&Exit Program",100, 100,55, 14, CALL ENDPROG
CONTROL SET FOCUS hDlg, 202
DIALOG SHOW MODAL hDlg TO result
END FUNCTION
Second sample code:
Code: #COMPILE EXE
#INCLUDE "WIN32API.INC"
GLOBAL hDlg AS LONG
CALLBACK FUNCTION ENDPROG()
DIALOG END CBHNDL, 1
END FUNCTION
FUNCTION PBMAIN () AS LONG
$REGISTER NONE
LOCAL result, i, key AS LONG
'2. XOR Encoding
OPEN "secret2a.dat" FOR OUTPUT AS #1
text$ = "This is my secret message."
key = 123 ' Simple numeric key
FOR i = 1 TO LEN(text$)
PRINT #1, CHR$(ASC(MID$(text$, i, 1)) XOR key);
NEXT
CLOSE #1
'XOR is reversible — use the same key to decode.
OPEN "secret2a.dat" FOR INPUT AS #1
GET #1,1, ch$: ? ch$$
decoded$ = ""
key = 123
WHILE NOT EOF(1)
INPUT #1, ch$ ' : ? ch$
decoded$ = decoded$ + CHR$(ASC(ch$) XOR key) ': ? decoded$
WEND
CLOSE #1
? decoded$
DIALOG NEW 0, "TEST 1", ,, 200, 150, %WS_MINIMIZEBOX+%WS_SYSMENU, 0 TO hDlg
CONTROL ADD LABEL, hDlg, 100, "LABEL 1",80, 40, 60, 14,
CONTROL ADD BUTTON,hDlg, 202, "&Exit Program",100, 100,55, 14, CALL ENDPROG
CONTROL SET FOCUS hDlg, 202
DIALOG SHOW MODAL hDlg TO result
END FUNCTION
Third sample code:
Code: #COMPILE EXE
#INCLUDE "WIN32API.INC"
GLOBAL hDlg AS LONG
CALLBACK FUNCTION ENDPROG()
DIALOG END CBHNDL, 1
END FUNCTION
FUNCTION PBMAIN () AS LONG
$REGISTER NONE
LOCAL result, i, mask AS LONG
'3. Binary Write with Random Mask
RANDOMIZE TIMER
OPEN "secret 3.dat" FOR BINARY AS #1
text$ = "This is my secret message."
FOR i = 1 TO LEN(text$)
mask = RND(255)
PUT$ #1, CHR$(ASC(MID$(text$, i, 1)) XOR mask)
NEXT
CLOSE #1
OPEN "secret 3.dat" FOR BINARY AS #1
decoded$ = ""
DO UNTIL EOF(1)
GET$ #1, 1, mask1$
GET$ #1, 1, data1$
decoded$ = decoded$ + CHR$(ASC(data1$) XOR ASC(mask1$))
LOOP
CLOSE #1
? decoded$
DIALOG NEW 0, "TEST 1", ,, 200, 150, %WS_MINIMIZEBOX+%WS_SYSMENU, 0 TO hDlg
CONTROL ADD LABEL, hDlg, 100, "LABEL 1",80, 40, 60, 14,
CONTROL ADD BUTTON,hDlg, 202, "&Exit Program",100, 100,55, 14, CALL ENDPROG
CONTROL SET FOCUS hDlg, 202
DIALOG SHOW MODAL hDlg TO result
END FUNCTION
How to fix?
|
|
|
| PB DOS |
|
Posted by: Brice Manuel - 19.01.2026, 09:48 - Forum: This and that - friendly chat
- Replies (3)
|
 |
I just recently ordered a new 386SX mini laptop system. Running DOS 6.22 and Windows 3.11. Lovely little beast. 40Mhz, 8MB RAM, and an IPS screen. It is capable of running Windows 95, but I do not want to at this time.
I am going to be working on some DOS & 16 bit Windows software.
PB DOS is still getting use from me.
|
|
|
|