Jump to content

C# Ile Aio Yapımı


KintaRo
 Share

Recommended Posts

  • Editor

ustam peki bu c# kategorisini de amsde oldu gibi "örnek çalışmalar" "pluginler" vs gibi alt kategorilere ayırsanız daha iyi olmaz mı?

 

Plugin yazma gibi bir ihtiyaç yokki zaten :D Hea yazacaksanda Class yapısına hakim olman lazım. Çünkü herşey bi nesneden türer.

Link to comment
Share on other sites

 

Plugin yazma gibi bir ihtiyaç yokki zaten :D Hea yazacaksanda Class yapısına hakim olman lazım. Çünkü herşey bi nesneden türer.

 

Arkadaşa delphi önermek lazım :lol:  VCL'yi görsün ams'nin yüzüne bakmaz heralde :D

Link to comment
Share on other sites

  • Editor

 

Arkadaşa delphi önermek lazım :lol:  VCL'yi görsün ams'nin yüzüne bakmaz heralde :D

AMS bi programlama dili değil zaten yaa. Sadece hobi amaçlı en azından yazılıma yeni başlayacaklara önerdiğim bi programcık sadece.

 

Edit : Delphi de çok iyi bir dil değil aslına bakarsanız. Yani eksik kaldıgı noktalar var. Bellekleyemediği üst düzey rakamlar var.

Edited by pairs
Link to comment
Share on other sites

AMS bi programlama dili değil zaten yaa. Sadece hobi amaçlı en azından yazılıma yeni başlayacaklara önerdiğim bi programcık sadece.

 

Edit : Delphi de çok iyi bir dil değil aslına bakarsanız. Yani eksik kaldıgı noktalar var. Bellekleyemediği üst düzey rakamlar var.

Evet lua dilini kullanan script dili. Delphi için "Bellekleyemediği üst düzey rakamlar var." derken neyi kasteddiniz acaba ? Biraz açar mısınız burayı merak ettim.

Link to comment
Share on other sites

Çok uzun sayıları depolayan bir yapısı yok. Yani bigint ile depolanamayan sayılar var. Ama C# bunu depolayaibliyor.

 

Bu noktaya değinmek istiyorum, yorumlanmayan ve derlenen dillerin hepsinde aynı veri tipleri bulunmakta. Yani C#ta bigint, long varken delphidede var. Hatta bazı yordamlarda delphi daha hızlı stack erişimi sağlar.

 

Delphi veri tipleri: http://docwiki.embarcadero.com/RADStudio/XE5/en/Delphi_Data_Types

  • Like 1
Link to comment
Share on other sites

  • Editor

 

Bu noktaya değinmek istiyorum, yorumlanmayan ve derlenen dillerin hepsinde aynı veri tipleri bulunmakta. Yani C#ta bigint, long varken delphidede var. Hatta bazı yordamlarda delphi daha hızlı stack erişimi sağlar.

 

Delphi veri tipleri: http://docwiki.embarcadero.com/RADStudio/XE5/en/Delphi_Data_Types

 

galetis ben depolayamadım valla delphide. 

 

AEm3e4S.jpg

 

C# ta biginteger ile yapılabiliyor ama.

Link to comment
Share on other sites

community edition kullanabilirsiniz bende onu kullanıyorum. ücretsizdir. illa tüm gelişmiş özelliklerini isterseniz ultimate kurabilirsiniz. çok yerde mevcut.
 

http://go.microsoft.com/?linkid=9863609

kurduktan sonra ilk açılışta ya da hakkında kısmından kayıt olun yeter.

 

 

AIO çalıştırılabilir hali:

https://yadi.sk/d/hK6eNLe_ewsae
  • Like 1
Link to comment
Share on other sites

  • 1 ay sonra...

Ben yine anlatamadım söyledğinide yapmıştım amacım formu boşaltmak değil sadece o kenarlıklardan kurtulmaktır. Göze hoş gelmiyor kaldırayım dedim form içindeki elamanlar siliniyor ama resimdeki seçili çerçeve silinmiyor.

 

