-
Content Count
114 -
Joined
-
Last visited
-
Days Won
1
microtronx last won the day on May 10
microtronx had the most liked content!
Community Reputation
34 ExcellentTechnical Information
-
Delphi-Version
Delphi 10.3 Rio
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
TIP for Creating PDF Files from HTML / Image
microtronx replied to microtronx's topic in RTL and Delphi Object Pascal
Yes, but with thtdocument you do not have any dependencies to other libs/dll's ... -
TIP for Creating PDF Files from HTML / Image
microtronx posted a topic in RTL and Delphi Object Pascal
Hi folks, after searching a lot for different possibilities, Alexander remembered me that we can use his components (https://delphihtmlcomponents.com/) to create very simply pdf files on the fly. If you search for a component to create PDF files without much code from HTML (incl. using images files) use this code: thtdocument.HTMLtoPDFFile(ahtmlstring:string; aPDFfile:string); Thanks to @Alexander Sviridenkov for his wonderfull components. -
Communication from local computer into "rdp session"?
microtronx replied to microtronx's topic in Windows API
@Dave Nottage Do I need to create any registry-Keys on my client machine to get that demo work? Answer: YES, see: https://docs.microsoft.com/en-us/windows/win32/termserv/virtual-channel-client-registration -
Communication from local computer into "rdp session"?
microtronx replied to microtronx's topic in Windows API
I searched for hours and was not able to find anything ... and now a full demo Wow + Thanks Dave -
We've used https://www.nsoftware.com/sftp/sftpserver/ when we needed a lightweight server, installed in seconds with good functionality.
-
Hi, I need a way to send and receive "messages" to a connected rdp session or from a rdp session to i.e. start a software, which is only on local computer available from rdp session, i.e. for sending attachments to outlook. Is WTSAPI32 a good starting point or are there any ready to use components for send/receive over rdp / pipe? Thanks for some hints.
-
Hi guys, is there anyone who has used the Firebase Crashlytics SDK within a Delphi 11 App? I found Kastri with Firebase Analytics which works now ... I see the app in the Firebase Analytics console but I was not able to activate also the Crashlytics. Possible that someone has done this and can point me into the right direction.
-
Delphi 10.4.2 Right Click over a word -> Find Declaration, Not working.
microtronx replied to Juan C.Cilleruelo's topic in Delphi IDE and APIs
Same here. Do you have DevExpress Units in your uses? I see this problem only when those units are in use. In small projects its working but not in bigger ones.- 41 replies
-
- 10.4.2
- find declaration
-
(and 1 more)
Tagged with:
-
10.4.2: Android Projectoptions/Version/VersionCode problem
microtronx posted a topic in Cross-platform
It is a small bug but it annoys us every day: https://quality.embarcadero.com/browse/RSP-25667?jql=text ~ "versioncode" Please vote for it so it gets solved!-
- android
- projectoptions
-
(and 2 more)
Tagged with:
-
Installation went good from 10.4.1 to 10.4.2. Only problem I had, was with third party components / packages. I.e. I had to reinstall i.e. Reportbuilder 20.04 for Sydney but now it starts without any problems. Anyone using 10.4 (or 10.4.2) in production environment? We're stuck at 10.3 ...
-
Read and reapply design time properties to specific controls - runtime
microtronx replied to aehimself's topic in VCL
What about only creating your form without applying the saved changes? = That should be your design time state, or I'm wrong? -
Delphi is 26 years old - Marco's blog
microtronx replied to Mike Torrettinni's topic in Tips / Blogs / Tutorials / Videos
... wow, I also know that old DOS - blue background Turbo Pascal .. crazy. It feels like i worked with it "last year" ... so it feels like only 1-2 years of experience 😉 -
asmprofiler - Freeware Profiler for Delphi saved my day - Thanks
microtronx posted a topic in Tips / Blogs / Tutorials / Videos
Thank you very much @AndreMussche. Your https://github.com/andremussche/asmprofiler has saved my day ... my week ... after searching the bug and not finding it by myself ... and a "not working AQ..." demo 😉 I found your project! What a good coincidence! Don't know, if others know your work .. but they definitely should! Very good job! Thanks again! -
HTML Library review and sale: 25% off.
microtronx replied to Alexander Sviridenkov's topic in Delphi Third-Party
Very stable and good components + very good support. We can recommend htmlcomponents fully! Thanks for your work Alexander! -
Runtime create new "fields" with RTTI on a tComponent
microtronx replied to microtronx's topic in RTL and Delphi Object Pascal
I have created a global "tDictionary<tComponent, tmxEvents>" and a small helper function to return an entry or add an entry if it does not exists ... working perfect. Thanks for your tips guys.