Search found 1414 matches

by Auge_Ohr
Mon Feb 26, 2024 5:02 pm
Forum: eXpress++ Support
Topic: Excel remove duplicates
Replies: 16
Views: 851

Re: Excel remove duplicates

hi,

have you try

Code: Select all

ActiveSheet.Range("A1:C100").RemoveDuplicates
The following code sample removes duplicates with the first 2 columns

Code: Select all

ActiveSheet.Range("A1:C100").RemoveDuplicates Columns:=Array(1,2), Header:=xlYes
by Auge_Ohr
Thu Feb 01, 2024 7:24 am
Forum: eXpress++ Support
Topic: ARTIFICIAL INTELLIGENCE (AI)
Replies: 9
Views: 1194

Re: ARTIFICIAL INTELLIGENCE (AI)

hi Wolfgang, Will xBase++/Express++ be suitable for Artificial Intelligence projects now and in the future ? i think only "local" own AI-Model using own Data will work correct you can compile Source of llama.cpp for 32 Bit DLL but that does not make much Sense it will general work but "local" AI-Mod...
by Auge_Ohr
Thu Feb 01, 2024 2:24 am
Forum: eXpress++ Support
Topic: ARTIFICIAL INTELLIGENCE (AI)
Replies: 9
Views: 1194

Re: ARTIFICIAL INTELLIGENCE (AI)

hi Chris, i´m talking about "local" AI-Model "trained" with own Data which need much RAM i do have a Fivewin and HMG native Solution but it must be 64 Bit App to use llama64.dll you can get Source using "Github Desktop" and type "git clone https://github.com/ggerganov/llama.cpp" and make some change...
by Auge_Ohr
Tue Jan 30, 2024 3:09 pm
Forum: eXpress++ Support
Topic: ARTIFICIAL INTELLIGENCE (AI)
Replies: 9
Views: 1194

Re: ARTIFICIAL INTELLIGENCE (AI)

hi,
unixkd wrote: Tue Jan 30, 2024 1:56 pm Will xBase++/Express++ be suitable for Artificial Intelligence projects now and in the future ?
as long as Xbase++ use 32 Bit App it is not possible to use "big" AI-Model > 4 GB loading into RAM
by Auge_Ohr
Wed Dec 20, 2023 3:59 am
Forum: Xbase++ 2.0
Topic: Opening A Website
Replies: 16
Views: 4083

Re: Opening A Website

hi Chris, It looks as Edge doesn't support it? the EDGE / Webview2 Implementation itself does support Drag_Source but EDGE internal PDF Viewer are different when drop a PDR to my Webview2 Environment it open new (Own) Windows and EDGE PDF Viewer but drag/drop text from a pdf does not work in that Wi...
by Auge_Ohr
Tue Dec 19, 2023 4:30 pm
Forum: Xbase++ 2.0
Topic: Opening A Website
Replies: 16
Views: 4083

Re: Opening A Website

hi Tom, i don´t use EDGE PDF Viewer, i use SumtraPDF as external PDF Viewer which use much less Memory as i understand Chris have used IE as Interface for DragDrop to get Email / Attachment from Outlook this would be not nessesery if Xbase++ App can be use as OLE Drop_Target https://i.postimg.cc/NfN...
by Auge_Ohr
Tue Dec 19, 2023 3:26 am
Forum: Xbase++ 2.0
Topic: Opening A Website
Replies: 16
Views: 4083

Re: Opening A Website

hi Chris, If you open a PDF with Edge, you will see that you can't drag a selected word. ok, understand you mean "internal" EDGE PDF Viewer which is Part of Webview2 Answer from ChatGPT To mark text in the Microsoft Edge PDF Viewer and drag it to Wordpad, you can follow these steps: 1. Open the PDF ...
by Auge_Ohr
Tue Dec 19, 2023 2:00 am
Forum: Xbase++ 2.0
Topic: Opening A Website
Replies: 16
Views: 4083

Re: Opening A Website

hi, i can not confirm that Dblckick does not mark Word for Dragdrop in Webviev2 in my Sample (HMG, Fivewin) Webview2_DD.gif Webview2 Control must be register as Drag_Source else it will not mark/Dragdrop --- @Chris : you can use SumatraPDF Viewer without Browser and mark/Dragdrop as CF_TEXT p.s. can...
by Auge_Ohr
Mon Dec 18, 2023 6:11 pm
Forum: Xbase++ 2.0
Topic: Opening A Website
Replies: 16
Views: 4083

Re: Opening A Website

hi, it is IMHO not a Problem of EDGE itself, it is while EDGE internal PDF Viewer does support OLE Drag_Source Xbase++ App can not receive OLE Drop as Drop_Target, only CF_TEXT or CF_BITMAP work with DragAccept() --- there is are Tools, like xPDFreader, to extract TEXT from PDF https://www.xpdfreade...