Posted by jpluimers on 2016/10/19
One of the nitpicks in VMware Fusion is that it has no keyboard shortcut for Resume or Suspend. I was trying to add Command-R and Command-S for those but that didn’t work out.
Since the links below seem to work for some other applications, I’ve kept them:
–jeroen
Like this:
Like Loading...
Posted in Apple, Development, Keyboards and Keyboard Shortcuts, Mac, Mac OS X / OS X / MacOS, MacBook, MacBook Retina, MacBook-Air, MacBook-Pro, MacMini, OS X 10.10 Yosemite, OS X 10.11 El Capitan, OS X 10.9 Mavericks, Power User, Software Development | Leave a Comment »
Posted by jpluimers on 2016/10/19
I like repositories to have as much of the information in text format.
Delphi traditionally puts both the MAINICON and the VersionInfo resources in a binary .res file and also updates that file on almost every recompile.
There are quite a few posts explaining how to get them from text, but a version controlled example works best for me, so there is one at https://github.com/jpluimers/atom-table-monitor/blob/master/ATOMScannerConsole
The trick is to:
- put your resources in a text RC file that can be compiled through a resource compiler
- add these to your Delphi project via the project manager, so it generated RcCompile elements which instructs the build process to run the resource compiler first:
|
<RcCompile Include="MAINICON.rc"> |
|
<ModuleName>MAINICON.rc</ModuleName> |
|
<Form>MAINICON.res</Form> |
|
</RcCompile> |
|
<RcCompile Include="VERSIONINFO.rc"> |
|
<ModuleName>VERSIONINFO.rc</ModuleName> |
|
<Form>VERSIONINFO.res</Form> |
|
</RcCompile> |
Here are the example files:
Read the rest of this entry »
Like this:
Like Loading...
Posted in Delphi, Delphi 10 Seattle, Delphi 2007, Delphi 2009, Delphi 2010, Delphi XE, Delphi XE2, Delphi XE3, Delphi XE4, Delphi XE5, Delphi XE6, Delphi XE7, Delphi XE8, Development, QC, Software Development | 2 Comments »