WAMP 3.2 tray icon is green and everything works, except NOTHING happens when left/right click on it? - wamp

WampServer 3.2.0 (last Windows 7 compatible version I found) was installed today on an old PC using right-click "Run as Administrator" and no error was displayed at all, all seemed normal. http://localhost works and reports thru index.php that everything is fine except PHP config needs to be refreshed by right-clicking WampManager > Refresh, so I was about to do that when I realized that absolutely NOTHING happens when left/right clicking the WAMP tray icon AT ALL. No error, no nothing. It's just a brick.
I have installed all the required x86 and x64 MVC++ redistributables and I have confirmed this by running check_vcredist.exe
I have tried rebooting and starting Wampserver64.exe as an administrator but it doesn't change anything.
I uninstalled, manually removed the e:/wamp folder (my install dir) reinstalled, but nothing fixes this aggravating issue. It's so weird that EVERYTHING WORKS perfectly, except this stupid tray icon menu?!
Any ideas?
I've already tried:
Wamp icon is green but not reacting on click
http://jcyberinux.com/rjdreyes/wampserver-eparseerror-no-tray-icon-was-specified.html

Well, it turns out that the WampServer installer gives a lot of instructions, but apparently skips giving the most important one: WampServer DOES NOT work on an exFAT partition!
I found that extremely relevant bit of information on this random page: https://www.makeuseof.com/tag/how-to-set-up-your-own-wampserver/

Related

Outlook: VSTO does not show its initial window

I had developed a VSTO module to Outlook using VB.NET and VS2017-Community.
At the first installation, it asked for an user authorization to install, showing the Product name and the Vendor/Manufacturer data, based on the ClickOnce compilation (I guess).
Everything rans ok...
But now I uninstalled completely this AddIn and, when I call the SETUP again (due to a newer version), the Outlook does not show this window anymore - the Ribbon is updated automatically, my custom ribbon appears, etc.
In other words: my new version is installed into Outlook seemless and runs perfectly; except for the fact of the VSTO window does not appear anymore during the Outlook load (which would be like I saw before at the 1.0.0 version of my software).
I would like to see a CLEAN installation, I mean, exactly what a user which had never installed my software would see.
Some data to enlight the problem:
1- I'm using MSI installation and uninstall. Everything runs 100%.
2- The uninstall clears all the registry keys and the application folder.
3- I saw %User%/AppData/Local/Apps/2.0 folder and, also, there are no references to my project.
4- I open REGEDIT and check the following keys. All of them are cleared (no references to my AddIn):
HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\16.0\Outlook\Resiliency\AddinList
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\Outlook\Addins\
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\1x.0\Outlook\Resiliency\DisabledItems
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\1x.0\Outlook\Resiliency\CrashingAddinList
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\1x.0\Outlook\Resiliency\DoNotDisableAddinList
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\1x.0\Outlook\Resiliency\NotificationReminderAddinData
(there are no Local_Machine key created here, my Office is 32-bit not running as Admin/Local_Machine).
So, how can I make a clean installation like I saw before?
I appreciate any help.
I found the solution!
We must clean the references also in:
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\1x.0\Outlook\AddInLoadTimes
HKEY_CURRENT_USER\SOFTWARE\Microsoft\VSTO\SolutionMetadata
HKEY_CURRENT_USER\SOFTWARE\Microsoft\VSTO\Security\Inclusion (keys and subkeys)
That's it! :)

CLion has Run buttons greyed out or they dont work correctly

I just got CLion today, and wanted to try it out. However, no matter what version I use, the following comes up when I open the run menu (I am on Windows):
Under "Run" in the top bar the normal Run and Debug are greyed out and I can only use the Run... / Debug... ones
In the top-right corner of the IDE the run button, the debug button and two other ones are also greyed out.
If I click on the run button or the debug button from the run menu (the ones with ... on the end) there is a run option 0 called "edit configurations" which allows me to make a new run configuration.
So I tried to set up something that works, but I was unable to do so. I also could not find anything on the internet that I was able to understand, and every tutorial that I watched had already had it working.
Could someone please help me in an idiot-proof way?
Minimal working sample (macOS) - nothing fancy, just a good old Hello, world!
Minimal working sample (Windows 10) - nothing fancy, just a good old Hello, world!
Install Visual Studio 2019
https://visualstudio.microsoft.com/vs/
Configure toolchain
Run sample code

Intellisense not working in VS Code on Ubuntu

