Search found 2131 matches

by AZJIO
Sat Sep 06, 2025 11:17 pm
Forum: Applications - Feedback and Discussion
Topic: CheckHash
Replies: 5
Views: 752

Re: CheckHash

New idea. Create a "CheckHashList.ini" file next to the source file and specify in the settings that the compiler should create a temporary file in the source folder. This is necessary to ensure that the "CheckHashList.txt" file is created next to the source file, otherwise it will be created in ...
by AZJIO
Fri Sep 05, 2025 11:17 am
Forum: Applications - Feedback and Discussion
Topic: CheckHash
Replies: 5
Views: 752

Re: CheckHash

I forgot about them, but they were originally in the same source file. For Linux, you need 3 more icons.
By the way, these are standard functions that can be found by searching.
Procedure IsHex(*c.Character)
Protected flag = #True

If *c = 0 Or *c\c = 0
ProcedureReturn 0
EndIf

Repeat
If ...
by AZJIO
Thu Sep 04, 2025 7:54 pm
Forum: Applications - Feedback and Discussion
Topic: CheckHash
Replies: 5
Views: 752

CheckHash

CheckHash

Download

Screenshot on Linux
https://i.ibb.co/B24QdbnP/Check-Hash-En.png

;- TOP
;- @AZJIO v0.2 (05.09.2025)

; план: проверить файлы при запуске утилиты по списку

EnableExplicit

Define UserIntLang, *Lang
If OpenLibrary(0, "kernel32.dll")
*Lang = GetFunction(0 ...
by AZJIO
Wed Sep 03, 2025 7:46 pm
Forum: The PureBasic Editor
Topic: [IDE tool] WinInfo
Replies: 7
Views: 421

Re: [IDE tool] WinInfo

If you select "ComboBox" or "ListBox", buttons will appear to capture all the rows in the list. If you select a window with a title, a "Menu" button will appear to capture the window's main menu.
by AZJIO
Wed Sep 03, 2025 7:38 pm
Forum: The PureBasic Editor
Topic: [IDE tool] WinInfo
Replies: 7
Views: 421

Re: [IDE tool] WinInfo

You don't need to use this code, it's broken. You need to fix the code in the first message. I've already fixed it.
by AZJIO
Wed Sep 03, 2025 6:53 pm
Forum: The PureBasic Editor
Topic: [IDE tool] WinInfo
Replies: 7
Views: 421

Re: [IDE tool] WinInfo

This is part of the code from the WinAPI Library archive.
I'm using PB 6.04, and everything works fine.

I found the problem, please fix it.
Define hdll.i

This is almost the original code, I just translated the lines into Russian. It didn't work initially, so I had to fix it.
; Автор: fizban ...
by AZJIO
Wed Sep 03, 2025 5:08 pm
Forum: The PureBasic Editor
Topic: [IDE tool] WinInfo
Replies: 7
Views: 421

[IDE tool] WinInfo

WinInfo

https://i.ibb.co/RpTH80mY/WinInfo.png

;- TOP
; AZJIO 2025.09.03

EnableExplicit

#Black_theme = 1

Define UserIntLang, *Lang
If OpenLibrary(0, "kernel32.dll")
*Lang = GetFunction(0, "GetUserDefaultUILanguage")
If *Lang
UserIntLang = CallFunctionFast(*Lang)
EndIf
CloseLibrary(0 ...
by AZJIO
Mon Sep 01, 2025 4:50 pm
Forum: The PureBasic Editor
Topic: IDE Tool "Jump to Marker"
Replies: 20
Views: 1978

Re: IDE Tool "Jump to Marker"


Not sure if you're happy with the modifications but...

I was busy with my own things. I recorded a video because I needed to record a few videos, and I also recorded your program to show it to you quickly.

Why are you still using a direct path to your source code, when people have a different ...
by AZJIO
Mon Sep 01, 2025 4:31 pm
Forum: Off Topic
Topic: My SpiderBasic account password has been leaked. However, the vulnerability is unknown.
Replies: 14
Views: 812

Re: My SpiderBasic account password has been leaked. However, the vulnerability is unknown.


but I would like to know for sure whether there was an attack/infection on this particular computer.

If you mount the disk, you'll have the opportunity to check it with a third-party antivirus. I use Kaspersky's free antivirus. What's the point of finding a virus if it doesn't make you feel any ...
by AZJIO
Mon Sep 01, 2025 2:48 pm
Forum: Off Topic
Topic: My SpiderBasic account password has been leaked. However, the vulnerability is unknown.
Replies: 14
Views: 812

Re: My SpiderBasic account password has been leaked. However, the vulnerability is unknown.

What program do you use to create a virtual computer? If the disks are not dynamic, you can mount the files using imdisk
by AZJIO
Sun Aug 31, 2025 1:50 pm
Forum: Off Topic
Topic: My SpiderBasic account password has been leaked. However, the vulnerability is unknown.
Replies: 14
Views: 812

Re: My SpiderBasic account password has been leaked. However, the vulnerability is unknown.

Try " Kaspersky Free Rescue Disk ".

Launch code for Grub2 or use Rufus
set isofile="/b/krd0825.iso"
search --set=root --file ${isofile}
# probe --set=UUID --fs-uuid $root
loopback loop ${isofile}
set root=(loop)
linux (loop)/live/vmlinuz boot=live components findiso=${isofile} locales=ru_RU.UTF-8 ...
by AZJIO
Sun Aug 31, 2025 1:34 pm
Forum: The PureBasic Editor
Topic: IDE Tool "Jump to Marker"
Replies: 20
Views: 1978

Re: IDE Tool "Jump to Marker"

Video
You can add settings to prevent the window from closing.
Allow the window to be resized.
by AZJIO
Sun Aug 31, 2025 12:29 pm
Forum: Coding Questions
Topic: How to create a menu from a ListBox
Replies: 3
Views: 430

Re: How to create a menu from a ListBox


AkelPad.[Function] is an object. So an interface.
With your description of JavaScript I do not see where the object is fetched, created.
Either with COMate or with Module ActiveScript get the running instance

I think it could be written from scratch without any source code. But I added the ...
by AZJIO
Sun Aug 31, 2025 9:48 am
Forum: Coding Questions
Topic: How to create a menu from a ListBox
Replies: 3
Views: 430

How to create a menu from a ListBox

There is a JavaScript code for AkelPad that simulates a pop-up menu. I'm trying to convert it to PureBasic, but some functions, such as AkelPad.ThreadHook, AkelPad.WindowSubClass, AkelPad.ScriptNoMutex, etc., require intuition to create their counterparts.

JavaScript
// https://akelpad ...