HTML deki tablo içinde tablo gibi sanki

Edited by korasoglu
Link to comment
Share on other sites

  • 10 ay sonra...
  • 2 hafta sonra ...

benzer proje hazırlıyorum. listbox'taki seçilen programlar kurulunca ComboBox'ta 'Çıkış yap, Yeniden başlat, Bilgisayarı kapat' seçeneklerinden hangisi seçiliyse o görevi yapmasını nasıl sağlarım ? Çıkış yap default gelecek. eğer değiştirilirse ona göre bilip işlem yapıcak 

 

teşekkürler :)

Link to comment
Share on other sites

küçük bir örnek hazırladım:

 

[spoiler]

using System;
using System.Diagnostics;
using System.Windows.Forms;

namespace CMB_Davranisi
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            // çıkış yap default gelsin
            comboBox1.SelectedIndex = 0;
        }

        private void button1_Click(object sender, EventArgs e)
        {
            for (int i = 0; i < 5; i++)
            {
                MessageBox.Show((i + 1).ToString() + ". Program Kuruluyor...");
            }

            // kurulumlar bitince:
            if (comboBox1.SelectedIndex == 0) // çıkış yap seçiliyse
            {
                Application.Exit();
            }
            else if (comboBox1.SelectedIndex == 1) // bilgisayarı kapat seçiliyse
            {
                var psi = new ProcessStartInfo("shutdown", "/s /t 0");
                psi.CreateNoWindow = true;
                psi.UseShellExecute = false;
                Process.Start(psi);
            }
            else if (comboBox1.SelectedIndex == 2) // yeniden başlat seçiliyse
            {
                var psi = new ProcessStartInfo("shutdown", "/r /t 0"); 
                psi.CreateNoWindow = true;
                psi.UseShellExecute = false;
                Process.Start(psi);
            }

        }

    }
}
 

[/spoiler]

https://yadi.sk/d/4k9ZBwQ_pmiF9
  • Like 2
Link to comment
Share on other sites

küçük bir örnek hazırladım:
 
[spoiler]

using System;
using System.Diagnostics;
using System.Windows.Forms;

namespace CMB_Davranisi
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            // çıkış yap default gelsin
            comboBox1.SelectedIndex = 0;
        }

        private void button1_Click(object sender, EventArgs e)
        {
            for (int i = 0; i < 5; i++)
            {
                MessageBox.Show((i + 1).ToString() + ". Program Kuruluyor...");
            }

            // kurulumlar bitince:
            if (comboBox1.SelectedIndex == 0) // çıkış yap seçiliyse
            {
                Application.Exit();
            }
            else if (comboBox1.SelectedIndex == 1) // bilgisayarı kapat seçiliyse
            {
                var psi = new ProcessStartInfo("shutdown", "/s /t 0");
                psi.CreateNoWindow = true;
                psi.UseShellExecute = false;
                Process.Start(psi);
            }
            else if (comboBox1.SelectedIndex == 2) // yeniden başlat seçiliyse
            {
                var psi = new ProcessStartInfo("shutdown", "/r /t 0"); 
                psi.CreateNoWindow = true;
                psi.UseShellExecute = false;
                Process.Start(psi);
            }

        }

    }
}
 
[/spoiler]
https://yadi.sk/d/4k9ZBwQ_pmiF9
 

Hocam Probox al projesi hangi aşamada?
Link to comment
Share on other sites

  • 11 ay sonra...

Arkadaşlar Merhaba.

Öncelikle C# ta yeniyim. Sıfırdan birşeyler yapmaya çalışıyorum.

Resimdeki gibi bir proje de ben "Kuruluma Başla" butonuna tıklayınca ListView de seçili olan programları kurmasını istiyorum ama bir türlü if ile Checked kontrolü sağlayamadım. Yardımcı olursanız sevinirim.

Şimdiden Teşekkürler...

Please register to see this content.

Link to comment
Share on other sites

On 05.02.2017 at 05:05, muratmtrx yazdı:

