modify installed Office 2007 - remove Access - ms-access

I want to modify the existing installation of Office 2007 on the computer.
I want to use setup.exe /modify config.xml
But I don't know what to put into config.xml to make it work.
Please help

AddAccess.xml
and then running setup.exe /config RemoveAccess.xml working.

Related

Visual Basic Compiling EXE... How do i include dependencies?

I have made a program in Visual Basic which connects to my MySQL server, asks for the password and checks it to the username...
Not very secure, as i learned how to use a database yesterday(i had never touched it before...).
Now, when i try to compile to an exe, gets it from the release folder, and puts the release folder on my other PC, it is missing the MySQL.Data, which i had to add as referance in visual basic...
Is there any way I can include dependencies in my Exe/Release? This will of course apply to all dependencies!
BTW, i am using Visual Basic 2010 Express!
After adding reference, go to Solution Explorer window, expand References, click on MySql.Data to select. Go to Properties window and set Copy local property to True. After next build, you will get missing MySQL.Data.Dll in build folder. Then you can copy .exe and .dll to other PC.

PhpStorm is not starting up

I just downloaded PhpStorm 5 on my quite fresh ubuntu.
During the first start I installed a couple of plug-ins.
Now - after the installation of those plug-ins - PhpStorm is not starting up anymore.
No splash screen is showing up. No error gets written on the terminal:
gue#ubuntu:~$ phpstorm
Java HotSpot(TM) 64-Bit Server VM (build 23.7-b01, mixed mode)
gue#ubuntu:~$
What shall I do with that drunken sailor?
I can't find any logfiles, no configuration file/directory in my home directory.
Since I'm used to Eclipse I've no clue where to look for a trace in this IntelliJ derivate...
If you're on Windows deleting the following directory helped me:
C:\Users\<user>\AppData\Roaming\JetBrains\
Some plug-ins can cause problems and prevent IDE from starting, if it happens, you should delete the directory containing plug-in manually. Location of this directory depends on the system and product, details are available in the FAQ.
For PhpStorm on Linux it would be ~/.WebIde50/config/plugins.
This happend to me too, I had created a custom vmoptions file, and entered incorrect values. I fixed it by deleting it in ~/.WebIde50/phpstorm.vmoptions
i had the same problem , i fixed it just with removing the file C:\Users\.PhpStorm2016.2
In linux, I fixed it by deleting vmoptions file of PhpStorm and then launching it again:
mv ~/.config/JetBrains/PhpStorm*/phpstorm64.vmoptions ~/.config/JetBrains/PhpStorm*/__phpstorm64.vmoptions
It might be possible if openjdk is installed then phpstorm not opened.
So remove first then follow steps that given in below link.
I solve the problem same way.
wiki.jetbrains.net/intellij/Installing_and_running_PHPStorm_on_Ubuntu
Here is how you fix this: Rename C:\Users\USERNAME.PhpStorm2016.3 to something else (anything, like PhpStorm2016.whatever) , it will start the program if you click on the phpStorm icon, then choose to import settings, and you're good to go ;)
I am using PhpStorm2020.2.1. I referred to Configuration directory. I accessed the folder %AppData%\JetBrains\PhpStorm2020.2, renamed it just in case I may need some files in future.
Voila! I can start my PhpStorm2020.2.1 again!
I had this problem yesterday and my OS is windows 10. phpStorm suddenly did not work and when I click on it nothing happened. I just downloaded JDK from this link (https://www.oracle.com/java/technologies/javase-downloads.html) and after installation, I set the environment value in the system setting for my java directory. You can use this link to set the environment (https://javatutorial.net/set-java-home-windows-10)
For me I had to remove all cache for the IDE located in:
~/.cache/JetBrains/
I have changed the VMOptions under the Help menu on MacOS and it just would not start up again. It just silently failed every time. I found the file at /Applications/PhpStorm.app/Contents/MacOS/phpstorm and ran it in the terminal, which gave me an output with the following error:
Invalid ReservedCodeCacheSize=3072M. Must be at most 2048M.
Luckily, it also gave me the path to the VMOptions file in one of the rows of the output, parseVMOptions: /Users/barnabas/Library/Application Support/JetBrains/PhpStorm2022.3/phpstorm.vmoptions in my case, so I could change it back to a valid configuration. Crisis averted.
Simple
Go to your task manager
end any task on php-storm
and restart the ide again
it will work
Open Terminal Linux Ubuntu 20.10
YOU#USER:~$ cd ~/.config
YOU#USER:~/.config$ ls
Obs: Locate the >>> JetBrains <<< folder, after that delete it your default app settings will disappear more it will open again
YOU#USER:~/.config$ sudo rm -rf JetBrains/
Open PHPSTORM

Installing XpsDrv sample under the Windows XP

this article helped me to install "XpsDrv sample" under the Windows XP. But I'd like to ask if it's possible to automate step No. 6
As you go on, the wizard can ask you for some files it cannot find. But this should be no big trouble if you have SP3 or XPS Extension Pack installed.
If the wizard asks you for xdsmpl.gpd, click Browse and find this file in [sample root]\install\x86.
If it asks for xdwmark.dll, navigate to [sample root]\install\x86 as well.
For msxpsinc.gpd go to c:\windows\Driver cache\i386.
The xpssvcs.dll file should be found in c:\windows\system32.
I need to install XPS driver during the installation process of my App and it's not acceptable for my customer to find missing files manually...
The easiest way is copy the x86 folder and rename it to i386. Then find missing files (msxpsinc.gpd, xpssvcs.dll) and copy them to the [sample root]\install

Include .exe in AIR installer

I'm trying to create an installer file for my AIR app. I export release build and include all my elements, i.e. assets, a 3rd party .exe file, etc. But my output says file is damaged.
Is there s/thing about this .exe file that is doing this? Do I need to create a customer installer to handle running this? I'm guessing that if I want it installed silently then yes.
Thanks for any tips!
http://bishoponvsto.wordpress.com/2010/03/10/deploying-air-application-with-air-runtimeredistributable-in-single-exe/

How to connect MySQL from VC++ on MS Visual Studio 2008?

How to connect with MySQL from Visual C++ Microsoft Visual Studio 2008 ? I tried googling and found solutions all of which ended with fatal errors like linker errors,... etc. Please explain (or provide a link) step by step, including prerequisites (with links) and all details. I don't need any query examples.. just connecting to MySQL. Thanks in advance.
MySQL++ supports VC++ 2008, and comes with specific documentation on how to set up your project to avoid the link errors you're seeing.
Disclosure: I'm MySQL++'s maintainer
This worked for me (I am using xampp):
Open a C++ project (with precompiled header)
Change it from Debug to Release.
Install complete mysql (if you
install complete mysql, a C
connector will also be installed as a
include and lib file, which is not
installed in typical installation)
copy mysql/include to xampp/mysql
project > project properties > configuration properties > c++ > general > additional include
directory --> C:/xmapp/mysql/include.
Project > add existing item > lidmysql.lib (it’s found in
mysql/lib/opt.)
Copy libmysql.dll to c:\windows.
Alternativly we can copy it to the
project’s folder or we can set path
environment variable. But we only
tested it copy to c:\windows