Posts

Showing posts from March, 2016

Improve Eye Vision

Eye Care:  Top 8 tips to improve eye vision Nearly half of our days are spent in reading text, working on the computer or staring at lavish LCDs. All these leads to eye fatigue and eye related problems, which further causes diminished vision. Follow these simple tips to sharpen your vision so you can see your way to a future of longevity. Tip to Improve Eye Vision # 1: Practice relaxation exercise One of the simplest relaxation exercise you can do to your eyes is - place your hands together palm to palm and rub them together briskly creating heat. Place them over your eyes and allow your eyes to relax. Do not let light in. Do this whenever you have time during the day. Tip to Improve Eye Vision # 2: Blink your eyes regularly Constantly blinking your eyes is a very simple way to keep your eyes fresh and avoid eyestrain. Computer users tend to blink their eyes very less, thus it is recommended that they should follow the exercise of blinking their eyes every three-four seconds. Tip t...

Access 2007 VBA - Open new form with values

Hi All, Below is the example to open new form by passing value to another form in ACCESS-2007 through Code Editor (VBA Programme) In original form FORM-A Code: Private Sub Go_To_2ndForm_Click() If Not IsNull(Me.ID) Then   DoCmd.OpenForm "2ndFormName", , , , , , Me.ID  Else   MsgBox "All details must be entered first!"  End If End Sub In the called form (2ndFormName in this) FORM-B Code: Private Sub Form_Load() If Not IsNull(Me.OpenArgs) Then     DoCmd.GoToRecord , , acNewRec     Me.ID = Me.OpenArgs  End If End Sub