Search results

  1. R

    www.accessvba.com

    They changed names to mdbmakers.com. Something to do with trademark regulations on the name accessvba.
  2. R

    PHP Editor

    It should work. I use notepad for all my web based programming (mostly asp and html). I've heard wordpad can screw things up though. You might want to check that the file is saving as xxxx.php and not xxxx.php.txt (I think php files are .php right?). Windows might hide the .txt part if you...
  3. R

    filemaker vs access

    Try this http://www.filemaker.com/downloads/pdf/fm_access_comparison.pdf. I've been hired to move a big filemaker db to access because everyone here hates filemaker. Although, they're using version 5.5 and it's up to version 8 so it might be a little better now. Check out www.fmforums.com too.
  4. R

    commas in text/memo fields

    Thanks, got it now.
  5. R

    commas in text/memo fields

    I'm sure this has been answered but I can't think of the right keyword to search for. I'm transferring data between tables inorder to normalize an old db and basically I have a docmd.runsql("insert into .... values (... ' " & rs.fields("fieldname") & " ' ... but a lot of the records in...
  6. R

    records locking

    Is there a way to lock only certain records directly in a table or through a form. I've just been tasked with verifying the data in a db and I'm supposed to lock a record once it has been verified so no one else can edit it. I supposed I could move the record to new table once it's been verified...
  7. R

    Audit Trail

    Are you asking me for help or is your name Rob too. Anyway, if you are I've just started using access a month ago and haven't even looked at combo boxes yet but couldn't you just do something in the getControlValue function like if (name of control passed to function = name of combobox) then...
  8. R

    Audit Trail

    Alright, I solved it by creating a recordsetclone in the form_current and then creating a function getControlValue in the form class that would take the name of the control and return the value from the recordsetclone (this only worked if the controls had the same names as the fields in the...
  9. R

    Audit Trail

    I'm getting the same error as FNQChick on a form based on a query that includes two tables in a one to many relationship which I assume is cause by this http://support.microsoft.com/default.aspx?scid=kb;EN-US;207836. Is there a way to get which changes were made without using ctl.oldvalue?
  10. R

    Changing the current record of a form

    Used Me.RecordSet.Move
  11. R

    Changing the current record of a form

    I have a form for viewing and editing all the records in a table and a button that when clicked lets you select an excel file and import it to the table. This all works fine except when the import is finished I want the current record displayed on the form to change to the first record imported...
  12. R

    Front end table access

    OK, I found the tools->startup thing. Is there anything else I should be considering.
  13. R

    Front end table access

    Can I prevent users from entering design view in the front end as well
  14. R

    Front end table access

    I split my database so that users could only edit/view data through the forms but when I opened the front end the tables where still there (linked though) and I could edit and look at them. I assume this is normal so how can I prevent users from seeing the tables. Do I just set them to hidden...
  15. R

    converting from access 2003 to future versions

    That's what I thought. I just got off the phone with him. Apparently, he hasn't really worked with Access before. He just knows people that have had problems with programs they have written that interact with Access db's when converting between versions. He meant that the programs would have to...
  16. R

    converting from access 2003 to future versions

    I've been hired to clean up and convert a flat filemaker database into access 2003 and I've spent the last two weeks learning the ins and outs of access and doing preparations. Well, today some high up database guy in another department told me not to use access because in the future when a new...
  17. R

    vba help

    great, thanks
  18. R

    vba help

    So in your code I assume field is the name of a field in the table and not a string containing the name of the field. Is rsUpdate!field just a string so I can remove the whitespace from it in fRemoveWhiteSpace, return it, and do rsUpdate.update to update the record. so assuming I have a field...
  19. R

    vba help

    I'm writing a VBA function that removes any extra whitespace from text fields and I want to pass to that function the name of the field in a string. The problem I'm having is I have a recordset 'rsUpdate' and a string 'field' containing the field name and I want to do something like...
  20. R

    query help, duplicates

    Nevermind about this I just realized it won't work.
Back
Top Bottom