This post for those who are facing the problem of screen resolution and unable to locate the package virtualbox-guest-x11
Follow the below step to make it solve:
1. Open the Terminal window
2. type sudo apt-get remove libcheese-gtk23
3. then type sudo apt-get install xserver-xorg-core
4. then finally...
Friday, August 28, 2015
Thursday, August 13, 2015
Turn Off Automatic Updates in Windows 10
In windows 10, Microsoft removed the ability to turn off automatic updates. the registry setting that allowed you to disable windows update in the previous build of windows 10 no longer works. however it is still possible to deactivate automatic updates.
In this post, I will show you how you can disable automatic...
Tuesday, June 2, 2015
Git ignore File List for ASP.NET Web Form Project
# Created by https://www.gitignore.io
### VisualStudio ###
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
# User-specific files
*.suo
*.user
*.csproj.user
*.userosscache
*.sln.docstates
# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs
#...
Monday, May 18, 2015
How can I find out what FOREIGN KEY constraint references a table in SQL Server?
By using the following command in sql server, you are able to find out the foreign key constraint references.
SELECT
OBJECT_NAME(f.parent_object_id) TableName,
COL_NAME(fc.parent_object_id,fc.parent_column_id)
ColName
FROM
sys.foreign_keys AS f
INNER...