Programming Blog

▼
▼
Monday, 17 August 2020

Add Azure Devops plugins in Android Studio for Git or TFVC Version control

›
 By default, Android studio can not connect to the Azure devops source codes. To connect to the Azure devops, a plugins by Microsoft needs t...

Create Azure SQL User and add a sql role

›
I wanted to add a new sql user "sqluser" in Azure SQL server to access a database "sanjeeb".   Steps to create a new SQL...
Tuesday, 11 August 2020

Scrollable readonly EditView in Kotlin

›
 Scrollable readonly EditView in Kotlin In the view xml file: < EditText android :id ="@+id/etResult" android...
Wednesday, 5 August 2020

Simple use of Timer in Kotlin

›
the code below will set the button to clickable after 30 sec: btnOk . isClickable = false Timer().schedule( timerTask {     btnOk . isCli...

Working with UI controls from Non main thread in Kotlin

›
import  org.jetbrains.anko.doAsync import  org.jetbrains.anko.uiThread fun anyFunction(){ doAsync {       // Normal code inside Async thread...

Permission request pop up in android

›
Request user to give permission to read external storage in Android - (Kotlin) if (ContextCompat.checkSelfPermission( this , Manif...

TFS -GIT CertGetCertificateChain trust error CERT_TRUST_IS_UNTRUSTED_ROOT

›
Problem 1) 2019-07-02T14:19:12.5157398Z fatal: unable to access 'https://tfssite.company.com/tfs/UK_ProjectCollection/SalesPortal/_git/S...

Insert Identity Column in a table

›
 insert an  identity  column in that table by using the following code: ALTER   TABLE  dbo.tablename  ADD  AUTOID  INT   IDENTITY ( 1 , 1 ) 

MSSQL Remove duplicate Rows

›
Select the duplicate key values into a holding table. For example: SELECT col1, col2, col3=count(*) INTO holdkey FROM t1 GRO...

Read TFS Project name from TFS Project collection using c#

›
Using Team foundation api.  References: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ReferenceAssemblies\v2.0\Microsoft.T...
‹
›
Home
View web version

About Me

Sushma
View my complete profile
Powered by Blogger.