Search found 2887 matches

by wriedmann
Sun Mar 31, 2024 9:45 am
Forum: Deutsches Forum
Topic: WANTED
Replies: 3
Views: 368

Re: WANTED

Hallo Franz, ich denke, das Problem ist mehrfach: ich denke, alle von uns haben mehr als genug Arbeit, und die Übernahme von anderen Programmen ist schwierig und zeitaufwendig, und kaum kostendeckend leistbar. So was bekommt man nur aus Kulanz hin. Wir haben das bei einem Kunden gemacht, der interne...
by wriedmann
Fri Mar 29, 2024 12:49 pm
Forum: VO & Vulcan
Topic: VO 2740 OLEAutoObject works with Excel 64bit WHY?
Replies: 7
Views: 697

Re: VO 2740 OLEAutoObject works with Excel 64bit WHY?

Hi Luc,
thank you very much for this!
Maybe I'm able to port that to X# and build a COM library from it.
Wolfgang
by wriedmann
Fri Mar 22, 2024 4:32 am
Forum: Product
Topic: SQL Forum?
Replies: 7
Views: 552

Re: SQL Forum?

Hi,
if you are interested to beta test the SQL RDD, please mail Robert as stated in the announcement.
Having access only the forum without having access to the software itself makes no sense.
Wolfgang
by wriedmann
Thu Mar 21, 2024 4:31 am
Forum: VO & Vulcan
Topic: VO 2740 OLEAutoObject works with Excel 64bit WHY?
Replies: 7
Views: 697

Re: VO 2740 OLEAutoObject works with Excel 64bit WHY?

Hi Kurt,
OLE/COM can cross the 32/64 bit border.
In fact, OLE is the only possibility for 32 bit applications (like VO) to drive Outlook 64 bit as MAPI does not works on 64 bit applications (it was impossible for Microsoft to port MAPI from 32 to 64 bit).
Wolfgang
by wriedmann
Thu Mar 21, 2024 4:27 am
Forum: Product
Topic: SQL Forum?
Replies: 7
Views: 552

Re: SQL Forum?

Hello,
do you have requested access to the beta group? This forum is a private only and not visibile to others.
Wolfgang
by wriedmann
Sat Mar 16, 2024 9:07 am
Forum: Product
Topic: Textblock
Replies: 9
Views: 567

Re: Textblock

Hi Horst,
in X# you can use

Code: Select all

/* method xyz() 
return */
I have seens several issues caused by textblocks during the migration to X#.
Wolfgang
by wriedmann
Sat Mar 16, 2024 6:03 am
Forum: Product
Topic: Miscellaneous questions about converting VO code to X#
Replies: 43
Views: 2216

Re: Miscellaneous questions about converting VO code to X#

Hi Kees, I would do a subclass for this window, add a protected Dictionary<string,Control>, and use code like this: method GetControl( cName as string ) as control local oReturn as Control if _oControls == null .or. _oControls:Count == 0 _oControls := Dictionary<string,Control>{} local aControls as ...
by wriedmann
Tue Mar 12, 2024 7:34 am
Forum: Deutsches Forum
Topic: Änderungen in X# 2.18.0.4
Replies: 7
Views: 448

Re: Änderungen in X# 2.18.0.4

Hallo Franz,
ich habe das mal probiert zusammenzuschreiben:
https://docs.xsharp.it/doku.php?id=othe ... patibility
Wolfgang
by wriedmann
Tue Mar 12, 2024 6:47 am
Forum: Deutsches Forum
Topic: Änderungen in X# 2.18.0.4
Replies: 7
Views: 448

Re: Änderungen in X# 2.18.0.4

Hallo Franz,
zum COM-Modul: so lange Du nicht die Versionsnummer weitersetzt, ist das für Dein VO-Programm und das System immer dieselbe DLL.
Erst wenn Du die Versionsnummer änderst, musst Du Dein Manifest anpassen.
Wolfgang
by wriedmann
Sat Mar 09, 2024 10:36 am
Forum: Deutsches Forum
Topic: X# auf Apple Mac
Replies: 8
Views: 477

Re: X# auf Apple Mac

Hallo Franz,
ja, es gibt .NET auf dem Mac, und es sollte auch mit X# gehen.
Du musst halt mit MAUI als GUI-Bibliothek arbeiten:
https://dotnet.microsoft.com/en-us/apps/maui
Wolfgang