Posts

Convert text to Speech ASP.Net C# Audio Recognation

using SpeechLib; using System.Threading; private void button1_Click(object sender, EventArgs e)         {             if (textBox1.Text != "")             {                 SpVoice voice = new SpVoice();                 voice.Volume = 100;                 voice.Speak(textBox1.Text, SpeechVoiceSpeakFlags.SVSFlagsAsync);                 voice.WaitUntilDone(Timeout.Infinite);             }             else                 MessageBox.Show("Please enter text for speech","Text to Speech", MessageBoxButtons.OK,MessageBoxIcon.Information);         }

علب سجائر وولاعات ذكية وتطبيقات على هاتفك للإقلاع عن التدخين "ملكش حجة" ---- منقول عن اليوم السابع

Image
منقول عن اليوم السابع الإقلاع عن التدخين أمر غير سهل بالمرة خاصة على الأشخاص الذين اعتادوا عليها واعتبروها جزءا من حياتهم اليومية، وعلى الرغم من الطرق المتعددة التى ظهرت خلال السنوات الماضية للإقلاع سواء عن طريق لاصقات أو علكات تساعد فى تقليل معدلات التدخين الخاصة بالفرد، إلا أن النتائج لم تكن مبهرة، لذلك جاء دور التكنولوجيا لتجد حلا لهذه المشكلة أو المساهمة فى الحد منها، بعد إعلان فريق من المخترعين فى الولايات المتحدة الأمريكية عن إطلاق علبة سجائر ذكية يمكن أن تساعدك على الإقلاع عن التدخين. مواصفات علبة السجائر الذكية لعلبة تحمل اسم Nicotrax ومزودة بمجموعة متطورة من أجهزة الاستشعار التى تراقب استخدامك للسجائر، وكم مرة يقوم المستخدم بالسحب منها وفى أى ساعات يكون الاستخدام كثيفا، وترسل هذه البيانات إلى التطبيق الذكى المتصل بالعلبة، مما يعطى للمستخدم نظرة واضحة عن سلوكه والطريقة المثلى للانسحاب. ولاعات ديجيتال ذكية كما قام فريق آخر من المخترعين بتطوير ولاعات ذكية جديدة تحمل اسم QuitBit مزودة بشاشة تظهر لك كم عدد المرات التى تقوم بإشعالها، وليس هذا فقط بل وفقا لم

Introduction to Object Oriented Programming Concepts (OOPS) in C#.net

Image
Introduction to Object Oriented Programming Concepts (OOPS) in C#.net   OOPS Concepts Class:   It is a collection of objects. Object: It is a real time entity. An object can be considered a " thing " that can perform a set of related activities. The set of activities that the object performs defines the object's behavior. For example, the hand can grip something or a Student (object) can give the name or address. In pure OOP terms an object is an instance of a class The above template describe about object Student Class is composed of three things name, attributes, and operations public class student { } student objstudent= new student (); According to the above sample we can say that Student object, named objstudent, has created out of the student class. In real world you will often find many individual objects all of the same kind. As an example, there may be thousands of other bicycles in existence, all o