-
Content Count
2830 -
Joined
-
Last visited
-
Days Won
168
Everything posted by Uwe Raabe
-
While I have the same problem when using alternative registry keys (instead of BDS), I thought of creating a separate management tool, but as ever so often spare time is limited and valuable.
-
This usually happens when MMX has been installed for all users, i.e. as an admin. That will use HKLM for the Experts entry, which will be copied to HKCU when a user starts Delphi. As the installer didn't add these registry entries, it refuses to remove them when uninstalling (this is standard behavior of InnoSetup). Actually, these kind of quirks are the reason why Install for me only is recommended. If you are the only user at the system it doesn't matter at all and if you are not, each user will have its own copy of MMX installed (they can even have different versions). I always try to clean up as neatly as possible when uninstalling, but I didn't find a reliable way to do that without jumping through hoops with the registry and several user folders.
-
You can always configure a different (or even no) shortcut to any MMX command. See MMX properties -> Key bindings.
-
Threadvar "per object"
Uwe Raabe replied to chkaufmann's topic in Algorithms, Data Structures and Class Design
and for class var. -
Serialize/Deserialize Enums with no RTTI
Uwe Raabe replied to Larry Hengen's topic in RTL and Delphi Object Pascal
I know, that probably won't solve your problem, but I usually get rid of these kind of enumerations in favor of proper ones supported by RTTI. The numerical values are handles by record helpers: type TReportTypeCode = (reportTypeCodeSTR, reportTypeCodeLCTR, reportTypeCodeCDR, reportTypeCodeLVCTR, reportTypeCodeEFTR); TReportTypeCodeHelper = record helper for TReportTypeCode private const cMapping: array[TReportTypeCode] of Integer = (102, 106, 113, 14, 145); function GetAsInteger: Integer; procedure SetAsInteger(const Value: Integer); public property AsInteger: Integer read GetAsInteger write SetAsInteger; end; function TReportTypeCodeHelper.GetAsInteger: Integer; begin Result := cMapping[Self]; end; procedure TReportTypeCodeHelper.SetAsInteger(const Value: Integer); begin for var idx := Low(Self) to High(Self) do begin if cMapping[idx] = Value then begin Self := idx; Exit; end; end; raise EInvalidOperation.Create('invalid Integer value for TReportTypeCode'); end; Now there is no more casting to and from Integers. -
IIRC, they dropped the use of MS Document Viewer a while ago. While there are help items for a handful of Windows functions, there also is a hint to the MSDN online library, which IMHO is always the better up-to-date source.
-
Strange - this is what I see:
-
Perhaps the server outage made it one.
-
Variable might not have been initialized
Uwe Raabe replied to shineworld's topic in Delphi IDE and APIs
Given the use of Data in the following lines, I suspect that the begin end should wrap a much larger region. -
Variable might not have been initialized
Uwe Raabe replied to shineworld's topic in Delphi IDE and APIs
đź‘Ť -
Variable might not have been initialized
Uwe Raabe replied to shineworld's topic in Delphi IDE and APIs
Reading the code despite of its irritating formatting reveals the problem: WorkOrdersSelectedRow := WorkOrdersGrid.Selection.Top; if FWorkOrderManager.GetWorkOrderDataByIndex(WorkOrdersSelectedRow - 1, Data) then // evaluates file index FileIndex := ARow - 1; if (FileIndex < 0) or (FileIndex >= TWorkOrderData.FILE_DATA_SIZE) then Exit; FileIndex will not be initialized when the if clause fails. BTW, it also irritates that the compiler is charged guilty first. -
Essential Delphi Add-ons
-
What version of Delphi has the least amount of bugs throughout history?
Uwe Raabe replied to Al T's topic in Delphi IDE and APIs
I would love to see a bug-fixes-only release, but I am realistic enough to put my hopes pretty low. I also know that a lot of complaints about missing new features will be triggered by such a release. -
Mean as I am, I tried to pester the wizard with a pretty big chunk: https://github.com/microsoftgraph/msgraph-metadata/blob/master/openapi/v1.0/openapi.yaml Unfortunately it fails with a
-
A look into the GitHub repo reveals:
-
Current version is available on GitHub: https://github.com/UweRaabe/CompressPath
-
Product: Delphi Parser - AI claims - what does it mean?
Uwe Raabe replied to Jasonjac2's topic in Delphi Third-Party
That's what I was actually poining to. -
Product: Delphi Parser - AI claims - what does it mean?
Uwe Raabe replied to Jasonjac2's topic in Delphi Third-Party
and a bit more sophisticated: reFind.exe, the Search and Replace Utility Using Perl RegEx Expressions -
Recovering Connection (FireDAC)
-
I have a task scheduled exactly for that.
-
F2047 Circular unit reference.
Uwe Raabe replied to dmitrybv's topic in RTL and Delphi Object Pascal
The plethora of working Delphi programs are proof that there already exist concepts to eliminate dependencies between units. They may differ from those available in other programming languages, though. IMHO, circular dependencies should be eliminated even if they appear in implementation sections and thus making the code compile. I wouldn't support any request to extend that in any way leading to more circular dependencies. -
Only if you don't make use of Change Views. AFAIK, it also lacks Column-level Encryption.
-
Delphi 12.1 Amnesty price isn’t what I thought it was…
Uwe Raabe replied to Al T's topic in Delphi IDE and APIs
I guess everyone has got that now. -
Showing TMenuItem icons at design time in the IDE
Uwe Raabe replied to PeterPanettone's topic in Delphi IDE and APIs
AFAIK, the Delphi IDE Menu Designer did never support images. -
So they seem not to be able to manage it even when they hire the developer. Obviously that is more wishful thinking than perception of reality. I simply cannot see anything like that going to happen in the foreseeable future. BTW, I still even refuse to provide MMX via GetIt for several reasons.