Good choice to use 7z dll.
Use DLL Export Viewer v1.63 http://www.nirsoft.net/
We can see functions there and attach into DLL.. or use another components VclZip, ZipMaster, ZipForge, Zlib, etc..
:)
Good to know this!
But converting is not some VCL/FMX components option to develop I think (imho), but maybe as a tools-app.
If need a component then have to write some codes to match our need.
Cheers! :)
Good to know.
Agreed! Sometimes users sucks the correct data.
**"Supporting them a lot are kindly HUGE TIME to spend."**
I'm doing to have data validations before them really put/post into DB.
And another way is to have them to make sure for the data before post and make sure your app/system...
var
procPrepareData: TThread;
targetData: string;
begin
procPrepareData := TThread.CreateAnonymousThread(
procedure
var
i: integer;
begin
targetData := fnResultFromDLL();
end
)...
for XE5-XE6, check this maybe could help you much..
C:\Users\Public\Documents\Embarcadero\Studio\XX.0\Samples\Object Pascal\RTL\CrossPlatform Utils\AnonThread.pas
And use sample in:
C:\Users\Public\Documents\Embarcadero\Studio\XX.0\Samples\Object Pascal\RTL\CrossPlatform...
Well not easy to say that XE with FMX mobile support is wonderfull, but atleast they were cracking the possibilities way to have cross-platform development.
Sometimes we need to dig a lot to know how XE FMX works for specific devices, specially for iOS, in my exp FMX for Android is well so far...
I'll try this SecureBlackbox :)
One other thing, how to embed Command Prompt to TForm or TPanel? Is this also has supported about it?
Thanks for any.. :)