Recent content by lightray

  1. L

    How do I write php code to check if checkbox is checked or not

    Hi, this post has been of some help to me. My challenge is to set a variable after an on click event [country flags] I will later interrogate this to display appropriate pricing on another page, with if statement. I have good HTML skills and still coming up to speed with PHP and javascript. I...
  2. L

    Dreamweaver # link

    the # is a default, you would normally enter the link name to link off to. If you don't want it to show until you're ready to put the links in, remove 'href="#"' If you didn't want a link at all, remove <a href="#"> and </a>
  3. L

    Selecting records in lots [100's]

    Thx for your idea jdraw. I have bounced off that to consider just a counter in the loop, which is zerod down.. Here is my code [much thanks to the forum] Private Sub SendEmail_Click() On Error GoTo Err_SendEmail_Click Dim stDocName As String Dim db As DAO.Database Dim rs As DAO.Recordset Dim...
  4. L

    Repeating values?

    Would need to know how each table is structured to be able to get a better understanding of your problem.
  5. L

    Selecting records in lots [100's]

    Hi there, My exercise is to split a thousand or so email addresses down to managable groups of 100 [ISP prefers this too] I have easily created the query to extract the email adresses and used sendobject to get them to outlook. But what I need is an idea of how to select them in groups of 100...
  6. L

    Working hours & holidays problem

    This was a great help to me today.. Thanks for the post and thanks for the reply, RuralGuy :)
  7. L

    Runtime error 13 on DLookup

    Hey RuralGuy, as usual that is awesome spotting.. many thanks. It worked amazingly well. I looked at so many examples on the site, I just couldn't spot it. Probably the 2 am thing.. :):):)
  8. L

    Runtime error 13 on DLookup

    Hi, after resourcing my Runtime 3075, I've now backed into this one. I'm trying to check a condition that a user has a previous certificate type and then pop the User to show the condition. Print is a yes/no field, ID fields are numeric. Have I got this right? Appreciate any help it's almost...
  9. L

    Help please.

    Hi there, you've got the start of an idea. Yes it is best to create a query first If you want to create a calculation in a query it goes on the top line or you can create it on the page itself, best in the query though as you can run the query and see the results of what will eventually be on...
  10. L

    Sample code for Button Click event

    Start by using the Form Wizard to create your form, selecting the table name Master and choosing the field name 'Name' to appear on the form. The next step: While in design mode select the command button and place it where you want your button to appear on the form. Click/hold and drag right...
  11. L

    Sample code for Button Click event

    Do you have a table created already with a text field in it named 'Name'?
  12. L

    Working hours & holidays problem

    :) Thanks RuralGuy, that was just what I needed. Worked a treat! I had the format already setup as a global constant, but didn't realise I needed it here. So the final solution was; rst.FindFirst "[HoliDate] = " & Format$(StartDate, JetDateFmt) If Weekday(StartDate) <>...
  13. L

    Working hours & holidays problem

    Will try that out and post back, many thanx
  14. L

    Working hours & holidays problem

    Hi RuralGuy, would this happen on a open recordset as well? In NZ we use dd/mm/yyyy format as well. This is part of my modified Arvin Meyer module. When I add a new holiday to the holiday table it gets counted (shouldn't), however it seems records for xmas and new year are???:confused: any...
  15. L

    HELP - Not subtracting two sums correctly!

    I think when it comes to calculations in a report you have to fill each calculation out in its own right. Therefore the third calculation should be, = sum([TransactionAmount]) - sum([GST]) Remember if you were doing it in code you would have to assign a variable to each value. As far as...
Top Bottom