Open activity from fragment in Xamarin Android
You can use below code to open an activity from fragment in Xamarin Android.Intent intent = new Intent(this.Activity, typeof(HomeDemo));StartActivity(intent);Here is the complete code: public class…
A proper & well organized listing of IT companies
You can use below code to open an activity from fragment in Xamarin Android.Intent intent = new Intent(this.Activity, typeof(HomeDemo));StartActivity(intent);Here is the complete code: public class…
Media queries allow us to write device specific CSS & build responsive websites. Media Queries are part of CSS3.Understand Media Query by Example:Suppose, we are developing an application & we want…
Below piece of code will give you physical path of an IIS website.Import-Module WebAdministration[string] $iisWebsiteName = 'Default Web Site'$iisWebsite = Get-WebFilePath…
Possible cause:Normally, the application gets this error when it tries to access a file that is being used or locked by some another process.Solution:Ensure that the file you are trying to use is not…
Hello everyone, Recently I started working on PowerShell as I was working on C# for a long time so initially, it took me a while to get familiar with PowerShell syntaxes. That’s why I thought to put…
Recently I stuck in a situation where I wanted to export variable groups from my VSTS account but there was no such option to export variable group. You can use this PowerShell to download a clone copy of Variable Groups.…
If you are a beginner to Git then you have come to the right place.After watching the below video, you will be able to migrate your new/existing .NET application to GitHub from Visual Studi in a few…
Sometimes, You may find that window service executable has been deleted but the service is still present in service viewer.To forcefully uninstall a window service, you just need to do two small…
Just type netstat -a in command prompt & press enter. This will print a list of all active TCP & UDP ports running on your machine.More detail about this command netstat can be found on below…
ProblemDeleted remote branches are still visible in Visual Studio Team Explorer (Branches Section).SolutionYou just need to run git fetch --prune command in your solution directory using GIT Bash or…