Arama sonuçlarınız

  1. Falcon

    İndir AI FaceSwap Full İndir – v2.6.2

    AI FaceSwap, Sosyal ilişkilerinizi geliştirmenize yardımcı ve yapay zeka teknolojisini kullanarak seçtiğiniz yüzü otomatik değiştirerek birden fazla farklı görüntüye dönüşmesini sağlar. Ayrıca çokça PDF format desteği ile dış aktarımlarda başarılı bir şekilde bulunabilirsiniz. İnternet...
  2. Falcon

    Güncel C# Gradient Button

    using System; using System.Drawing; using System.Drawing.Drawing2D; using System.Windows.Forms; public class GradientButton : Button { public Color Color1 { get; set; } = Color.FromArgb(40, 34, 201); // Başlangıç rengi public Color Color2 { get; set; } = Color.FromArgb(110, 38, 60); //...
  3. Falcon

    Duyuru Announcement for Ams Users

    Merhaba değerli ams Kullanıcıları , ve Takipcileri , Tarafımızca Autoplay media studio Eklentileri Geliştiriyorduk artık eklenti geliştirmeyi durdurduk , artık ams eskisi gibi neredeyse kimse kullanmıyor bitmiş gibi oldu. bu konuda sizlerin de yorumlarınızı merak ediyoruz! sizce ams icin...
  4. Falcon

    İndir AutoPlay Media Studio 9.0.1.0

    when did this come out?
  5. Falcon

    İndir AutoPlay Media Studio 8.5.3.0 AMS4Arab 1.0.0.0 Edition

    Thank you for your beautiful work.
  6. Falcon

    Güncel Ams Mouse Pozisyonunu Yakalama

    Yes, I know, I wrote the code incompletely on purpose :)
  7. Falcon

    İndir Battlefield 4 Türkçe İndir Full

    Sistem Gereksinimleri : İşletim Sistemi Windows Vista SP2 – / 32 Bit İşlemci AMD 2.8 GHz Bellek 4 GB Ram Depolama 30 GB Şifre: oyunindir.vip Download Türkce Yama İndir
  8. Falcon

    Güncel ASP.NET Core Web API – POST ile Veri Ekleme

    // Controllers/KullanicilarController.cs using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; [ApiController] [Route("api/[controller]")] public class KullanicilarController : ControllerBase { private static List<string> kullanicilar = new List<string>() { "Ahmet", "Ayşe" }...
  9. Falcon

    Güncel ASP.NET Core MVC – SQL Server’dan Veri Listeleme

    // Models/Urun.cs public class Urun { public int Id { get; set; } public string Ad { get; set; } public decimal Fiyat { get; set; } } // Data/UygulamaDbContext.cs using Microsoft.EntityFrameworkCore; public class UygulamaDbContext : DbContext { public...
  10. Falcon

    Güncel ASP.NET Core Web API – Basit API

    // Controllers/ProductsController.cs using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; namespace OrnekProje.Controllers { [ApiController] [Route("api/[controller]")] public class ProductsController : ControllerBase { [HttpGet] public...
  11. Falcon

    Güncel C# Ekran Görüntüsü Alma

    using System; using System.Drawing; using System.Windows.Forms; class Program { static void Main() { Rectangle ekran = Screen.PrimaryScreen.Bounds; Bitmap bmp = new Bitmap(ekran.Width, ekran.Height); using (Graphics g = Graphics.FromImage(bmp)) {...
  12. Falcon

    Güncel C# Dosya Hash Hesaplama (MD5, SHA256)

    using System; using System.IO; using System.Security.Cryptography; using System.Text; class Program { static void Main() { string file = @"C:\Windows\notepad.exe"; using (var md5 = MD5.Create()) using (var stream = File.OpenRead(file)) {...
  13. Falcon

    Güncel C# IP Adresini Alma (Public IP)

    using System; using System.Net; class Program { static void Main() { string ip = new WebClient().DownloadString("https://api.ipify.org"); Console.WriteLine("Genel IP Adresiniz: " + ip); } }
  14. Falcon

    Güncel C# Registry Okuma / Yazma

    using Microsoft.Win32; using System; class Program { static void Main() { string path = @"Software\BenimUygulamam"; Registry.SetValue(@"HKEY_CURRENT_USER\" + path, "KullaniciAdi", "Falcon"); object value = Registry.GetValue(@"HKEY_CURRENT_USER\" + path...
  15. Falcon

    Güncel Ams Dosya Boyutu Hesaplama

    dosya = _DesktopFolder.."\\test.zip" boyut = File.GetSize(dosya) Dialog.Message("Boyut", "Dosya boyutu: "..tostring(boyut/1024).." KB", MB_OK, MB_ICONINFORMATION)
  16. Falcon

    Güncel Ams Basit Lisanslama Sistemi

    lisansKodu = "ABC123" girilen = Input.GetText("LisansTextBox") if girilen == lisansKodu then Dialog.Message("Başarılı", "Lisans kabul edildi!", MB_OK, MB_ICONINFORMATION) else Dialog.Message("Hata", "Geçersiz lisans kodu!", MB_OK, MB_ICONSTOP) Application.Exit() end
  17. Falcon

    Güncel Ams Mouse Pozisyonunu Yakalama

    x, y = Input.GetMousePos() Dialog.Message("Mouse", "X: "..x.." Y: "..y, MB_OK, MB_ICONINFORMATION)
  18. Falcon

    Güncel Ams Klavye Kısayolu ile İşlem Yapma

    function OnKeyPress(nKeyCode) if nKeyCode == VK_F5 then Dialog.Message("Bilgi", "F5 tuşuna bastın, sayfa yenileniyor!", MB_OK, MB_ICONINFORMATION) Page.Jump("Page2") elseif nKeyCode == VK_ESCAPE then Application.Exit() end end
  19. Falcon

    Güncel Ams Otomatik Update Kontrol

    versiyonURL = "https://example.com/version.txt" localversiyon = "1.0.0" sunucudan = HTTP.Get(versiyonURL, false) if sunucudan ~= "" and sunucudan ~= localversiyon then if Dialog.Message("Güncelleme", "Yeni sürüm bulundu ("..sunucudan..").\nGüncellemek ister misiniz?", MB_YESNO...
  20. Falcon

    Güncel Ams Process Yönetimi

    process = "notepad.exe" -- Başlat Shell.Execute(process, "", "", "", SW_SHOWNORMAL, true) -- Çalışıyor mu? if System.DoesProcessExist(process) then Dialog.Message("Durum", process.." çalışıyor!", MB_OK, MB_ICONINFORMATION) else Dialog.Message("Durum", process.." çalışmıyor!", MB_OK...
Geri
Üst