Search results

  1. ReAn

    question on FE/BE about transactions

    No, your fe/be will automatically lock records in use so there is no confliction, whoever edits 1st has priority.
  2. ReAn

    Date Range Crossover

    Trying to pull up records that have any scheduled day/time in another range of date/times. Ok: In my Table i have Scheduled Start and Scheduled Finish, and on my form i have Period Beginning and Period Ending. I need to pull up any records that are scheduled to be active between Preriod...
  3. ReAn

    Current record number...

    could have sworn i checked for that... thanks...
  4. ReAn

    Current record number...

    Is there a way in VBA to get the current record number, i cannot seem to find a property in the form, nor an answer in the search on the fourm.
  5. ReAn

    VBA with Lotus Note COM objects...

    I think this in the wrong forum buddy..
  6. ReAn

    Need help duplicating data

    sql = "SELECT * FROM tblMyTable WHERE {insert your where clause here}" rst = CurrentDB.openRecordset(sql) while not rst.EOF sql = "INSERT INTO tblMyTable (field1, field2, field3) VALUES ('" & rst("field1") & "','" & rst("field2") & "','" & rst("field3") & "')" CurrentDB.Execute sql...
  7. ReAn

    Triggering Memos...

    Two methods: 1) Set up datasource on a server, and get the server to run a macro ever 5 mins or something that updates them. 2) Set up fe to do the same thing on a form timer.
  8. ReAn

    Access Hell - A programmers nightmare

    Access dosent like deleting stuff when you delete it. Lets say X represents DATA and Y represents structure info (queries, forms, etc..) and let's say O is blank data Here's a sample file...
  9. ReAn

    Access Projects & Encryption

    If the control source itself is the function, it cannot push the data back through the controlling function to reproduce an encrypted value to update. So, you need to go an alternate method. Have the form set the value on load with code and then have the text box set the encrypted text to...
  10. ReAn

    How to display filtered records list of the form in the list box?

    Add a WHERE clause to your rowsource that makes the stuff you nee LIKE the txt/combo/whatever box on your form. Example: "... WHERE [tblRec].[Subject] LIKE [Forms]![frmMyForm].[txtMySubjectFilter]"
  11. ReAn

    Issues with SQL

    From time to time the connectivity of the site is poor but that's what you get for $0.00/mo. Im sure if everyone were paying the owners $9.99/mo. They'd have dual OC148 lines for the server as well as hired and trained professional consultants who sit there all day in different timezones...
  12. ReAn

    Story

    the big walnut
  13. ReAn

    Story

    boogers hanging from
  14. ReAn

    Opening databases without access

    If im remembering correctly (good chance im not) the developer edition can turn them into exes.
  15. ReAn

    Set the value of a public variable whose name is stored in a string

    You both seem pretty childish to me, i mean come on.. this is an access help board, not a gathering forum for 11yr old kids desperatly awaiting the next DragonBall Z game or pokemon episode. Let's keep the flaming in those boards, not here. Although I don't have an answer for you arvindn i...
  16. ReAn

    Really need help

    Simple solution: $75usd...go get another 512 stick
  17. ReAn

    Story

    snot from the
  18. ReAn

    Advice please for technologies to learn

    World's best and easyest reference for exactly what you're looking for. www.w3schools.com Click ASP and ADO on the left, that'll teach you everything you'll ever need to know.
  19. ReAn

    Need some basic help

    Not sure exactly what you mean but try this: In your table make two yes/no fields called Report1 and Report2 then make a checkbox on your form and make it's controlsource corresponding to whichever one of those two fields. Then when you run your report, filter only those with "yes" in the...
  20. ReAn

    MCount - Faster than DCount?

    Wow.. one big super godlike DLL =D yummy. Let me know if you need any more mathematics help (or any help for that matter) I have VB.Net @ home, i also may be able to help port it to .Net
Back
Top Bottom