Arkadaşlar Merhaba.

Öncelikle C# ta yeniyim. Sıfırdan birşeyler yapmaya çalışıyorum.

Resimdeki gibi bir proje de ben "Kuruluma Başla" butonuna tıklayınca ListView de seçili olan programları kurmasını istiyorum ama bir türlü if ile Checked kontrolü sağlayamadım. Yardımcı olursanız sevinirim.

Şimdiden Teşekkürler...

            for (int i = 0; i < listView1.Items.Count; i++)
            {
                if (listView1.Items[i].Checked)
                {
                    var process = Process.Start("Çalıştırılacak Dosya Yolu");
                    process.WaitForExit();
                }
            }
On 05.02.2017 at 08:35, PisiLinux yazdı:

@KintaRo bu çalışmayı örnek olarak verdiğini söylemişdi.Bu çalışmayı NetFramework 4 uygun yapabilirmisiniz arkadaşlar ?

şuradan değiştirebilirsiniz:

screenshot_2017_02_06_at_13_41_11.png

 

  • Like 3
Link to comment
Share on other sites

  • 4 ay sonra...
On 06.02.2017 at 13:41, KintaRo yazdı:

            for (int i = 0; i < listView1.Items.Count; i++)
            {
                if (listView1.Items[i].Checked)
                {
                    var process = Process.Start("Çalıştırılacak Dosya Yolu");
                    process.WaitForExit();
                }
            }

 

 

 

Arkadaşlar şu örnekten yola çıkarsak ben katılımsız olan programların yolunu otomatik olarak nasıl bulduracağım?

System.Diagnostics.Process.Start(@"C:\Users\Eymen\Documents\Visual Studio 2015\Projects\İpekyolu Programlar 2018\Programlar\Adobe Reader XI 11.0.20 Final TR.exe");

buradaki yol şuan belgelerimde bulunan proje de Programlar diye bir klasör olurşturdum. Fakat bu Aio yu flas bellekten çalıştıracağım yada d ye kopyalayıp oradan çalıştıracağım. yani exenin olduğu klasörün yanındaki programlardan otomatik olarak nasıl çalıştıracağım.

Bilmem anlatabildim mi?

Şimdiden teşekkürler...

 

 

