Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by tobymom

  1. tobymom

    Sync offsite mySQL table with local Access Table

    Dear Experts, I am a novice VBA coder and been googling this w/o any luck. Can this be done? Let's say there's a mySQL server running on host: xyz.com DBname: myDB table_name: tblA (and login/pw etc...) Then there's local Access DB with the same table name/structure. Can they be...
  2. tobymom

    Disable "copy"

    TheAceMan1, I'll give it a try and let you know. Thank you so much for your help!
  3. tobymom

    Disable "copy"

    Dear TheAceMan1, Thank you! It worked great with Ctrl+C method of copying. However, do you know how to disable "right click"? I can still right click on the top-left corner then copy the whole Datasheet and paste it into excel. Thanks again.
  4. tobymom

    Disable "copy"

    lameid, Thank you for your input. Unfortunately, it didn't work. I'll keep search... Thanks again!
  5. tobymom

    Disable "copy"

    Dear experts, How can I prevent a user from "copy" the whole datasheet by using "copy and paste"? For example, a user can easily "copy" a whole datasheet then paste it into excel sheet. Thank you in advance.
  6. tobymom

    OrderBy - show NULL value at the end

    Dear Experts, I have a field which has some NULL values. When I sort this field ASC, (Let's say "fldA"), NULL values show up at the top. I understand I can make them listed at the bottom by using query - fldA Is Null DESC, fldA ASC. Is there anyway to do this by using Form's "OrderBy"...
  7. tobymom

    How to sort alphabetically when actual data is number?

    PHV, It worked like a charm! Thank you so much!
  8. tobymom

    How to sort alphabetically when actual data is number?

    Dear Experts, Here's my situation. Please parden me if this is too basic question... I have a table "tblName" as following: id name 1 David 2 Robert 3 Peter 4 Andy on table "tblRecord", those names are stored as number using combo box trick with bound column 1 but showing only 2nd column...
  9. tobymom

    How to make "Forms!" variable-able?

    Dear Experts, I want to make the following code as "Global Module". However, I'm stuck with making "FormName" variable since it's connected with "Forms!". Any ideas will be appreciated. Thanks. BTW, how put following code inside a box? (Like many of you do nicely...) -------------------- Sub...
  10. tobymom

    Change record (find record) on a different form

    Remou: Thank you so much. Your code did exactly what I wanted to accomplish. SoCalAccessPro: Thank you again for all your help.
  11. tobymom

    Change record (find record) on a different form

    Dear SoCalAccessPro, Thank you so much! I never thought of using Forms!... Anyways, the form B's PDM value is changed now thanks to you. I want the Form B's whole record to be changed to that particular value. Could anyone have advice? thanks!
  12. tobymom

    Change record (find record) on a different form

    Dear Experts, Here's where I'm stuck: I have two forms: Form A, Form B both forms have same key - invoice number I have a pull down menu in each forms - cboInvNum I used macro on that PDM - GoToControl then findRecord to go to specific record on both forms. What I want is, when both forms A...
  13. tobymom

    using 'date()' function - confused with field

    Dear bubba100, SkipVought and PHV, Thank you all for your expert advice! PHV- thank you so much for showing me the simple method. I think it was the way that I was looking for. I thought there's gotta be a way to tell VBA that date is function. You showed me how. Thank yu all again.
  14. tobymom

    using 'date()' function - confused with field

    Dear experts, on a form A there are 1. txtRegDate (text box) 2. cmdToday (command button) clicking cmdToday will fill today's date on txtRegDate cmdToday has this event: me.txtRegDate = date Weird thing is this works on some forms and doesn't on other forms. the error msg is "Run-time error...
  15. tobymom

    Detech Table Link Path then re-link accordingly

    Bubba100: Thank you for the pointer. Golem: Thank you for your code. I haven't tested it yet but it looks very promising.

Part and Inventory Search

Back
Top