SystemSounds in F#

To play a system sound in Visual F#, use the SystemSounds object. For a simple example on using the SystemSounds object, try the following:


  1. // Learn more about F# at http://fsharp.net  
  2. //use the f# standard library  
  3. open System  
  4. //use media classes  
  5. open System.Media  
  6. //specify the memory location of the classes used in drawing objects  
  7. //required to draw the listbox item text  
  8. open System.Drawing  
  9. //specify the location of the form class  
  10. open System.Windows.Forms  
  11. //creates a form and assign a "Play System Sounds" caption to it  
  12. let soundform=new Form(Text="Play System Sounds",StartPosition=FormStartPosition.CenterScreen,AutoScaleMode=AutoScaleMode.Font)  
  13. //creates a label and set its Text to “Count”  
  14. let lbl=new Label(Text="System sounds:", Location=new System.Drawing.Point(20,10),AutoSize=true)  
  15. //makes a listbox  
  16. let soundlistbox=new ListBox(Sorted=true,Location=new System.Drawing.Point(20,30),FormattingEnabled=true)  
  17. //adds an item to the listbox when the form is loaded  
  18. soundform.Load.Add(fun items->  
  19.      //adds the items and ignore the passed index position values  
  20.                     soundlistbox.Items.Add("Asterisk")|>ignore  
  21.                     soundlistbox.Items.Add("Beep")|>ignore  
  22.                     soundlistbox.Items.Add("Exclaimation")|>ignore  
  23.                     soundlistbox.Items.Add("Hand")|>ignore  
  24.                     soundlistbox.Items.Add("Question")|>ignore)  
  25. soundlistbox.Click.Add(fun playsound->  
  26.                     if soundlistbox.SelectedIndex=0 then  
  27.                         SystemSounds.Asterisk.Play()  
  28.                         MessageBox.Show("Asterisk""System Sounds", MessageBoxButtons.OK, MessageBoxIcon.Asterisk)|>ignore  
  29.                     if soundlistbox.SelectedIndex=1 then  
  30.                         SystemSounds.Beep.Play()  
  31.                         MessageBox.Show("Beep""System Sounds", MessageBoxButtons.OK)|>ignore  
  32.                     if soundlistbox.SelectedIndex=2 then  
  33.                         SystemSounds.Exclamation.Play()  
  34.                         MessageBox.Show("Exclaimation""System Sounds", MessageBoxButtons.OK, MessageBoxIcon.Exclamation)|>ignore  
  35.                     if soundlistbox.SelectedIndex=3 then  
  36.                         SystemSounds.Hand.Play()  
  37.                         MessageBox.Show("Hand""System Sounds", MessageBoxButtons.OK, MessageBoxIcon.Hand)|>ignore  
  38.                     if soundlistbox.SelectedIndex=4 then  
  39.                        SystemSounds.Question.Play()  
  40.                         MessageBox.Show("Question""System Sounds", MessageBoxButtons.OK, MessageBoxIcon.Question)|>ignore)   
  41.                                              
  42. //displays the label to our form  
  43. soundform.Controls.Add(lbl)        
  44. //adds the listbox to our form      
  45. soundform.Controls.Add(soundlistbox)             
  46. soundform.Show()  
  47. Application.Run(soundform)  

This will generate the following output:

Adding space to a concatenated String

There are several ways to add space to a contanated string in Visual F#:

1.Using the Tab Escape Character

Syntax:
  1. “text1” + “\t” + “textn”  

For instance:
  1. Trace.WriteLine("Adding" +”\t”+ “Space”)  

This will display “Adding Space” with 5-6 spaces in between in the output window. You can also use the unicode equivalent of tab which is \u0009. For example:
  1. Trace.WriteLine("Adding" +”\u0009”+ “Space”)  
2. Typing a space or “ “ between the concatenated strings
Syntax:
  1. “text1” + “ ” + “textn”  

For instance:
  1. Trace.WriteLine("Adding" +” ”+ “Space”)  
You can also use the unicode equivalent of space which is \u0032. For example:
  1. Trace.WriteLine("Adding" +”\u0032”+ “Space”)  
3. Using the Convert.ToChar() string manipulation function
Convert.ToChar converts a specified key code to character.
The key code for tab is 9 while Spacebar has 32.

Syntax:
  1. Convert.ToChar(key code)  
Examples:
  1. //backspace key  
  2. Trace.WriteLine(Convert.ToString(Convert.ToChar(8)))  
  3. //enter key  
  4. Trace.WriteLine(Convert.ToString(Convert.ToChar(13)))  
  5. //adds space to a concatenated string  
  6. Trace.WriteLine(“Adding” + Convert.ToString(Convert.ToChar(32)) + “Space” )  

For a simple example of application that adds space to a concatenated string:

1. Click Start>All Programs>Microsoft Visual Studio 2008>Microsoft Visual Studio 2008.

2. Click File>New>Project>Select Visual F# in the project types>Select F# application in the Visual Studio installed templates category.

3. Click the Project menu>Add reference>Click the .Net tab>Locate then double-click System.Windows.Forms. Do step 3 again and this time, select System.Drawing from the .Net tab.

4. Enter the following code after the line “// Learn more about F# at http://fsharp.net “:

  1. // Learn more about F# at http://fsharp.net  
  2. //specifies the namespace memory location of the classes that  
  3. //will be used in our application  
  4. open System  
  5. open System.Diagnostics  
  6. open System.Windows.Forms  
  7. open System.Drawing  
  8. //creates our form  
  9. let myform= new Form(Text="Adding Space")  
  10. //creates our controls    
  11. let label1=new Label(Text="Firstname:",Location=new System.Drawing.Point(0, 10),AutoSize=true)  
  12. let label2=new Label(Text="Lastname:",Location=new System.Drawing.Point(0, 50),AutoSize=true)  
  13. let fnametextbox=new TextBox(Location=new System.Drawing.Point(100,10),BorderStyle=BorderStyle.FixedSingle)  
  14. let lnametextbox=new TextBox(Location=new System.Drawing.Point(100,50),BorderStyle=BorderStyle.FixedSingle)  
  15. let okbutton=new Button(Text="Ok", Location=new System.Drawing.Point(120, 170))  
  16. let exitbutton=new Button(Text="Exit", Location=new System.Drawing.Point(200, 170))  
  17. myform.Controls.Add(label1)  
  18. myform.Controls.Add(label2  
  19. myform.Controls.Add(fnametextbox)  
  20. myform.Controls.Add(lnametextbox)  
  21. myform.Controls.Add(okbutton)  
  22. myform.Controls.Add(exitbutton)  
  23. myform.Click.Add(fun space->  
  24. //display our text in the ouput window  
  25. Trace.WriteLine("Adding Spaces")  
  26. Trace.WriteLine(label1.Text + "\u0009" + fnametextbox.Text)  
  27. Trace.WriteLine(label2.Text + "\u0009" + lnametextbox.Text))  
  28.   
  29. //execute our application  
  30. myform.Show()  
  31. Application.Run(myform)