Android Align Fab in ConstraintLayout

The FloatingActionButton can be aligned to all corners of the parent ConstraintLayout: FAB constraint relation XML markup top & start app:layout_constraintTop_toTopOf=”parent”app:layout_constraintStart_toStartOf=”parent” top & end app:layout_constraintTop_toTopOf=”parent”app:layout_constraintEnd_toEndOf=”parent” bottom & start app:layout_constraintBottom_toBottomOf=”parent”app:layout_constraintStart_toStartOf=”parent” bottom & end app:layout_constraintBottom_toBottomOf=”parent”app:layout_constraintEnd_toEndOf=”parent” To evenly position it, use layout_margin: android:layout_margin=”24dp”…

Devamını oku

Windows 10 aynı birden fazla uzak masaüstü bağlantısı

Windows 10 işletim sisteminde aynı anda birden fazla uzak masaüstü kullanabilmek için Rdp Wrapper adlı programı kullanabilirsiniz. Aynı anda 3 kullanıcıya kadar destekliyor. Rdp Wrapper Program setup -> https://github.com/stascorp/rdpwrap/releases msi dosyasını kurarken bazen hata verebiliyor. zip dosyasını indirmenizi tavsiye ederim. Zip dosya içeriğini bilgisayarınızda herhangi bir dizine çıkardıktan sonra install.bat dosyasını çalıştırın. Program kurulduktan sonra RDPConf.exe…

Devamını oku

Mssql Tablo boyutlarını listeleme

;with SpaceInfo(ObjectId, IndexId, TableName, IndexName ,Rows, TotalSpaceMB, UsedSpaceMB) as ( select t.object_id as [ObjectId] ,i.index_id as [IndexId] ,s.name + ‘.’ + t.Name as [TableName] ,i.name as [Index Name] ,sum(p.[Rows]) as [Rows] ,sum(au.total_pages) * 8 / 1024 as [Total Space MB] ,sum(au.used_pages) * 8 / 1024 as [Used Space MB] from sys.tables t with (nolock) join…

Devamını oku

Sql Tablo Kolon ve Özelliklerini listeleme

SELECT c.name ‘Column Name’, t.Name ‘Data type’, c.max_length ‘Max Length’, c.precision , c.scale , c.is_nullable, ISNULL(i.is_primary_key, 0) ‘Primary Key’ FROM sys.columns c INNER JOIN sys.types t ON c.user_type_id = t.user_type_id LEFT OUTER JOIN sys.index_columns ic ON ic.object_id = c.object_id AND ic.column_id = c.column_id LEFT OUTER JOIN sys.indexes i ON ic.object_id = i.object_id AND ic.index_id =…

Devamını oku

Visual studio tüm projeler için tek app.config kullama

Visual Studio’da, solution içinde birden fazla proje ile çalışıyor ve bu projelerin hepsinin tek app.config dosyasını kullanmasını istiyorsan; Projelerden sadece birinde app.config olsun. Diğer rojelerde sağ klik -> Add -> “Add Existing Item” ile App.config dosyasını seç ve “Add” butonunun yanındaki minik üçgene basıp “Add as Link” seçeneği ile projene ekle. Bitti, gitti.  …

Devamını oku

Windows mobile device emulator internet bağlantısı

Windows 7 ve üstü işletim sisteminde “Visual Studio Smart Device Project” geliştirirken emulatörü networke bağlamak için: Windows Mobil Aygıt Merkezi’ni aç ve connection settings kısmında “Allow connections to the one of the following” seçeneğini işaretleyip altındaki listeden “DMA” yı seç ve mobil aygıt merkezini açık bırak. Device Emulator Manager’ı açıp bir emulator seç ve sağ klik…

Devamını oku