"ИCTИHA" returned by EXACT Function in Open Office Calc - openoffice-calc

=EXACT(A2;A3)returns ИCTИHA
ИCTИHA is true in Russian apparently . . .
Anyone else seeing this?
Apache Open Office 4.13
AOO413m1(Build:9783) - Rev. 1761381
2016-09-29 02:39:19

It seems your Locale has been set to Russian. Go to Tools -> Options -> Language Settings -> Languages and change Locale setting.

Related

WebStorm error message - use esversion 6

WebStorm is showing the following error message:
JSHint: 'let' is available in ES6 (use 'esversion': 6) ...
In the Preferences -> Languages & Framework -> JavaScript menu I've selected the ECMAScript 6 option and my .jshintrc file does contain the "esversion": 6, line.
I've tried the two most recent versions of the app (which are now 2016.3.6 and 2017.1.2) but to no avail.
I've also deleted the files in ~/Library/Application Support/WebStormXX and
~/Library/Preferences/WebStormXX but nothing seems to have changed.
I'm using OS X 10.10.5.
Thanks to #lena's comment I was able to figure out what was wrong. The Use config file checkbox of the Preferences | Languages & Frameworks | JavaScript | Code Quality Tools | JSHint was not checked so my .jshintrc was just being ignored.
If you don't have your own config file, you can enable EcmaScript.next in Relaxing options in in
Settings | Languages & Frameworks | JavaScript | Code Quality Tools |
JSHint
See this question How-do-I-resolve-these-JSHint-ES6-errors
I'd probably recommend a more feature rich editor like vim

wt: Document root was not set, or was set to the empty path.

I am new to wt(Web Toolkit/witty). When I try to execute hello-world example program source code , I got the following exception "Document root was not set, or was set to the empty path. Use --docroot to set the HTML root directory." I set the command arguments as "--http-address=0.0.0.0 --http-port=8080 --deploy-path=/hello --docroot=.". I capture argument values as "Arg C = 1 and Arg V = 0000023C3B649E30" Please help.
I'm not sure if you have got the solution. Just to help others.
here is the list of options which you need to give if you are tyring to run your wt web app from cli/terminal in linux.
./<your_web_app> --http-address=0.0.0.0 --http-port=8085 --deploy-path=/hello --docroot=.
now after go to your browser and open the new tab and give "http://localhost:8085/hello"
should give you your webpage which you are building
Below solution worked for me.
"If you are using Visual Studio you can add them by right clicking on your project, then going to Properties > Configuration Properties > Debugging > Command Arguments.
Open a web browser and go to http://localhost:8080/hello to test your application."
https://andres.jaimes.net/780/how-to-create-a-first-application-using-wt-witty/

Visual Studio error D8016: '/ZI' and '/O2' command-line options are incompatible

Visual Studio error D8016: '/ZI' and '/O2' command-line options are incompatible
I'm using optimization for the first time with C++.
When I 'build solution' I keep getting this error.
In the property pages, I have configuration set to Release
Under project/properties/c++/optimization I tried all the options except for disable.
Under project/properties/c++/General I also tried all the options under 'Debug Information Format' (assume 'None' is a good choice?).
I think it might have something to do with the linker settings, but still don't know what to do.
Go to the project's property page and change the value for:
C/C++ | General | Debug Information Format
To something other than "Program Database for Edit and Continue (/ZI)"
For example, "Program Database (/Zi)" should work.
After changing
C/C++ | General | Debug Information Format
to Program Database (/Zi)
You might need to set the solution configurations to Release.
Verify that under Linker -> Debugging says Generate Debug Info -> No.
I had this problem as well.

wamp:display many "Strict standards"

I use wamp in my windows system and I download a cms about online shoping!when I install it,it displays many "Strict standards".but when I use other enveriment eg xampp,it display no errors and the install can run exactly!is this the WAMP config error,this confuses me very much!
the "Strict standards" that wamp displays like the following:
Strict standards: Non-static method ECMall::startup() should not be called statically in D:\wamp\www\ecmall1\install\index.php on line 18
Deprecated: Assigning the return value of new by reference is deprecated in D:\wamp\www\ecmall1\eccore\controller\app.base.php on line 141
The reason you are getting these errors is that you are running old PHP code on a up to date version of PHP.
You can turn these error messages off completely by editng the php.ini file
left click wampmanager -> PHP -> php.ini
change
display_errors = On
to
display_errors = Off
Or just stop the strict errors being reported
left click wampmanager -> PHP -> php.ini
change
error_reporting = E_ALL
To
error_reporting = E_ALL | E_STRICT

How to force restart after uninstall for a Basic MSI Project in InstallShield 2009 Premier

InstallShield 2009 Premier, Basic MSI Project:
After uninstall completes, I want to force restart the computer. How?
Googling found, i have to set 'REBOOTPROMPT' TO 'S' or 'R' and the "Reboot" property.
How to set these properties and with what values?
Here is the Solution
You have to let InstallShield know that you want a reboot.How?: From 'Installation Designer' tab -> 'Behavior and Logic' -> 'Custom Actions and Sequences' -> 'Sequences' -> 'Installation' -> 'Execute' -> 'ScheduleReboot' set the value of 'Conditions' to "NOT REMOVE" (with out the inverted commas) if you want the reboot to happen after install and to "REMOVE" if after uninstall.
So up to now after install/uninstall the installer would show a warning message something like "... click ok to restart your machine now or cancel to restart later...". Now if you don't want to show this warning message even do step 3.
Go to 'Installation Designer' tab -> 'Behavior and Logic' -> 'Property Manager', a table would be open. Now add/edit the (Name, Value) pair with (REBOOTPROMPT, Suppress). This would suppress the message.