-
Content Count
38 -
Joined
-
Last visited
-
Days Won
1
Posts posted by sh17
-
-
i use only sqlite in my server application. All user access it over a REST-Api. So 30 Users are no problem.
-
1
-
-
The problem will be that there are many different versions of this format. There is no one correct scheme. And I think he will receive more of these invoices in the future
-
1
-
-
This is a ZUGFeRD-UBL-Invoice
My Repo LandrixSoftware/XRechnung-for-Delphi: XRechnung Implementation for Delphi (github.com) reads currently XRechnung in UBL and CII Format
If you can wait a little longer, UBL support for all other ZUGFeRD formats will be available in September
LandrixSoftware/ZUGFeRD-for-Delphi: ZUGFeRD / Factur-X Implementation for Delphi (github.com)
-
1
-
-
I set up the project again and incorporated all pull requests.
-
1
-
-
I'm interested in it too. Or does anyone know an implementation in C# or Java?
-
No activity in the repository. Open pull requests. Is there an alternative? What is currently the best choice for cryptography under Delphi?
-
-
-
I'm in the same situation right now. There's no Delphi client generator for Swagger? Damn it.
-
https://github.com/DelphiPraxis/DDevExtensions/releases/tag/v2.87
compiled pre-release, not fully tested yet
-
1
-
3
-
-
-
the according Visual Studio project will come shortly
I still have to prepare it, it looks a bit wild.
technical it uses https://github.com/3F/DllExport
-
In case someone wants to use the LibPhonenumber library from Google in Delphi. I've written a wrapper for the C # port of this library. Support for 32 bit and 64 bit.
-
3
-
2
-
-
Yes, definitely in Office 365.
-
Not very different
TMailOutlook = class(TObject) private const olMailItem = $00000000; private class function HaveActiveOleObject(const ClassName: string): boolean; public class procedure Execute(const _To,_ToCC,_ToBCC,_Subject,_Body,_Attachment : String); end; { TMailOutlook } class procedure TMailOutlook.Execute(const _To, _ToCC, _ToBCC, _Subject, _Body,_Attachment: String); var Outlook: OleVariant; MailV: Variant; begin if not HaveActiveOleObject('Outlook.Application') then Outlook := CreateOleObject('Outlook.Application') else Outlook:= GetActiveOleObject('Outlook.Application'); MailV := Outlook.CreateItem(olMailItem); if (_To <> '') then MailV.To := _To; if (_ToBCC <> '') then MailV.BCC:= _ToBCC; if (_ToCC <> '') then MailV.CC:= _ToCC; MailV.Subject := _Subject; MailV.Body := _Body; if _Attachment <> '' then if FileExists(_Attachment) then MailV.Attachments.Add(_Attachment); MailV.Display; end; //// Want to Bypass exception so we check this without using the activex unit class function TMailOutlook.HaveActiveOleObject( const ClassName: string): boolean; var ClassID: TCLSID; Unknown: IUnknown; oleresult: HResult; begin ClassID := ProgIDToClassID(ClassName); oleResult:= GetActiveObject(ClassID, nil, Unknown); result:= Succeeded(oleResult); end;
-
1
-
-
I updated the repository.
-
2
-
-
I've been looking for a long time. There is no Delphi CalDAV server component. SabreDAV seems to be the best basis to develop your own server. Or as the basis for a port.-
1
-
-
There is no CalDAV server implementation for Delphi.
A good base is https://sabre.io/dav/
I don't know how complex a port to Delphi is.CalDAV Clients come from https://www.tmssoftware.com/site/cloudpack.asp and https://www.sync-components.com/dav-delphi-components/caldav
-
-
14 minutes ago, dummzeuch said:Make the browser window narrower and it disappears altogether. Then you have to use the menu. Not really an improvement.
not very handy, to many clicks, sry
-
Is there a way to place the button above?
I have to scroll down each time to make the button visible. Very annoying on a big screen.
-
2
-
-
-
Very constant, I hope these are not just passive users. 🙂
-
Any delphi components for VNC or RemoteDesktop?
in General Help
Posted
spawn451/Remote-Desktop-Streamer-Delphi: A lightweight remote desktop streaming and control solution built entirely in Delphi