Search found 66 matches

by camille
Fri Mar 25, 2022 9:18 am
Forum: Tricks 'n' Tips
Topic: Convert to hex (HexIt)
Replies: 23
Views: 2356

Re: Convert to hex (HexIt)

This turned into much more that I was expecting^^ Thanks again!
by camille
Fri Mar 11, 2022 9:03 am
Forum: Coding Questions
Topic: Convert string to hex with a specific format?
Replies: 17
Views: 1915

Re: Convert string to hex with a specific format?

@All Thank you!

@infratec
:D That's absolutely perfect and works exactly as I need it to. Brilliant!
by camille
Thu Mar 10, 2022 9:49 pm
Forum: Coding Questions
Topic: Convert string to hex with a specific format?
Replies: 17
Views: 1915

Convert string to hex with a specific format?

Hi, does anyone have a function to convert a normal string to a hex output like this (unicode, if a char has multiple bytes, all of them are shown) and returns that as a string as well? E.g. for: Chinese-漢-character https://i.postimg.cc/hPR3ymDr/1.png A space must be between all bytes to improve rea...
by camille
Mon Jan 17, 2022 11:29 am
Forum: Coding Questions
Topic: How to use Oracle Outside In Technology (previewing files)?
Replies: 0
Views: 855

How to use Oracle Outside In Technology (previewing files)?

Hello! Total Commander (a file manager) uses ulister (a plugin) that makes use of "Oracle Outside In Technology". It supports a large variety of formats that it can preview (without the belonging software installed). E.g. (not the most recent list): Supported formats: https://docs.oracle.c...
by camille
Tue Oct 05, 2021 11:55 am
Forum: Applications - Feedback and Discussion
Topic: IceDesign GUI designer
Replies: 575
Views: 142154

Re: IceDesign (New) modern GUI designer

Can this output dpi aware code (at least even in its simplest form)?

E.g. for a discussion look here: viewtopic.php?f=12&t=70344
by camille
Mon Dec 28, 2020 5:55 pm
Forum: Coding Questions
Topic: Calling a procedure from another procedure
Replies: 4
Views: 898

Re: Calling a procedure from another procedure

To getRecord().
by camille
Thu Dec 17, 2020 11:06 am
Forum: Tricks 'n' Tips
Topic: (New) Virtual ListIcon with Check Boxes & Images [Windows]
Replies: 35
Views: 7460

Re: (New) Virtual ListIcon with Check Boxes & Images [Window

No problem and thanks for the update

That bug is fixed in vie
by camille
Thu Dec 17, 2020 10:01 am
Forum: Coding Questions
Topic: Recursive thread function?
Replies: 10
Views: 1881

Re: Recursive thread function?

Thanks a lot @infratec,

I hope I've got it now :oops:
by camille
Thu Dec 17, 2020 9:57 am
Forum: Tricks 'n' Tips
Topic: (New) Virtual ListIcon with Check Boxes & Images [Windows]
Replies: 35
Views: 7460

Re: (New) Virtual ListIcon with Check Boxes & Images [Window

Thank you RASHAD.

A small bug (for the latest revision):

When double clicking on an editable row entry (e.g. in column "TEST2") in any row
and then (without leaving the editable text via escape / return key) clicking on a different row
will set the checkmark box for that row...
by camille
Tue Dec 15, 2020 12:50 am
Forum: Tricks 'n' Tips
Topic: (New) Virtual ListIcon with Check Boxes & Images [Windows]
Replies: 35
Views: 7460

Re: Virtual ListIcon with Check Boxes & Images [Windows]

Thanks for the updates RASHAD. With the latest update there is a bug. Click the checkmark box in one row. When you now click on any other row (e.g. in column "TEST2") then the checkmark box will automatically be filled in that row as well. This shouldn't happen. If you untick the checkmark...
by camille
Mon Dec 14, 2020 11:48 pm
Forum: Coding Questions
Topic: Recursive thread function?
Replies: 10
Views: 1881

Re: Recursive thread function?

I've stripped everything for the bare minimum... Thread_SSD.pb XIncludeFile "enumerations.pbi" : UseModule Enums XIncludeFile "SimpleScanDir_Threaded.pbi" Define.i thread_SimpleScanDir SSDThread.SimpleScanDir::SSD_PARAMS ClearMap(SSDThread\ItemInfos()) SSDThread\path = "D:\I...
by camille
Mon Dec 14, 2020 10:35 pm
Forum: Coding Questions
Topic: Recursive thread function?
Replies: 10
Views: 1881

Re: Recursive thread function?

I'm afraid I have to ask a follow up question... I've added a count mechanism to the ScanDir function so that I'm able to let it use a PostEvent() on start and when it ends and in the main loop two Cases to track these states Case #EventBeginProcessing Debug "Thread begin processing" Case ...
by camille
Sun Dec 13, 2020 10:50 am
Forum: Coding Questions
Topic: Recursive thread function?
Replies: 10
Views: 1881

Re: Recursive thread function?

Why you would like to delete the allocated memory inside the function? Don't you use the filled items outside? You're absolutely right :oops: This needs to be done in the calling part outside of the module (when I need the thread to be initialized again) you add the sub directory to path, but you n...
by camille
Sun Dec 13, 2020 10:20 am
Forum: Coding Questions
Topic: Recursive thread function?
Replies: 10
Views: 1881

Re: Recursive thread function?

Hi STARGÅTE,

yeah, I've seen this and edit the post accordingly. Unfortunately you've seen the old version of my post :)
by camille
Sun Dec 13, 2020 9:37 am
Forum: Coding Questions
Topic: Recursive thread function?
Replies: 10
Views: 1881

Recursive thread function?

Hello! I'm trying to do a threaded function that needs to call itself for recursion... This is what I have done so far: DeclareModule SimpleScanDir Structure SSD_PARAMS Map ItemInfos.i() path.s pattern.s EndStructure NewMap PathExclusions.s() PathExclusions(".") = "" PathExclusio...