Search found 1301 matches

by AZJIO
Thu Mar 28, 2024 4:16 pm
Forum: Announcement
Topic: MixPerfect
Replies: 22
Views: 589

Re: MixPerfect

OpenLibrary
Supported OS

All
by AZJIO
Thu Mar 28, 2024 3:38 pm
Forum: Announcement
Topic: MixPerfect
Replies: 22
Views: 589

Re: MixPerfect

I just found a few references to OpenLibrary(). I think it's better for you to do a search on your own to find a suitable way.
https://www.purebasic.fr/english/viewtopic.php?t=61956
https://www.purebasic.fr/english/viewtopic.php?t=31784
by AZJIO
Wed Mar 27, 2024 9:21 pm
Forum: Announcement
Topic: MixPerfect
Replies: 22
Views: 589

Re: MixPerfect

/usr/lib/ I needed to upgrade other Linux and I tried on Fedora and Mint. Both failed to run, including copying files to the lib folder (on Fedora it was lib64). Absolutely nothing was happening. Make an error output if the library is not loading If Not OpenLibrary(#L1, "libbass.so") Mess...
by AZJIO
Wed Mar 27, 2024 6:45 pm
Forum: Announcement
Topic: MixPerfect
Replies: 22
Views: 589

Re: MixPerfect

I tried it in Arch, it doesn't start for me. The "Htop" program does not show the process.
by AZJIO
Sun Mar 24, 2024 9:22 pm
Forum: Coding Questions
Topic: quick reading a file of 15 GByte.... how?
Replies: 22
Views: 941

Re: quick reading a file of 15 GByte.... how?

For what purpose do you want to load a 15 GB file into memory? For example, a video player does not load the file into memory when watching a movie. The difference is that if you have a UTF-8 file, it will be converted to #PB_Unicode and will occupy 2 times the size in memory. You can read the file ...
by AZJIO
Sun Mar 24, 2024 9:06 pm
Forum: Off Topic
Topic: Good Freeware Stuff
Replies: 518
Views: 547156

Re: Good Freeware Stuff

ImDisk doesn't buffer in read mode because there's no point in doing so. In "rw" mode I haven't tested specifically with the ISO, but wim's mounted image recording mode naturally buffers the files you try to copy into the image, they become a virtual part of the image. During the LiveCD te...
by AZJIO
Sun Mar 24, 2024 5:33 pm
Forum: Coding Questions
Topic: Use one menu for multiple windows
Replies: 9
Views: 386

Re: Use one menu for multiple windows

if the first window where the creation of the menu is done is closed, can you still use the the menu To do this, you need to close the window and see what happens. You can conduct the tests yourself. If OpenWindow(0, 200, 200, 200, 100, "Example Menu") If CreateMenu(0, WindowID(0)) MenuTi...
by AZJIO
Sun Mar 24, 2024 4:54 pm
Forum: Coding Questions
Topic: Use one menu for multiple windows
Replies: 9
Views: 386

Re: Use one menu for multiple windows

If OpenWindow(0, 200, 200, 200, 100, "Example Menu") If CreateMenu(0, WindowID(0)) MenuTitle("Project") MenuItem(1, "Open" + Chr(9) + "Ctrl+O") MenuItem(2, "Save" + Chr(9) + "Ctrl+S") MenuItem(3, "Save as" + Chr(9) + "Ctrl+A...
by AZJIO
Sun Mar 24, 2024 9:32 am
Forum: Off Topic
Topic: Good Freeware Stuff
Replies: 518
Views: 547156

Re: Good Freeware Stuff

Psychophanta wrote: Sun Mar 24, 2024 7:48 am I'm looking for any program for Windows to create and manage .iso images as if it were a normal directory, with files and folders.

In case anyone knows :)
ImgBurn - creates iso
ImDisk - attaches a disk with read access. There is a disk saving function, but I didn't use it.
by AZJIO
Sun Mar 24, 2024 6:34 am
Forum: Coding Questions
Topic: How to catch the keyboard layout switch event?
Replies: 4
Views: 256

Re: How to catch the keyboard layout switch event?

RASHAD wrote: Sun Mar 24, 2024 4:31 am Catch Input language change while running CMD.exe
It doesn't work for me. How does your code differ from mine in terms of functionality?
by AZJIO
Sat Mar 23, 2024 7:26 pm
Forum: Coding Questions
Topic: How to catch the keyboard layout switch event?
Replies: 4
Views: 256

How to catch the keyboard layout switch event?

Sometimes "Hook" doesn't work. EnableExplicit ; Structure KBDLLHOOKSTRUCT ; vkCode.l ; scanCode.l ; flags.l ; time.l ; *dwExtraInfo.Long ; EndStructure Global hHook Procedure KeyboardHook(nCode, wParam, *kc.KBDLLHOOKSTRUCT) Static x Static c If nCode = #HC_ACTION Select *kc\vkCode Case 160...
by AZJIO
Fri Mar 22, 2024 6:04 am
Forum: Coding Questions
Topic: EscapeRegularExpression() function?
Replies: 5
Views: 213

Re: EscapeRegularExpression() function?

; AZJIO EnableExplicit Procedure ListToString(*Result.string, List StrList.s()) Protected Len, *Point ForEach StrList() Len + Len(StrList()) Next *Result\s = Space(Len) *Point = @*Result\s ForEach StrList() CopyMemoryString(StrList(), @*Point) Next EndProcedure Procedure.s EscapeRegularExpression(S...
by AZJIO
Wed Mar 20, 2024 6:50 pm
Forum: Coding Questions
Topic: [SOLVED] Drag'n'Drop and Admin mode
Replies: 11
Views: 355

Re: [SOLVED] Drag'n'Drop and Admin mode

boddhi I don't have time to study your code, but there are a lot of inconsistencies in it. Case #PB_Event_GadgetDrop ; XP ChangeWindowMessageFilter_ ChangeWindowMessageFilter_ will not work on WinXP PB 6.10b8 will not work on WinXP You use #WS_EX_ACCEPTFILES to assign a drag-and-drop style. But for...
by AZJIO
Wed Mar 20, 2024 5:35 pm
Forum: Coding Questions
Topic: [SOLVED] Drag'n'Drop and Admin mode
Replies: 11
Views: 355

Re: [SOLVED] Drag'n'Drop and Admin mode

boddhi
I use this in 3 programs:
ContMenuFiles
SubMenuWin7_10
zRegistration
I use it everywhere to transfer files from a file manager.
Ready example here