fernandreu / office-ribbonx-editor

An overhauled fork of the original Custom UI Editor for Microsoft Office, built with WPF
MIT License
523 stars 103 forks source link

.exe in .zip file doesn't open #82

Closed DougFletcherGH closed 4 years ago

DougFletcherGH commented 4 years ago

Describe the bug I downloaded the .zip file for v1.6.0.493 and extracted all files to a new folder. Then tried to run the .exe file, but it didn't appear to do anything.

To Reproduce Steps to reproduce the behavior: As per description above.

Expected behavior I expected OfficeRibbonXEditor to load. When I found the previous version's exe file on github, I downloaded it and it ran and it opened OK.

Screenshots No screenshots, 'coz NOTHING happened.

fernandreu commented 4 years ago

Hi DougFletcherGH,

Which .zip version did you download, OfficeRibbonXEditor-NETCore.zip or OfficeRibbonXEditor-NETFramework.zip? The easiest way to tell is: the .NET Framework version comes with a single executable, while the .NET Core one comes with a bunch of additional files.

The .NET Framework version is more stable, so I would go for this one. If the previous release worked, this version should work as well, as the target framework version has not changed. If not:

  1. Check that you have .NET Framework 4.6.1 or higher installed
  2. Put the .exe file into its own separate folder (to ensure other files are not interfering with the launch somehow)

For the (still experimental) .NET Core version to work, you will need to install the .NET Core Runtime first (3.0 or above; I would recommend the latest 3.1). If you indeed want to use this version but still have issues, try to launch it from a command (or PowerShell) prompt this way:

dotnet path\to\OfficeRibbonXEditor.dll

Note how you pass the path to the dll file in the extracted folder, not to the exe file. The tool will probably not run this way either, but it should hopefully give you an error message that you can post back in here.

DougFletcherGH commented 4 years ago

 Hi fernandreu. Thanks very much for your quick response. I am sorry for wasting your time.  I simply used the first file under Assets, which is the .NETCore.zip file.  Now that I read your introductory text properly, you are quite clear in explaining that I really would have been better off with the .NetFramework.zip.  I just tried it, and it works fine. Sorry again, and thanks for taking the time to explain. Kind regards,Doug Fletcher

----- Original Message ----- From: "fernandreu/office-ribbonx-editor" To:"fernandreu/office-ribbonx-editor" Cc:"DougFletcherGH" , "Author" Sent:Thu, 09 Jan 2020 05:56:30 -0800 Subject:Re: [fernandreu/office-ribbonx-editor] .exe in .zip file doesn't open (#82)

Hi DougFletcherGH, 

Which .zip version did you download, OfficeRibbonXEditor-NETCore.zip

[1] or OfficeRibbonXEditor-NETFramework.zip [2]? The easiest way to tell is: the .NET Framework version comes with a single executable, while the .NET Core one comes with a bunch of additional files.

The .NET Framework version is more stable, so I would go for this

one. If the previous release worked, this version should work as well, as the target framework version has not changed. If not:

* Check that you have .NET Framework 4.6.1 or higher installed
* Put the .exe file into its own separate folder (to ensure other

files are not interfering with the launch somehow)

For the (still experimental) .NET Core version to work, you will need

to install the .NET Core Runtime [3] first (3.0 or above; I would recommend the latest 3.1) If you indeed want to use this version but still have issues, try to launch it from a command (or PowerShell) prompt this way:

dotnet pathtoOfficeRibbonXEditor.dll  

Note how you pass the path to the dll file in the extracted folder,

not to the exe file. The tool will probably not run this way either, but it should hopefully give you an error message that you can post back in here.

You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub [4], or unsubscribe [5].

Links:

[1] https://github.com/fernandreu/office-ribbonx-editor/releases/download/v1.6/OfficeRibbonXEditor-NETCore.zip [2] https://github.com/fernandreu/office-ribbonx-editor/releases/download/v1.6/OfficeRibbonXEditor-NETFramework.zip [3] https://dotnet.microsoft.com/download [4] https://github.com/fernandreu/office-ribbonx-editor/issues/82?email_source=notifications&email_token=AOHKLQMVORPU2WRGJNMWUW3Q44UI5A5CNFSM4KETCP32YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEIQME7Y#issuecomment-572572287 [5] https://github.com/notifications/unsubscribe-auth/AOHKLQIE5NWO7SN6GVIT233Q44UI5ANCNFSM4KETCP3Q

fernandreu commented 4 years ago

No problem, glad it worked!