I am running VS Code version 1.17.2 on Ubuntu 16.0.4 on a VMware Player VM in Windows 10. I installed the C++ extension for VS Code. When installing the extension there was a message to say that the extension installed OK but afterwards there was a lot of repeated messages saying something like "failed to update database".
When I type something which is invalid syntax there is no red squiggle and if I press Ctl-Space it just shows "Loading..." but nothing comes. The red flame icon on the status bar shows and I see "Updating Intellisense..." when I hover the mouse over but the icon doesn't ever seem to go away.
If I #include a non existent header, there is no green squiggle but if I save the file, exit VS Code and reopen, them the green squiggle shows on the header but there is no light bulb showing in the left margin.
I had exactly the same problem. I've been playing around with settings and disabling/enabling the extension. Finally got it working with setting the followings then disabling/enabling the extension (reload VS code after both of them):
"C_Cpp.errorSquiggles": "Enabled",
"C_Cpp.intelliSenseEngine": "Tag Parser",
"C_Cpp.loggingLevel": "Information"
Also you can play around with "Reset IntelliSense Database" command, I ran it a couple of times, that might have helped too.
I suspect the intelliSenseEngine setting was the one that made the trick.
Edit
This doesn't enable all features, e.g. wrong include markers and "go to definition" works for includes, but code completion doesn't.
I had exactly the same problem, running ElementaryOS on VirtualBox. As per this comment (https://github.com/Microsoft/vscode-cpptools/issues/756#issuecomment-303513360) I changed my settings to
"C_Cpp.intelliSenseEngine": "Tag Parser"
And things seems to be working again.
I am running VS Code 1.19.2 with C/C++ IntelliSense 0.15.0 (Microsoft) on a Ubuntu 16.04 LTS running as a Virtualbox VM (Windows 10 host). All x64 OS's.
In my case the symptom is a recurrent flaming icon in the bottom status bar hinting "Updating IntelliSense..." that seems related to a hung process.
A couple of "Microsoft.VSCod" processes doesn't use CPU...
Hovering over code just hints "Loading...".
After changing "C_Cpp.loggingLevel" to "Information" to analyze log on the Output windows (as requested in https://github.com/Microsoft/vscode-cpptools/issues/1291 thread) didn't show anything useful... but symptom dissapeared most of the time.
After changing "C_Cpp.intelliSenseEngine" to "Tag Parser" things went much better. The flaming icon disappeared and definition are available all the time.

teechart 4 ocx doesn't run on win7

We have a problem with an old application which use teechart.ocx version 4.02 OCX release 4.0.0.7.
On my Win7 (64 bits) everything run without problem. But on the Win7 of my colleague (also 64 bits), the control does'nt appears.
Of course we have registred the ocx (within admin cmd shell).
To be sure that the problem does'nt come from our (old) application, we perform a test on both machine with the demo example which comes with Teechart.ocx (TeechartPro/Examples/VisualC++/Version6/TeeFiles).
On my PC everything runs well.... but on the other one, same problem : we get the application without the TChart control.
And when we click the 'about' button, we get an error : debug assertion failed / winocc.cpp / line 345...
Is there anybody who can help ??????
Thank you
Greg
I found the reason... it should be the MFC dlls and libs which are not exactly the same on each PC. They have the same name, but with different size & dates.
Just recompile on the most recent environnment clears the problem
Hope it can help

NetBeans 7.0.1 good C++ program execution "RUN FAILED"

Working inside NetBeans 7.0.1, fresh install on Ubuntu 13.10.
I have a known good C++ program.
I finally get it to compile and link.
When I press the Netbeans Run Main Project triangle, the execution breaks with
java.util.MissingResourceException: bin/nativeexecution/Linux-x86/pty
RUN FAILED
What's going on, and how to fix it?
This is a NetBeans output-window setting problem.
NetBeans comes up with C++ projects defaulting to "Internal Terminal". This is not working on your present configuration.
The answer is to switch your output to "External Terminal", which pops up a separate purple terminal typing console in its own window for your interaction, or "Standard Output",which presents the output in the expected white subpane below.
Do this by:
Right-mouse-click on your project name -> Properties
on the left side, in the "Categories:" column, select * Run
on the right side, beside the >General -> Console Type:,
change the pulldown menu from "Internal Menu" into "Standard Output".
Hit the OK button at the bottom to lock it in.
Now your project will run, forever after, when you ask it to.
according to this netbeans forum post package of netbeans 7.0.1 is lacking some files.
Removing version from repo and installing from netbeans download site worked like a charm for me and nb forum OP.
So problem is also in ubuntu 14.04.
Also repo version is little out-of-date and NB have nice .sh installer. Just remember to install some JDK from repo or anywhere else.