Jan
29
Google advanced operators
Filed Under General | Leave a Comment
Fred pointed out this nice guide to Google's advanced operators. I knew less than half of the operators. (I only knew about several of the [all/]in* ones).
Jan
26
Dial-a-fix update (no version change)
Filed Under Software, Technical | 3 Comments
I have made a slight modification to Dial-a-fix so that it works on non-standard (i.e., not 96) "virtual DPI" settings. Windows uses its virtual DPI to scale fonts ("Small fonts" = 96, "Large fonts" = 120) and most programs become unusable because the burden of form scaling lies with the developer. Apparently, with Delphi 7 (and most likely many other versions), the form scaling is just plain broken. Each form's "Scaled" property was set to False, and a quick change was made at the beginning of each form creation procedure to add the ScaleBy function:
-
procedure TYourForm.FormCreate(Sender: TObject);
-
begin
-
if Screen.PixelsPerInch <> PixelsPerInch then
-
ScaleBy(Screen.PixelsPerInch, PixelsPerInch);
-
{..the rest of your FormCreate procedure..}
-
end;
I swear I will now begin making the Dial-a-fix tips page :)
Jan
19
Dial-a-fix "hang"
Filed Under Software, Technical | Leave a Comment
I've had a few machines that would not complete Dial-a-fix's Shell registration checkmark. They hang at regsvr32 shell32.dll /n /s /i:U. If you find that DAF hangs at shell32.dll, open task manager (Control+Shift+Esc or Control+Alt+Delete) and kill the regsvr32.exe process. You will then get an error message with error code 1. DAF will then complete the remaining shell registrations with no problem. On one machine, I moved on and performed some other tasks and came back to it, and it stopped happening. I have no idea what the problem is, or how to fix it. If any experienced technicians know what it might be, drop me a line at dial-a-fix@ (this domain).
Jan
17
Changing the theme...
Filed Under General | 4 Comments
Bear with me while I make adjustments.
Edit: Ok, I'm pretty much done.
Jan
15
Dial-a-fix v0.57 has been released!
Filed Under Dial-a-fix, Software | 3 Comments
A major, major update to Dial-a-fix has finally been released: v0.57!
Now I can work on the Dial-a-fix tips page, then v0.58 (which will have an associations fix tool).
I've now gotten $102 USD in donations since setting up the Paypal link! I'm already 1/5 of the way to my goal. Thank you all for your generous donations.
Jan
12
I will be working steadily through weekend to get Dial-a-fix v0.57 released. It has some pretty serious updates in it, and it can fix a lot of new issues. I hope to get it released by this Sunday, but if I can't, then the STL will get another 0.57 beta.
Note about donations: I'm trying to save up for a TechNet Plus subscription, which is $559.30 USD. I've got $97 USD thanks to donations from generous users, but it looks as though I have a long way to go. I hope to at least be accepted into the Vista CTP program, because I'm excited about all of the new features included in Vista. I've seen Vista December CTP, and it is pretty radically different than any previous version of Windows. A huge learning curve is up ahead.
Jan
2
Dial-a-fix v0.57 underway
Filed Under Dial-a-fix, Software | Leave a Comment
Dial-a-fix v0.57 is already in development! :)
I have found that the More... dialog needs re-tooling, otherwise it will be a button overload. I'm turning it into a drop-down box with the tooltip info replaced by an auto-updating text area. It will look great. Also, I'll be moving the registration center back to the main form (which will make Dial-a-fix tall again, but at least it will still fit on the screen in 640×480 resolution). I will also be putting an upper limit on the size of the policy dialog (so that people who are using 1600×1200 don't end up with a 7-foot wide policy dialog. This, and more will be coming in the next few weeks!
Jan
1
Dial-a-fix v0.56 final!
Filed Under Software | Leave a Comment
Happy new year.
Dial-a-fix 0.56 has been released.
Changes:
* Dropped 'beta' moniker
* Brand new policy scanner, supporting 53 restrictive policies
* Removed 'Rescan' button from main dialog (now on policy scanner dialog)
* Enabled XP theme support
* Removed 'always on top' buttons due to some API bugs
* Added safe mode detection; now disables inappropriate sections when in safe mode and safe mode + networking
* Added ole32.dll (+ CLSID fix), wshext.dll registrations
* Added Reinstall HelpSvc, Process Idle Tasks, and Reinstall SR (system restore) buttons
* Fix IE button now resets all IE web settings as well
* Added Vista detection (which will display an error message stating that Vista is not supported until Vista has gone final)
* ...and other things I forgot to log :)