I know how to do it in PB. The point is to do it in Excel.....NicTheQuick wrote: Wed Jun 25, 2025 3:44 pm ...
I know it's Off Topic but here is an example using Purebasic:Code: Select all
....
Search found 878 matches
- Wed Jun 25, 2025 4:52 pm
- Forum: Off Topic
- Topic: Unique id of a cell text in Excel?
- Replies: 5
- Views: 955
Re: Unique id of a cell text in Excel?
- Wed Jun 25, 2025 3:12 pm
- Forum: Off Topic
- Topic: Unique id of a cell text in Excel?
- Replies: 5
- Views: 955
Unique id of a cell text in Excel?
I am member of a group that organizes and conducts conferences. We have people that attend those conferences and those who present. We give certificates of attendance and contribution. The data are stored in excel sheets that are inserted in MS Word via Email Merge and using Adobe Acrobat Pro we ...
- Tue May 13, 2025 6:19 pm
- Forum: Off Topic
- Topic: Logic behind auto update my app?
- Replies: 8
- Views: 3116
Re: Logic behind auto update my app?
I saw "repacks sites" (in case, be VERY careful!) that do not only have cracks of anything; they also offer "much more compressed" downloads!
This is to say:
Do not waste too much of your time about copy/update protection!
…but OPTIMAL, LOSSLESS compression may be worth a look… (again: in case ...
- Tue May 13, 2025 6:08 pm
- Forum: Announcement
- Topic: [GAME] ONET Monsters
- Replies: 22
- Views: 6750
Re: [GAME] ONET Monsters
When running DX9 exe I get error: Game subsystem cannot be initialized! : Sound
When running DX11 exe I get error: Game subsystem cannot be initialized! : Sprite
I have a Dell Vostro pc with Win 10 x64, AMD Radeon R9 360 graphics. My pc has built-in audio card but I have no speakers.
When running DX11 exe I get error: Game subsystem cannot be initialized! : Sprite
I have a Dell Vostro pc with Win 10 x64, AMD Radeon R9 360 graphics. My pc has built-in audio card but I have no speakers.
- Fri Apr 25, 2025 10:53 pm
- Forum: Off Topic
- Topic: Logic behind auto update my app?
- Replies: 8
- Views: 3116
Re: Logic behind auto update my app?
How do you implement it?tj1010 wrote: Fri Apr 25, 2025 6:09 pmI actually use PB packer library and signed hash tree for one of my products.
- Fri Apr 25, 2025 6:04 pm
- Forum: Off Topic
- Topic: Logic behind auto update my app?
- Replies: 8
- Views: 3116
Re: Logic behind auto update my app?
Secondary process that has privileges to overwrite files that removes a hash of the signature appended to the Elf, Mach, or PE, then version&size check over http. What good is MITM if they can't break RSA or SPHINCS? The only attack is if they hack the server and make end users download a big file ...
- Fri Apr 25, 2025 4:55 pm
- Forum: Off Topic
- Topic: Logic behind auto update my app?
- Replies: 8
- Views: 3116
Re: Logic behind auto update my app?
I got a notification that a user called 'Herbert Terry' posted a replay here but I do not see either his post or himself at all in the members list. Anyway. To avoid DNS attacks, spoofings and so on, I thought to have a simple php file with content like the folowing:
<?php
echo "iV7bpLUqiqGhk/1B ...
<?php
echo "iV7bpLUqiqGhk/1B ...
- Wed Apr 23, 2025 9:10 pm
- Forum: Coding Questions
- Topic: MessageRequester Positioning
- Replies: 8
- Views: 1027
Re: MessageRequester Positioning
I use the following code. Some code parts came from this forum.
UsePNGImageDecoder()
Enumeration
#MsgWindow = $FFF
#Msg_cont_title
#Msg_canvas_title
#Msg_txt_title
#Msg_img_close
#Msg_cont_message
#Msg_canvas_message_back
#Msg_img_message_back
#Msg_txt_message
#Msg_img_main
#Msg_OK
#Msg ...
UsePNGImageDecoder()
Enumeration
#MsgWindow = $FFF
#Msg_cont_title
#Msg_canvas_title
#Msg_txt_title
#Msg_img_close
#Msg_cont_message
#Msg_canvas_message_back
#Msg_img_message_back
#Msg_txt_message
#Msg_img_main
#Msg_OK
#Msg ...
- Wed Apr 16, 2025 2:42 pm
- Forum: Coding Questions
- Topic: I miss something with Base64 and AES.
- Replies: 19
- Views: 779
Re: I miss something with Base64 and AES.
That's it, I quit. I will start fishing from now on. Thank you very much for your replays and your time! Be good!!
- Wed Apr 16, 2025 2:03 pm
- Forum: Coding Questions
- Topic: I miss something with Base64 and AES.
- Replies: 19
- Views: 779
Re: I miss something with Base64 and AES.
Everything's fine here. The code works exactly as expected.
With all my love and respect, you keep telling that. How can you say so? The point is to get the Base64 string from the php file and decode it correctly and not just pass it in a string var. Uncomment ReceiveHTTPMemory , use it to get ...
- Tue Apr 15, 2025 7:30 pm
- Forum: Coding Questions
- Topic: I miss something with Base64 and AES.
- Replies: 19
- Views: 779
Re: I miss something with Base64 and AES.
It would be better if you would actually post a working example code.
Ok. At first, we have:
str$ = "Some text to test. Some text too."
size = StringByteLength(str$) + 2
*out = AllocateMemory(size)
AESEncoder(@str$, *out, size, ?key, 256, ?iv, #PB_Cipher_CBC)
Encoded$ = Base64Encoder(*out, size ...
- Tue Apr 15, 2025 4:46 pm
- Forum: Coding Questions
- Topic: I miss something with Base64 and AES.
- Replies: 19
- Views: 779
I miss something with Base64 and AES.
I use the following code to encrypt some text:
str$="some text"
size = StringByteLength(str$)+2
*buf = AllocateMemory(size)
*out = AllocateMemory(size)
size2 = size*1.5
PokeS(*buf,str$,size)
AESEncoder(*buf,*out,size,?key,256,?iv,#PB_Cipher_CBC)
Encoded$ = Base64Encoder(*out, size)
Debug Encoded ...
str$="some text"
size = StringByteLength(str$)+2
*buf = AllocateMemory(size)
*out = AllocateMemory(size)
size2 = size*1.5
PokeS(*buf,str$,size)
AESEncoder(*buf,*out,size,?key,256,?iv,#PB_Cipher_CBC)
Encoded$ = Base64Encoder(*out, size)
Debug Encoded ...
- Mon Apr 14, 2025 1:45 pm
- Forum: Off Topic
- Topic: Logic behind auto update my app?
- Replies: 8
- Views: 3116
Logic behind auto update my app?
I make a Window app (it is not listed in Windows store) and I want to add support for checking online for newer version and if so, run the update. I have a website where I can upload the updated version. How could it search for the newer version? I do not want code, but the logic behind that. What ...
- Fri Mar 14, 2025 6:09 pm
- Forum: General Discussion
- Topic: My app is recognized as virus?
- Replies: 6
- Views: 1250
Re: My app is recognized as virus?
Thank you for your fast replay. I just did it and wait.Fred wrote: Fri Mar 14, 2025 5:50 pm Submit your exe to MS so they can fix it: https://www.microsoft.com/en-us/wdsi/fi ... d3ac9c6af4
- Fri Mar 14, 2025 5:47 pm
- Forum: General Discussion
- Topic: My app is recognized as virus?
- Replies: 6
- Views: 1250
My app is recognized as virus?
Not pretty sure if my post belongs here, if not, please, transfer it where it belongs. I make a school library app that uses SQLite db to store data for books, students, teachers and lendings. With PB 5.72 I had no problem. With version 6.12, Windows 10 Security refers that my exe file is infected ...