Search found 5289 matches

by Kwai chang caine
Wed Mar 06, 2024 7:20 pm
Forum: The PureBasic Editor
Topic: [IDE tool] Code Localization
Replies: 4
Views: 975

Re: [IDE tool] Code Localization

Thanks for sharing 8)
by Kwai chang caine
Fri Mar 01, 2024 5:16 pm
Forum: Coding Questions
Topic: HTML characters convert {Resolved]
Replies: 6
Views: 290

Re: HTML characters convert {Resolved]

You may use a font in your IDE............. :shock: I did not know, after several decade i use PB, it's possible to change the font :oops: You know .... the numeric have his "UID" (Unique Identifier) KCC have his "UIN" (Unique Intelligency Neuronal) and when you have like me thi...
by Kwai chang caine
Fri Mar 01, 2024 3:35 pm
Forum: Coding Questions
Topic: HTML characters convert {Resolved]
Replies: 6
Views: 290

Re: HTML characters convert

First hello at all, and thanks a lot for your quick answer 8) I found with the Windows Tool CharacterTable the 'oe' as CHR(339) You have right :shock: After reading the answer of Little John :wink: i understand why i confused with this value, it's the Hexa value not decimal :oops: Thanks a lot for y...
by Kwai chang caine
Fri Mar 01, 2024 12:32 pm
Forum: Coding Questions
Topic: HTML characters convert {Resolved]
Replies: 6
Views: 290

HTML characters convert {Resolved]

Hello at all :D In French language there are a character "œ" made with 2 letters "o" and "e" glued together like for the word "cœur" => Heart in english :wink: I try to convert an HTML sentence with this word inside, for example : I love PureBasic and all the ...
by Kwai chang caine
Mon Feb 05, 2024 8:09 pm
Forum: Tricks 'n' Tips
Topic: GetIdleTime()
Replies: 3
Views: 439

Re: GetIdleTime()

Works nice here :wink:
Thanks for sharing 8)
by Kwai chang caine
Thu Feb 01, 2024 5:53 pm
Forum: Coding Questions
Topic: Benchmark PB
Replies: 14
Views: 1092

Re: Benchmark PB

Incredible !!!! :shock:
0.0560000017 seconds
Thanks a lot for your new code 8)

Image

and HOP.....in my basket 8)

@TENAJA
Excuse me for not answer to your message, i see it only now :oops:
So...later i thanks you very much for your nice link 8)
by Kwai chang caine
Wed Jan 31, 2024 7:56 pm
Forum: Coding Questions
Topic: Benchmark PB
Replies: 14
Views: 1092

Re: Benchmark PB

Thanks a lot for your precious explanation 8) After your nice code, I don't know if it's the good way :oops: but i can now, try to test the memory TimeStart = ElapsedMilliseconds() For i = 1 To 10000 *Ptr = AllocateMemory(i * 2) Sentence$ = RSet("", i, "*") PokeS(*Ptr, Sentence$,...
by Kwai chang caine
Tue Jan 30, 2024 5:10 pm
Forum: Coding Questions
Topic: Benchmark PB
Replies: 14
Views: 1092

Re: Benchmark PB

Hello threedslider :D Excuse me for the late answer :oops: i not receive the mail notification of your answer :| Not sure if there are someone can code a benchmark for you ? :? It's not my goal :wink: I wanted just have advice of MASTERS on my idea, and may be links of freewares, simple to read thei...
by Kwai chang caine
Mon Jan 29, 2024 12:53 pm
Forum: Coding Questions
Topic: Benchmark PB
Replies: 14
Views: 1092

Benchmark PB

Hello at all I want to test and compare all my machines :idea: I have see there are several freeware softwares (Everest, Geekbench, ...) for do that, but the result is often very hard to analyse, too much informations for me :oops: Do you believe, it's interesting to do that with PB, for just have a...
by Kwai chang caine
Fri Jan 12, 2024 9:29 pm
Forum: Tricks 'n' Tips
Topic: SendKeys Procedure
Replies: 11
Views: 8773

Re: SendKeys Procedure

Hello my friend IDLE :D

Little.... powerfull.... best working...In one word (very difficult to do for KCC :mrgreen:)

PERFECT !!!!!

I have replacing the EBS procedure by yours immediately in my program :wink:
Thanks a lot and have a very good day 8)
Your fan
KCC
by Kwai chang caine
Fri Jan 12, 2024 8:51 pm
Forum: Coding Questions
Topic: Len of path limit for FileSize() [Resolved]
Replies: 24
Views: 2498

Re: Len of path limit for FileSize() [Resolved]

Hello "Denaille" :mrgreen:
Happy to talk to you since this long time :wink:

I have not understand, you want a module of what ? :shock:
by Kwai chang caine
Wed Jan 10, 2024 8:44 pm
Forum: Coding Questions
Topic: Len of path limit for FileSize() [Resolved]
Replies: 24
Views: 2498

Re: Len of path limit for FileSize() [Resolved]

Thank you very much AZJIO and MESA for your precious usefull codes that I will keep preciously 8)
by Kwai chang caine
Wed Jan 10, 2024 8:16 pm
Forum: Tricks 'n' Tips
Topic: SendKeys Procedure
Replies: 11
Views: 8773

Re: SendKeys Procedure

I use this short and nice code of EBS for sending string 8) http://www.purebasic.fr/english/viewtopic.php?p=31486#31486 Procedure SendKeys(String.s) For Letter.l = 1 To Len(String) Delay(10) Key.s = Mid(String, Letter, 1) ; get virtual key code and shift state VK.w = VkKeyScan_(Asc(Key)) If VK = -1 ...