Adding navigational Buttons to your database application

The fastest way to add navigational buttons to your database application is to use a BindingNavigator. If you are not yet familiar with Binding Navigator, I suggest reading this post first before proceeding to the steps below:

Before the Database Connection and Binding process I want you to make an Ms-Access database file named “dbEmployee” containing a table named “tblEmployee”. Use the following specifications:

Field NameData Type Description
chrempno text Handles employee id
chrfnametext Handles employee’s name
chrlname text Holds employee’s last name


After designing the structure of your table, you can enter appropriate values for each field. For instance:

chrempnochrfnameChrlname
1John Doe
2Jean Doe


Now that we are done creating a table, we can now link to it by using OleDbDataAdapter in Visual F#:


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 and System.Data 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 memory location of the class files  
  3. //that will be needed in our application  
  4. open System  
  5. open System.Windows.Forms  
  6. open System.Data  
  7. open System.Drawing  
  8. //creates a font  
  9. let ffont=new Font("Verdana", 9.75F,FontStyle.Regular, GraphicsUnit.Point)    
  10. //creates a connection object  
  11. let oleconn = new System.Data.OleDb.OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;  
  12.   Data Source=C:\Documents and Settings\station 2\My Documents\dbEmployee.mdb")  
  13.  //creates an OleDbDataAdapter  
  14. let dataadpter = new System.Data.OleDb.OleDbDataAdapter("Select * from tblEmployee", oleconn)  
  15. //generates a dataset  
  16. let dataset11 = new DataSet()  
  17. //fills the dataset with recod values  
  18. dataadpter.Fill(dataset11,"tblEmployee")|>ignore  
  19. //creates a form  
  20. let dataform = new Form(Text="Add Navigational Buttons",AutoScaleDimensions=new System.Drawing.SizeF(60.0F, 13.0F),ClientSize=new System.Drawing.Size(300, 200),StartPosition=FormStartPosition.CenterScreen)  
  21. //creates our controls    
  22. let label1=new Label(Text="Employee number:",Location=new System.Drawing.Point(0, 10),AutoSize=true)  
  23. let label2=new Label(Text="Firstname:",Location=new System.Drawing.Point(0, 50),AutoSize=true)  
  24. let label3=new Label(Text="Lastname:",Location=new System.Drawing.Point(0,100),AutoSize=true)  
  25. let emplabel=new Label(Location=new System.Drawing.Point(140,10),BorderStyle=BorderStyle.FixedSingle)  
  26. let fnamelabel=new Label(Location=new System.Drawing.Point(100,50),BorderStyle=BorderStyle.FixedSingle)  
  27. let lnamelabel=new Label(Location=new System.Drawing.Point(100,100),BorderStyle=BorderStyle.FixedSingle)  
  28. let bindingsource=new BindingSource()  
  29. //creates a binding navigator  
  30. //this will allow us to add navigational buttons to our data grid  
  31. let bindingnav=new BindingNavigator(Dock=DockStyle.None,Location=new System.Drawing.Point(100, 170))  
  32. //creates a toolstrip buttons for our binding navigator  
  33. let movefirst=new ToolStripButton(Text="Top")  
  34. let moveprev=new ToolStripButton(Text="Prev")  
  35. let movenext=new ToolStripButton(Text="Next")  
  36. let movelast=new ToolStripButton(Text="Bottom")  
  37. let exitbutton=new ToolStripButton(Text="Exit")  
  38. //adds the toolstripbuttons to our binding navigator  
  39. bindingnav.Items.Add(movefirst)|>ignore  
  40. bindingnav.Items.Add(moveprev)|>ignore  
  41. bindingnav.Items.Add(movenext)|>ignore  
  42. bindingnav.Items.Add(movelast)|>ignore  
  43. bindingnav.Items.Add(exitbutton)|>ignore  
  44. //adds a function to each buttons  
  45. bindingnav.MoveFirstItem<-movefirst  
  46. bindingnav.MoveNextItem<-movenext  
  47. bindingnav.MovePreviousItem<-moveprev  
  48. bindingnav.MoveLastItem<-movelast  
  49. exitbutton.Click.Add(fun exit->  
  50. //close the form and dataconnection  
  51.                     dataform.Close()  
  52.                     oleconn.Close())  
  53. //assigns the dataset name as a bindingsource datasource  
  54. bindingsource.DataSource<-dataset11  
  55. //assigns our table as a binding source datamember  
  56. bindingsource.DataMember<-"tblEmployee"  
  57. //assigns the bindingsource name as a binding navigators  
  58. //bindingsource value  
  59. bindingnav.BindingSource<-bindingsource  
  60. //opens the connection  
  61. oleconn.Open()  
  62. //assings the font to our form  
  63. dataform.Font<-ffont  
  64. //adds the controls to our form  
  65. dataform.Controls.Add(label1)  
  66. dataform.Controls.Add(label2)  
  67. dataform.Controls.Add(label3)  
  68. dataform.Controls.Add(emplabel)  
  69. dataform.Controls.Add(fnamelabel)  
  70. dataform.Controls.Add(lnamelabel)  
  71. dataform.Controls.Add(bindingnav)  
  72. //binds the fieldnames to our label  
  73. emplabel.DataBindings.Add(new Binding("Text",bindingsource,"chrempno"))  
  74. fnamelabel.DataBindings.Add(new Binding("Text",bindingsource,"chrfname"))  
  75. lnamelabel.DataBindings.Add(new Binding("Text",bindingsource,"chrlname"))  
  76. //executes our application  
  77. dataform.Show()  
  78. Application.Run(dataform)  
5. Click the run icon to execute your application. You should now see an output similar to the following screen shot: For more sketchy tutorials on Visual F# visit Microsoft F# Developer Center.

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.