-
Content Count
1301 -
Joined
-
Last visited
-
Days Won
28
Everything posted by Sherlock
-
Where is the "Save Desktop..." menu item in the Delphi 10.3 Rio IDE?
Sherlock replied to PeterPanettone's topic in Delphi IDE and APIs
Only German engineers can look at the term "hand brake" and go "Yep! That should be done with a pedal". -
ABI Changes in RAD Studio 10.3
Sherlock replied to David Millington's topic in RTL and Delphi Object Pascal
Thanks fo the view under the hood! Please, more!! -
Me too!!
-
This is indeed a good question, however I believe it to be a mine field. Especially if you want to be able to deploy your software over all Windows versions that are currently in use. It is kind of a waste of time to find out and implement best practices for installers, when you are actually developing something else, say an MP3 player. Don't forget that, ideally, every customer/user will have to use this setup only once, and your software many times, so where should your time really be invested? I use Inno Script, and I am very happy with it.
-
Feature request for SPOILER button with code formatting
Sherlock replied to Shrinavat's topic in Community Management
Your goal would be to be able to fold away large blocks of code, correct? -
AFAIK Andy would rather get no money than having to submit to some of the issues he has with the contract(s) that would come with it.
-
@Marco Cantu is reading here. So we just might get some "insider" information soon.
-
CrossPlatform uPnP solutions for Delphi
Sherlock replied to Ugochukwu Mmaduekwe's topic in Network, Cloud and Web
I've always found other languages to be a good source of inspiration, in recent years especially Python. So this here https://www.electricmonk.nl/log/2016/07/05/exploring-upnp-with-python/ looks like a promising start. Maybe we could turn this into a community project? -
Pesky with overcome by wits.
-
I agree with @Rollo62. The TreeView is a bit cumbersome on mobile devices. I have sidetracked this issue for now. As soon as I come up with a solution I'll post it here.
-
Done..
-
@ihxPlease, explain what you mean. Is it safe to assume, you want the previous post deleted?
-
I get all the logging I need in the PAServer using the regular built in log.d. Just out of curiosity: Why the dylib? If it is your own, just compile it into your program and make it monolithic...the good old Delphi way.
- 8 replies
-
- osx
- delphi 10.2.1
-
(and 1 more)
Tagged with:
-
How align a same form in client side and server side respectively?
Sherlock replied to flashcoder's topic in General Help
Wouldn't it be easier to render everything on the client side and just transfer the data needed from the server? Some form of JSON should suffice. All controls and their states should be listed and you can build the form accordingly. The hardest part would be the communication between client and server. -
TLanguages - Localization tool for FMX and VCL
Sherlock replied to Alberto Miola's topic in I made this
Correct. Apparently I am still hung over and party mode wont shut off. Sorry about that. -
I really hate this type of paranoia constructions. What do you think about?
Sherlock replied to Juan C.Cilleruelo's topic in Algorithms, Data Structures and Class Design
@Dalija Prasnikar:The context was "simple test programs". No regular users around those...I hope. -
TLanguages - Localization tool for FMX and VCL
Sherlock replied to Alberto Miola's topic in I made this
So can the language be switched in the running application? -
https://stackoverflow.com/questions/17158300/how-to-get-set-folder-type-in-c-sharp This should nudge you in the right direction, but it seems a bit...off putting.
-
When you edit your post, just place the cursor before the <OT> then press Backspace (<-) till the empty quote is gone.
-
Is this method good to delete last character?
Sherlock replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
You are aware of TStringLists DelimitedText property? StrList := TstringList.Create; StrList.Delimiter := ','; StrList.StrictDelimiter := True; AddValuesToList(StrList); CSVString := StrList.DelimitedText; // No trailing comma, no hassle, easy to read, not hard to explain..even 10 years from now Have not measured time on this yet, but unless you are processing strings in the millions, no worries. -
This is very old, but should still be valid (at least the connection part): https://www.youtube.com/watch?v=zORe2voUHIU Please note that the prices may be outdated. And a first glance showed, they have an XE8 PAServer preinstalled, nothing newer.
-
For a start this should be right for you: https://www.macincloud.com/ Later on you may find that a Mac Mini for 900€ is not half bad. It can be put in some rack or closet and just host your PAServer, or you can use it work with and host a windows VM.
-
Is there an SVN client wrapper/library fro Delphi.
Sherlock replied to Tommi Prami's topic in Delphi Third-Party
You probably mean VersionInsight and VersionInsight+ Sherlock -
Debugging multiple DLLs simultaneously
Sherlock replied to Neutral General's topic in Delphi IDE and APIs
It is always good to try and be better than the hosting OS, and if the service is that vital, I'm sure you made risk assessments leading to counter measures for DLL-injection and the overall adverse effects of DLL-Hell. If you did it just because you could...I strongly advise to reconsider. But we are drifting away from the topic. Sorry for that. -
Debugging multiple DLLs simultaneously
Sherlock replied to Neutral General's topic in Delphi IDE and APIs
Considering you'll have to compile all the DLLs with every new release anyway in order to avoid at least part of DLL-Hell I fullheartedly agree. Furthermore DLLs are quite a security issue: https://www.youtube.com/watch?v=HVigruKph74