শনিবার, ১৫ অক্টোবর, ২০১১

Shutdown, Logoff, Restart Code in VB 6

Shutdown কমান্ড বাটনে ডাবল ক্লিক করে Private Sub Command1_Click () এবং End Sub এই লাইন দুটির মাঝখানে নিচের সুত্র/ সংকেত লিখুন:
Shell ("Shutdown -s")
এবার আগের মত করে Logoff কমান্ড বাটনে ডবল ক্লিক করে লিখুন:
Shell ("Shutdown -l")
এবং Restart কমান্ড বাটনে ডবল ক্লিক করে লিখুন:
Shell ("Shutdown -r")
এবার Alt+F+K চেপে নাম দিয়ে সেভ করুন। ব্যাস হয়ে গেল।

How to use the Speech Synthesizer in WPF

Simply add a reference to System.Speech and include the following code to your project.


 
using System.Speech.Synthesis;
 
SpeechSynthesizer synthesizer = new SpeechSynthesizer(); 
synthesizer.Volume = 50;  // 0...100
synthesizer.Rate = 3;     // -10...10
 
// Synchronous
synthesizer.Speak("Welcome to the WPF.");
 
// Asynchronous
synthesizer.SpeakAsync("Welcome to the WPF.");