Can I use Delphi or C++Builder for Windows Mobile 6.1 Development?
Tag : delphi , By : Singularity
Date : March 29 2020, 07:55 AM
wish helps you You can do Compact Framework development in Delphi.NET (Prism?) but not natively in 2009. It was a hot topic in the community a few years ago when I was involved, and it basically came down to resources, cost of implementation and potential license fees that made it not worth doing for Borland (as they were at the time).
|
Using Delphi to modify the version information of another delphi program
Date : March 29 2020, 07:55 AM
I wish this help you I can't give a complete answer, but I can get you started. There is an article at DelphiDabbler.com that fills in how to get to the version information out of a file. GetFileVersionInfo is the Windows API to do that. To set it, I believe UpdateResource is the Windows API function you'll need to use. There is another article at CodeProject that covers this, using C, but it should give you a solid idea of what needs to be done. Good luck! // Credit to Michael Winter for this code!
Sz := GetLen;
GetMem(Data, Sz);
try
GetData(Data, Sz);
HFile := BeginUpdateResource(PChar(FileName), false);
if HFile = 0 then
RaiseLastWin32Error;
DoDiscard := true;
try
if not UpdateResource(HFile, RT_VERSION, PChar(1), 0, Data, Sz) then
RaiseLastWin32Error;
DoDiscard := false;
finally
if not EndUpdateResource(HFile, DoDiscard) then
RaiseLastWin32Error;
end;
finally
FreeMem(Data);
end;
|
MySQL - Collecting related rows from another table
Date : March 29 2020, 07:55 AM
Hope that helps I have three tables, that are like: select
users.*,
group_concat(badges.id, '=', badges.title separator ';') as badges_info
from users
left join badges_data on badges_data.user_id=users.id
inner join badges on badges.id=badges_data.badge_id
group by users.id
limit 100;
user.*,
badges_id=title;badges_id=title; ...
select
users.*,
badges.*
from users
left join badges_data on badges_data.user_id=users.id
inner join badges on badges.id=badges_data.badge_id
|
Android Studio 2.0 - Plugin is too old, please update to a more recent version, or set ANDROID_DAILY_OVERRIDE environmen
Date : March 29 2020, 07:55 AM
This might help you UH OH, Google Notice: "This website no longer provides downloads for Android Studio." classpath 'com.android.tools.build:gradle:2.3.0'
classpath 'com.android.tools.build:gradle:2.3.0-beta4'
classpath 'com.android.tools.build:gradle:2.4.0-alpha3'
distributionUrl=https\://services.gradle.org/distributions/gradle-3.4-all.zip
|
Delphi version specific compilation related to graphics and AnsiStrings units
Tag : delphi , By : user178372
Date : March 29 2020, 07:55 AM
|