|
Post by The Jackal on Nov 25, 2019 16:19:56 GMT -8
Run95 is an imitation of the Windows 95 run dialog box. Like the original, it can open program files, documents or folders and supports drag & drop. Compared with the standard run dialog box, Run95 has the following advantages: * Run95 is a standalone executable. This means you can create links to Run95 and then drop files on the Run95 icon to open them with the command line editor. Like this, you can also define a hotkey for Run95, add it to the "Send to..." menu in Explorer by creating a link to Run95 in your "SendTo" folder or add it to the "Quick Launch" bar. Run95: www.flos-freeware.ch/archive.html (c) Florian Balmer 1999-2011 It's pretty close to the real thing, but I wanted it to be more authentic looking, so I tweaked it a little in Resource Hacker. I present "Run2K": Download attached to this post if you want it, and video of it here of it in action. EDIT: Updated slightly to make it a little more correct. Download link includes the old version as well as the new one + untouched Run95. Attachments:run95.7z (6.24 KB)
|
|
|
Post by travis on Oct 16, 2020 15:24:47 GMT -8
I took some dialog from run95 and was able to modify the real Run Box in shell32.dll.mui. Here's the code: 1003 DIALOGEX 0, 0, 227, 93 STYLE DS_SHELLFONT | DS_MODALFRAME | DS_NOIDLEMSG | WS_POPUP | WS_CAPTION EXSTYLE WS_EX_APPWINDOW CAPTION "Run" LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US FONT 8, "MS SHELL DLG" { CONTROL 100, -1, STATIC, SS_ICON | WS_CHILD | WS_VISIBLE, 7, 11, 21, 20 CONTROL "Type the name of a program, folder, document, or Internet resource, and Windows will open it for you.", 12289, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 36, 11, 182, 22 CONTROL "&Open:", 12305, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 7, 39, 24, 10 CONTROL "", 12298, COMBOBOX, CBS_DROPDOWN | CBS_AUTOHSCROLL | CBS_DISABLENOSCROLL | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP, 36, 37, 183, 200 CONTROL "OK", 1, BUTTON, BS_DEFPUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 62, 70, 50, 14 CONTROL "Cancel", 2, BUTTON, BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 116, 70, 50, 14 CONTROL "&Browse...", 12288, BUTTON, BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 170, 70, 50, 14 } application_hourglass.ico (1.05 KB) Insert this as a icon and the resource name as 100.
|
|
Deleted
Deleted Member
Posts: 0
|
Post by Deleted on Oct 17, 2020 1:56:07 GMT -8
I took some dialog from run95 and was able to modify the real Run Box in shell32.dll.mui. Here's the code: 1003 DIALOGEX 0, 0, 227, 93 STYLE DS_SHELLFONT | DS_MODALFRAME | DS_NOIDLEMSG | WS_POPUP | WS_CAPTION | WS_SYSMENU EXSTYLE WS_EX_APPWINDOW CAPTION "Run" LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US FONT 8, "MS SHELL DLG" { CONTROL 100, -1, STATIC, SS_ICON | WS_CHILD | WS_VISIBLE, 7, 11, 21, 20 CONTROL "Type the name of a program, folder, document, or Internet resource, and Windows will open it for you.", 12289, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 36, 11, 182, 22 CONTROL "&Open:", 12305, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 7, 39, 24, 10 CONTROL "", 12298, COMBOBOX, CBS_DROPDOWN | CBS_AUTOHSCROLL | CBS_DISABLENOSCROLL | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP, 36, 37, 183, 200 CONTROL "OK", 1, BUTTON, BS_DEFPUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 62, 70, 50, 14 CONTROL "Cancel", 2, BUTTON, BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 116, 70, 50, 14 CONTROL "&Browse...", 12288, BUTTON, BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 170, 70, 50, 14 } View AttachmentInsert this as a icon and the resource name as 100. application_hourglass.ico How do I insert an icon? I want to change to a resource hacker.
|
|
|
Post by travis on Oct 17, 2020 9:40:01 GMT -8
I took some dialog from run95 and was able to modify the real Run Box in shell32.dll.mui. Here's the code: 1003 DIALOGEX 0, 0, 227, 93 STYLE DS_SHELLFONT | DS_MODALFRAME | DS_NOIDLEMSG | WS_POPUP | WS_CAPTION | WS_SYSMENU EXSTYLE WS_EX_APPWINDOW CAPTION "Run" LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US FONT 8, "MS SHELL DLG" { CONTROL 100, -1, STATIC, SS_ICON | WS_CHILD | WS_VISIBLE, 7, 11, 21, 20 CONTROL "Type the name of a program, folder, document, or Internet resource, and Windows will open it for you.", 12289, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 36, 11, 182, 22 CONTROL "&Open:", 12305, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 7, 39, 24, 10 CONTROL "", 12298, COMBOBOX, CBS_DROPDOWN | CBS_AUTOHSCROLL | CBS_DISABLENOSCROLL | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP, 36, 37, 183, 200 CONTROL "OK", 1, BUTTON, BS_DEFPUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 62, 70, 50, 14 CONTROL "Cancel", 2, BUTTON, BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 116, 70, 50, 14 CONTROL "&Browse...", 12288, BUTTON, BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 170, 70, 50, 14 } View AttachmentInsert this as a icon and the resource name as 100. application_hourglass.ico How do I insert an icon? I want to change to a resource hacker. Action > Add an Image or Other Binary Resource Select the icon and name the resource as 100.
|
|
|
Post by The Jackal on Oct 17, 2020 14:18:52 GMT -8
Yeah there is that option, but I can't stand the icon to the left on the title bar. The option of using Run95 as a base allows you much more freedom in modifying the dialog as well as it has the added option of you being able to use program shortcuts with it.
|
|
Deleted
Deleted Member
Posts: 0
|
Post by Deleted on Jun 5, 2021 23:15:58 GMT -8
application_hourglass.ico How do I insert an icon? I want to change to a resource hacker. Action > Add an Image or Other Binary Resource Select the icon and name the resource as 100. Changed run icon.
|
|
|
Post by The Jackal on Jun 9, 2021 13:34:51 GMT -8
New release: Updated and corrected the program so it now opens where the mouse cursor is (instead of in the middle of the screen like it did in the past). I strongly recommend this over editing system files as it's portable, more powerful than the default run dialog and can be used on any system you like. Attachments:run2k.7z (5 KB)
|
|
Eleven
Freshman Member
Posts: 25
OS: Windows 7 Pro (ESU)
Theme: Windows Classic
CPU: Intel i7-9700K @ 3.70GHz
RAM: 64 GB (16GB x 4)
GPU: NVIDIA GeForce RTX 2080
|
Post by Eleven on Nov 1, 2022 8:23:54 GMT -8
New release: Updated and corrected the program so it now opens where the mouse cursor is (instead of in the middle of the screen like it did in the past). I strongly recommend this over editing system files as it's portable, more powerful than the default run dialog and can be used on any system you like. Would you be able to post your updated source code so that I can make some changes as well? Thanks
|
|
|
Post by The Jackal on Nov 5, 2022 12:25:29 GMT -8
I didn't alter the source code, I merely changed the dialog in Resource Hacker. The program's code is basically untouched.
|
|