Türkçe
Merhaba arkadaşlar bugün, size çok kolay bir şekilde yapabileceğiniz bir alarm programı hazırlamayı size anlatacağım.
English
Hello friends today, I will tell you how to prepare an alarm program that you can do very easily.
Türkçe
Önce Microsoft Visual Studio programını açıp bir form oluşturduk
English
First we open the microsoft visual studio program and create a form
Türkçe
Formu oluşturduktan sonra formda 2 label koyduk, 1 textbox ve 2 timer
English
After creating the form, we put 2 labels in the form, 1 text box and 2 timer
(Label1 Name = 00 name, Label2 Name = Alarm Clock)
Türkçe
Ardından formumuzun kod ekranına gidiyoruz.
Burada öncelikle yapmamız gereken medya kütüphanesini tanımlıyoruz.
English
Then we go to the code screen of our form.
Here we define the media library we need to do first.
Türkçe
Bunu tanımladıktan sonra, form ekranımıza geri dönüyoruz ve alt taraftaki timer1'i bir kez tıklıyoruz.
Bunu görüntü de kigibi yapıyoruz. Interval : 1000 ve Enable : True.
(ve biz de timer2'de aynısını yapıyoruz)
English
Once we have defined it, we return to our form screen and click once on the timer1 at the bottom.
We do it like we did in the picture. Interval : 1000 and Enable : True.
(and we do the same on timer 2)
Türkçe
Daha sonra timer1 ve timer2'yi çift tıklayın ve aşağıdaki kodları yazın
English
Then double-click timer 1 and timer 2 and write down the codes below
private void timer1_Tick(object sender, EventArgs e)
{
label1.Text = DateTime.Now.ToLongTimeString();
}
private void timer2_Tick(object sender, EventArgs e)
{
if(textBox1.Text==label1.Text)
{
SoundPlayer sound = new SoundPlayer();
sound.SoundLocation = "ding.wav";
sound.Play();
MessageBox.Show("Alarm Time");
//ding.wav name and extension of the song played by the alarm - alarm tarafından çalınan şarkının adı ve uzantısı
}
Türkçe
çalmak istediğiniz şarkıyı oluşturduğunuz klasörün içindeki bin / debug klasörüne gidin
English
to the bin / debug folder inside the folder where you created the song you want to play
Türkçe
Sonuç Kendi programınızı yazmışsınızdır. Tebrik ederim.
English
Conclusion You wrote your own program. Congratulations
Türkçe
Böyle çalışarak kendinizi geliştirebilirsiniz.
English
By working like this, you can improve yourself
https://github.com/ShanksTaicho/AlarmProgram
Posted on Utopian.io - Rewarding Open Source Contributors
@manishmike10 , @simnrodrguez , @utopian-io , @espoem , @knowledges , @freedom , @ruah :)
The @OriginalWorks bot has determined this post by @shankstaicho to be original material and upvoted it!
To call @OriginalWorks, simply reply to any post with @originalworks or !originalworks in your message!
hemen deniyorum teşekkürler :) <3
abi sen hackermısın ya cok akıllısın
mükemmelsin abi sen ya .
eline sağlık çok bilgilendirici :)
Eyvallah bro ne demek :D
.
Hello @crokkon again reviewing the article I have fixed the errors you stated .
.
Sir @crokkon , I thought it was instructive and changed the category, please check again.
.
sir @crokkon , I corrected the article, but it was a problem and it returned to its former state, but now I have reorganized and changed it.
@crokkon I moved to the tutorial category , I think it would be more useful in this category.
.