wordpress statistics
  • Today is Wednesday, May 23, 2012

10 Responses to “Digital Clock on Main Switchboard”

  1. Me says:

    Nicely written, well illustrated.

    Steps 15 to 17 don’t work. They generate an error.

  2. a.p.r.pillai says:

    If you have changed the Name Property Value of the Label Control to lblClock correctly then it should work without errors. Check and re-confirm this. You may copy and paste the following Code into the VBA Module of your Form and try again:

     

    Private Sub Form_Timer()
    Me.lblClock.Caption = Format(Now(), "dddd dd, mmm-yyyy hh:nn:ss")
    End Sub

     

  3. Pretty nice post. I just stumbled upon your blog and wanted to say that I have really enjoyed browsing your blog posts. In any case I’ll be subscribing to your feed and I hope you write again soon!

  4. Nice brief and this enter helped me alot in my college assignement. Say thank you you seeking your information.

  5. Sreekanth says:

    Well illustrated, thanks . However the label flashes all the time which is annoying. Can i do something to correct it.

  6. a.p.r.pillai says:

    Try slowing down the frequency of updating the label, like let it update the label once in every two seconds interval.

    Change the line : Me.TimerInterval = 1000

    To: Me.TimerInterval = 2000

    wherever it is appearing on the Form Module.

    If you don’t need the Seconds segment in the Time format then you can modify the format string: "dddd dd, mmm-yyyy hh:nn:ss" to "dddd dd, mmm-yyyy hh:nn" and the Timer Inverval to 60,000 to update the label every minute.

  7. Sreekanth says:

    Thanks a lot, really appreciate your feedback.

  8. Shaur says:

    This Good thing but the style is looking so odd.

  9. langit says:

    Please could anyone help me out with my problem? i know this isn’t difficult for you to give me idea how to print a report with a serial number like 1,2,3,4,5,6,7,8,9….etc.after applying a filter like date wise, i want the serial number to appear as 1,2,3,4,5,6….etc not like 4,6,5,1,2,4. For further example, today i have entered 10 delivery notes dated 11/12/2010 and then the following day ive entered 20 delivery notes dated 12/12/2010 after filtering from 11/12/2010 to 12/12/2010 i want those numbers to appear like 1,2,3,4,5,6,….etc since in my report if i filtered two days it shows a random number like 4,3,6,1,2,5!!please help me out of this! its really a terrible report if that would seem to appear in my report.

  10. a.p.r.pillai says:

    1. Insert a Text Box in the Detail Section of the Report where you want the Serial Number to appear.
    2. Display the Property Sheet of the Text Box (View – -> Properties)
    3. Enter the expression =1 in the Control Source Property.
    4. Set the Running Sum Property value to Yes.
    5. Save the Report and Open it in Print Preview and check the Text Box Value.

    If you want the Serial Numbers to appear in a Query Column itself then check the following Link: Auto Numbering in Query Column

Leave a Reply

You must be logged in to post a comment.