Search results

  1. Cosmos75

    Maximize form on load

    Use DoCmd.Maximize on the On Open event of the form Private Sub Form_Open(Cancel As Integer) DoCmd.Maximize End Sub
  2. Cosmos75

    Update Qry (running sum)

    See if this helps you get started Running (or moving) Calculations (Sum/Total, Count, Average)
  3. Cosmos75

    Use randomize and rnd in the same query to get real random choices

    What about using a custom function to generate a random function that incorporates a Randomize() function in the query? Public Function fRandomNum() As Double Randomize (0) fRandomNum = Rnd() End Function
  4. Cosmos75

    WHERE clause using Between and DateAdd not returning correct results

    qry3 still wasn't pulling records properly. Was missing the start dates, i.e. the lower end of the criteria. So I made the folowing changed. Changed qry3 PARAMETERS [dtFind] DateTime, [intMins] Short; SELECT [dtFind] AS dtDate, dtReading, dblValue FROM tblData WHERE dtReading >=...
  5. Cosmos75

    WHERE clause using Between and DateAdd not returning correct results

    This SQL statement seems to return the correct records. qry3 PARAMETERS [dtFind] DateTime, [intMins] Short; SELECT [dtFind] AS dtDate, dtReading, dblValue FROM tblData WHERE dtReading >= DateAdd("n",-1*[intMins],[dtFind]) AND dtReading < [dtFind]; Just FYI, this SQL statement also works as well...
  6. Cosmos75

    WHERE clause using Between and DateAdd not returning correct results

    EMP, Thank you for your reply! I was afriad that it was going to be something like that. I ran into the problem of subtracting decimals recently. I had read FMS's article - "When Microsoft Access Math Doesn't Add Up" before but didn't think of it until I was testing the code. So I am aware...
  7. Cosmos75

    WHERE clause using Between and DateAdd not returning correct results

    I have the following two querydefs. Here is the SQL; qry1 SELECT [dtFind], tblData.dtReading, tblData.dblValue FROM tblData WHERE DateDiff("n",[dtReading],[dtFind]) Between 1 And CInt([intMins]); qry2 SELECT [dtFind], tblData.dtReading, tblData.dblValue FROM tblData WHERE dtReading Between...
  8. Cosmos75

    help urgent

    Try this - Concatenating unique field values for records matching a query's GROUP BY clause
  9. Cosmos75

    Dungeons & Dragons Online

    Anyone playing Dungeons & Dragons Online? If so, are you enjoying it?
  10. Cosmos75

    Scary

    It was a really sad to watch that story on TV. I'm glad that the (insert your own expletive) was caught quickly!
  11. Cosmos75

    NameDecoder.com

    http://namedecoder.com/ - http://cyborg.namedecoder.com/ - http://monster.namedecoder.com/ - http://sexy.namedecoder.com/ I was going to post the sexy decoded name but am not sure it would be appropriate!
  12. Cosmos75

    ComputerBooksDirect.com - Any experience with them?

    MrsGorilla, Thanks for the reply! Much appreciated! :) Now all I have to do is to figure out which books I want! :confused:
  13. Cosmos75

    ComputerBooksDirect.com - Any experience with them?

    Thanks! Thanks for sharing that! I will check them out. :)
  14. Cosmos75

    ComputerBooksDirect.com - Any experience with them?

    fuzzygeek, Thanks for the reply!! Good to know that other people have tried the book club with no problems. Do they regularly add to or revise their list of books?
  15. Cosmos75

    ComputerBooksDirect.com - Any experience with them?

    I came across this website - http://www.computerbooksdirect.com Anyone have any experience with them? They look to be part of http://www.booksonline.com/, which has the Science Fiction Book Club. I've been a member of Science Fiction Book Club for several years and haven't had any problems...
  16. Cosmos75

    Running Sum Query

    Since you aren't really loking for a running sum, but rather just a sum of all the transactions; where Advances are negative and Payments are positive (at least insofar as calculating the Loan Balance). Why not have a table structure along the lines of the folowing; tblLoan LoanPK (Primary...
  17. Cosmos75

    Creating a Running count

    See the following article - Running (or moving) Calculations (Sum/Total, Count, Average) Hope this helps!
  18. Cosmos75

    Change prompt

    Use the Form's BeforeUpdate event. Add code to check if your checkbox is false or true, maybe something like Cancel = Not Me.MyCheckbox
  19. Cosmos75

    Overdue news to share...

    Thank you to one and all for your kind wishes! That's wonderful! Congrats to you and your soon-to-be wife! :) That's cool that you are going to do it in Japan! Any particular reason you choose Japan? I can't say I'll be in to often. Between work (the kind that pays the bills) and working on...
  20. Cosmos75

    Overdue news to share...

    I had some news to share with my fellow forum members. I've been absent from the forums for awhile now so this bit of news is overdue. Early last year, I proposed to my long time girlfiend. In September of last year, we got married. :D
Back
Top Bottom