Programming Blog

▼
▼
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...

GIT - SSL certificate problem: unable to get local issuer certificate

›
Error encountered while cloning the remote repository: Git failed with a fatal error. unable to access ' https:// tfssite.company.com/ t...

Entity Framework Core with Existing Database

›
Entity Framework Core only supports code first database aproach.  To use existing database, we'll need to reverse Engineer Model from ex...
‹
›
Home
View web version

About Me

Sushma
View my complete profile
Powered by Blogger.