On 06.02.2017 at 13:41, KintaRo yazdı:

 

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Similar Content

    • By _2024_
      Windows 11 v23H2 Build 22631.3737 AIO 18in1 (x64) [En/Ru]
      Download Windows 11 v23H2 Build 22631.3737 AIO 18in1 (x64) is the latest Windows 11 23H2 build updated June 2024, non-custom build.

      Program version: Windows 11 [22631.3737]
      Interface language: English-Russian
      The assembly is based on the original UUP files. Updates up to June 11, 2024 have been integrated, as well as SmartFix 2.4.10 and Microsoft DaRT.
      System requirements:
      Processor: At least two cores clocked at least 1 gigahertz (GHz) on a compatible 64-bit processor or System on a Chip (SoC).
      RAM: 4 GB or more (check disabled)
      Storage: 64 GB or larger storage device (verification disabled)
      System firmware: UEFI, with secure boot support (verification disabled)
      TPM: Trusted Platform Module (TPM) version 2.0 (verification disabled)
      Graphics: DirectX 12/WDDM 2.x compatible graphics card.
      Display: > 9 inches with HD resolution (720p)
      Internet connection: Installing Windows 11 Home requires a Microsoft account and an Internet connection. (check disabled)
      Features
      Integrated updates until June 11, 2024;
      .Net Framework 3.5 included (including 2.0 and 3.0);
      Automatic BitLocker is disabled;
      Integrated Visual C++ 2005-2022 (Upd 05/14/2024);
      DirectX 9c integrated (Upd June 2010);
      Integrated SmartFix 2.4.10, Microsoft DaRT into winre.wim and boot.wim;
      Checking is disabled during installation and updating (TPM, Security boot, CPU, Storage and RAM memory);
      The systems were not in audit mode.
      Editions included
      Windows 11 Home
      Windows 11 Home N
      Windows 11 Pro
      Windows 11 Pro N
      Windows 11 Home Single Language
      Windows 11 SE
      Windows 11 SE N
      Windows 11 Pro Education
      Windows 11 Pro N Education
      Windows 11 Pro for Workstations Windows 11 Pro N for Workstations

      Windows 11 Pro Single Language
      Windows 11 Education
      Windows 11 Education N
      Windows 11 Enterprise
      Windows 11 Enterprise N
      Windows 11 Enterprise multi-session
      Windows 11 IoT Enterprise
      You can activated with MAS 2.6 (its inside the folder)
      Greetings goes to @adguard

      Download Windows 11 v23H2 Build 22631.3737 AIO 18in1 (x64) [en/ru]
      File size : 5.7GB
      Torrent Link : https://www.1024tera.com/sharing/link?surl=6vf6qxbRpnOXNWKzNDScNA ISO Link (Sendcm) : https://send.cm/d/18hVn ISO Link (Pixel) : https://pixeldrain.com/u/mfN7JYVd Home Page:
      https://windowslite.net/windows-11-v23h2-build-22631-3737-aio-18in1-x64-en-ru.html
       
       
    • By _2024_
      Windows 10 Enterprise 2021 LTSC Build 19044.4529 AIO 6in1 (x86/x64) [En/Ru]
      Download Windows 10 Enterprise 2021 LTSC Build 19044.4529 AIO 6in1 (x86/x64) [En/Ru] is the latest update of Windows 10 LTSC 2021 build June 2024, the non-custom build includes the 6in1 version of Windows that supports 2 installation languages: English and Russian.

      Program version: 19044.4529
      Interface language: English, Russian
      The build is based on the original MSDN images. Updates up to June 11, 2024 were integrated, as well as SmartFix 2.4.10 and Microsoft DaRT
      System requirements:
      Processor: 1 gigahertz (GHz) processor or faster or SoC.
      RAM: 1 gigabyte (GB) for 32-bit systems or 2 GB for 64-bit systems.
      Hard disk space: 16 GB for 32-bit systems or 32 GB for 64-bit systems.
      Video adapter: DirectX 9 or later with WDDM 1.0 driver.
      Display: 800 x 600.
      Internet connection: An Internet connection is required for updates and certain features.
      Features
      Integrated updates until June 11, 2024;
      Integrated .Net Framework 4.8.1;
      .Net Framework 3.5 included (including 2.0 and 3.0);
      Integrated Visual C++ 2005-2022 (Upd 05/14/2024);
      DirectX 9c integrated (Upd June 2010);
      Integrated SmartFix 2.4.10, Microsoft DaRT into winre.wim and boot.wim;
      The systems were not in audit mode.
      Editions
      Windows 10 Enterprise 2021 LTSC x86-x64
      Windows 10 Enterprise N 2021 LTSC x86-x64
      Windows 10 IoT Enterprise 2021 LTSC x86-x64
      You can activated with MAS 2.6 (its inside the folder)
      Greetings goes to @adguard

      Download Windows 10 Enterprise 2021 LTSC Build 19044.4529 AIO 6in1 (x86/x64) [En/Ru]
      File size : 8.4GB (x86/x64)
      Torrent Link (x86/x64) : https://www.terabox.app/sharing/link?surl=6L9jexhVvqEm1MpXypHitA ISO Link (x64) : https://send.cm/d/18hax Link ISO (x64) : https://pixeldrain.com/u/GLRfzPTC Home Page
      https://windowslite.net/windows-10-enterprise-2021-ltsc-build-19044-4529-aio-6in1-x86-x64-en-ru.html
       
    • By _2024_
      Windows 10 Pro AIO Build 1904X.4412 (x64) by Ghost Spectre
      Download Windows 10 Pro AIO Build 1904X.4412 (x64) by Ghost Spectre (Update 05/2024) is a customized and optimized Windows 10 PRO AIO 20H1 / 20H2 / 21H1 / 21H2 /22H2 by Ghost Spectre 1904X.4412 (x64) build best optimized for gaming needs or low-end consoles.

      Windows 10 release information OS build : 1904X.4412 Edition : PRO + SUPERLITE + SE + COMPACT + DEFENDER + W/O DEFENDER Version : 2004 / 20H2 / 21H1 / 21H2 / 22H2 Arch : x64 Lang : en-US Changelog / Update
      05/18/2024 - AIO VERSION UPDATE 17 - Update OS Build 1904X.4412 - Update StartIsBack for SE  Versions during installation:   1. WINDOWS 10 PRO + COMPACT x64 – NOT stripped down windows, only removing applications/unnecessary programs – for ordinary users – suitable for office work, laptops, tablets, servers, etc.
      2. WINDOWS 10 PRO + COMPACT + DEF x64 – The same as in point 1. But Windows Defender is enabled.
      3. WINDOWS 10 PRO + SUPERLITE x64 – This version is already configured – for advanced users – suitable for games and streaming.
      4. WINDOWS 10 PRO + SUPERLITE + DEF x64 – The same as in point 3. But Windows Defender is enabled.
      5. WINDOWS 10 PRO + SUPERLITE SE x64 – The same as in point 3. But the Start menu has been added as in Windows 7.
      6. WINDOWS 10 PRO + SUPERLITE SE + DEF x64 – The same as in point 5. But Windows Defender is enabled.
      The StartIsBack++ program is responsible for Start in the SUPERLITE SE version FEATURES
      – Compact Integrated + LZX (algorithm)
      – Forced .NET Framework 4.0/4.5/4.6/4.7/4.8
      – Bloatware FREE!!
      – Optimized Pagefile/Services/Scheduled/Search Indexer
      – Privacy Optimizations & Performante mode!
      – Ghost Toolbox! (Add or Remove Windows Store and Much More!)
      – Support any Other Language & Keyboard
      – Support UWP Games / UWP Apps (ex. Forza/GOW/etc etc)
      – Stock Drivers is not removed
      – Dark theme by default
      – Updatable (can update to latest build windows10 version 2004/2009/21H1)
      – Window update can be paused until 2050!
      – GHOST CUSTOM BOOTABLE! (WPE)
      – Windows 10 Themes
      – Windows 10 iconpacks and much more!
      REMOVE/DISABLES COMPONENT
      – Removes Windows Apps and System Apps
      – Removes Windows Security / Defender / Smartscreen
      – Disable Remote Desktop / Tablet keyboard / NFC / Clipboard / Focus Assist – (Superlite only)
      – Disable Print spooler (If you need printers please set Auto in Services)
      – Removes OneDrive
      – Disable Action Center / Notifications – (Superlite only)
      – Disable Telemetry – (Superlite only)
      – Removes Errors reports – (Superlite only)
      – Disable UAC (Never notify)
      – Removes WinSxS backup
      – Removes Winre (can add using Ghost Toolbox)
      Screenshots
      Windows 10 Pro AIO Build 1904X.4412 (x64) by Ghost Spectre
        Windows 10 Pro AIO Build 1904X.4412 (x64) by Ghost Spectre Download Windows 10 Pro AIO Build 1904X.4412 (x64) by Ghost Spectre
      File link by Ghost Spectre
      WPE+ Bootable
      Qiwi: https://**Link gizleme siteleri güvenlik açısından engellenmiştir.**/2tavykrm Pixels: https://**Link gizleme siteleri güvenlik açısından engellenmiştir.**/yr2r6d44 Uploadrar: uploading. File Size : 4GB
      Format: 7Zip/ISO
      MD5: 240d4dcf62cdf781a5c888eb14e282e1 (7zip)
      MD5: 1faa35a1fd214cf34ca4428d93d68748 (ISO)
      —————————
      NORMAL Bootable – Uncompress WIM version
      Qiwi: https://**Link gizleme siteleri güvenlik açısından engellenmiştir.**/4p3ex4s7 Pixels: https://**Link gizleme siteleri güvenlik açısından engellenmiştir.**/t8env2jv File Size : 5GB
      Format: 7Zip/ISO
      MD5: e47d28776512bb899d4c7d122ee38e81 (7zip)
      MD5: 32f08ba5e06e1506d72ea98878ec8e07 (ISO)
      ISO file link by WindowsLite.Net
      Torrent Link (WPE+Nornal) : https://download.windowslite.net/PTBZ1W WPE+ Bootable
      Sendcm Link : https://download.windowslite.net/IMJu Qiwi Link: https://download.windowslite.net/50z357MQ NORMAL Bootable – Uncompress WIM version
      Sendcm Link : https://download.windowslite.net/UGpn Qiwi Link : https://download.windowslite.net/3HOt1sF Home Page:
      https://windowslite.net/windows-10-pro-aio-build-1904x-4412-x64-by-ghost-spectre.html
    • By _2024_
      Windows 10 – 11 AIO 4 in 1 | Full Türkçe | Nisan 2024

      Windows 10 – 11 AIO 4 in 1 | Full Türkçe | Nisan 2024
      Windows 10 – 11 AIO 4 in 1, windows 10 ve 11’in 4 versiyonunu birleştirilmiş halidir. KiNGHaZe tarafından yapılan bu AIO windows aynı zamanda kullanıcıya bağlı aktivasyon içerir. ISO dosyasını yazdırdıktan sonra sources adlı klasörün içindeki “ei.cfg” dosyasını not defteri ile açıp aktivasyon değerini 1 yaparsanız “Hwid” yani dijital aktivasyonu windows kurulumu sonrası yapacaktır. Bu işlem için internet gereklidir, yani internet varken kurulum yaparsanız otomatik olarak aktivasyon yapacaktır. Aynı zamanda Net Framework 3.5 tüm sistemlerde aktif şekilde sunulur. Windows güncellemelerinde yer alan “Zararlı Yazılım Kaldırma Aracı” güncellemelerini içermez ve almaz. Güncellemelerin getirdiği ve bıraktığı çöp diye tabir ettiğimiz dosyaların hepsi sistemden silinmiştir. Bunun dışında herhangi bir bileşen eklenip, çıkarılma işlemi yapılmamıştır.
      Peki içerisindeki sürümler nelerdir? Dediğini duyar gibiyim işte içindeki sürümleri aşağıda bulabilirsiniz…
      Windows 10 – 11 Pro (x64)
      Windows 10 – 11 Home (x64)
      Windows 10 – 11 Home SL (x64)
      Windows 10 – 11 Enterprise VL (x64) İçerikler tek bir ISO dosyasında toplandı, Kurarken tüm sürümleri görebilirsiniz.
       

       
      Thanks:   @KiNGHaZe
       

      Win10_11_AIO_4in1_11.04.2024.zip
      or
      Win10_11_AIO_4in1_11.04.2024.zip
       
    • By _2024_
      Format Sonrası Katılımsız AIO Programlar 2024 Mart TR

      Format Sonrası Katılımsız AIO Programlar 2024 Mart TR
      Format Sonrası Katılımsız AIO Programlar 2024, Güncell 32×64 bit sistem uyumlu Çoklu Dil seçenekli Türkçe dahil
      formatlık programlar, Progressive arkadaşımızın yapımı istediğiniz programı ekleyip çıkarabilirsiniz Ağ driver dahildir.
      madia player video ses indirme programları cd iso yazıcılar bakım onarım gibi bilinen en popüler
      programları içeren son sürüm aıo hepsi bir arada

        File 7.21 GB
      Format Sonrası Katılımsız AIO Programlar 2024 Mart.zip
      or
      Format Sonrası Katılımsız AIO Programlar 2024 Mart.zip
      or
      Format Sonrası Katılımsız AIO Programlar 2024 Mart.zip (⚡Tnc Debrid ile İndir)
       
      Thanks:
      @KiNGHaZe
  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...