Kategori: Yazılım

Buttonlarla Toplama İşlemi Yaptık!!

  <html> <head> <meta charset=”utf-8″> <title>Başlıksız Belge</title> </head> <body> <input type=”button” id=”t1″ value=”1″ > <input type=”button” id=”t10″ value=”10″> <input type=”button” id=”t50″ value=”50″><br/> <div><a>Sonuç:</a><a id=”sonuc”>0</a> </div> <script type=”text/javascript”> var t1 =document.getElementById(“t1”); var t10 =document.getElementById(“t10”); var t50 =document.getElementById(“t50”); var sonuc =document.getElementById(“sonuc”); t1.onclick=topla; t10.onclick=topla; t50.onclick=topla; function topla() { sonuc.innerHTML= Number(sonuc.innerHTML)+Number(this.value); } </script> </body> </html>  

Web sitesini android uygulamaya çeviriyoruz!

Herkese Merhaba, Bugün “App Inventor” Kullanarak herhangi bir web sitesini android uygulamanın içine atacağız. App Inventor nedir? App Inventor Google ve MIT‘nin ortaklaşa geliştirdiği online android programlama araacıdır. Kullanımı oldukça basit hemen başlayalım. http://ai2.appinventor.mit.edu/ Adresine Google hesabımızla giriş yapıyoruz. “Start New Project” diyerek yeni proje açtıktan sonra Uygulamıza Webviewer ekledikten sonra Layout kısmından Horizantal Arrangement ekliyoruz. Horizantal Arrangement‘in içine iki […]

Hello C#

Merhaba, Bugün ilk c#projemizi yapacağız. Bi form uygulaması olacak ve birer tane label ve butonumuz var. tabii ki visual studio kullanıyoruz. ve kodlarımız: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace WindowsFormsApp8 { public partial class Form1 : Form { public Form1() { InitializeComponent(); […]