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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: murpl
  • Order by date
  1. murpl

    Recordselector shouldn't display empty records

    I've created a worksheet (Excel 2K) and preselected a range of cells populated with formulas and formatting that I need. I did this so that I could have the user fill in data using an access form however the input from the form won't allow the list to grow without losing my formatting etc. As...
  2. murpl

    Access Form for Excel worksheets

    Is it possible to use a single Access form to edit data in multiple Excel worksheets in the same workbook? Like using a dropdown combo box to select which sheet the user wants to work with? Mike
  3. murpl

    Autofill Excel sheet using Access form

    I've built an Excel 2K sheet and linked an Access (also 2000) form for the user to add/edit records. The problem is in getting Excel to autofill the formulas for each new record using the Access form. If I enter data directly into the Excel sheet it works fine. Do I have to manually fill the...
  4. murpl

    ComboBox notinlist using AddNew

    Gord, as I glance over this the lights are going on all over the place. 1000W+ ! :) Thanks for taking the time not only for the code but for the helpful tips and information! VBA help is still Greek to me but I know a bit of Latin ::chuckle:: You've answered more than a few questions for me...
  5. murpl

    ComboBox notinlist using AddNew

    Whelp, I've been hacking away at this off and on (in between more pressing demands - Sheesh! Wottaweek!) and I've finally got something that works but I still can't get rid of the final "The text you entered isn't an item in the list" Access msgbox. :( But if I click past that the...
  6. murpl

    ComboBox notinlist using AddNew

    :-/ The first error msg was due to a simple typo. Fixed that but it just seems to fall thru to Access' regular message that it's "not in the list go back and do it again" msgbox. Your revised code does the same thing. er, waitaminit . . . If I open my table I find several blank...
  7. murpl

    ComboBox notinlist using AddNew

    Hmmm, still getting an error &quot;jet database engine can't find query or table 'categories'&quot; (or words to that effect.) The table exists... <scratching chin> I've seen this elsewhere in the forums before but . . . Thanks for that, btw. Mike
  8. murpl

    ComboBox notinlist using AddNew

    It ain't happenin', folks. Here is my complete sub.. htis should work, right??? Private Sub CategoryID_NotInList(NewData As String, Response As Integer) Dim db As Database, rst As Recordset Dim strMsg As String, nd As Variant nd = NewData strMsg = &quot;'&quot; & nd & &quot;'...
  9. murpl

    Multiple Select List Box Without Holding Down Ctrl

    Consider that stolen, rafe! ;)
  10. murpl

    Percentage field

    Gord, Great examples on making use of the validation properties as well as the percent ideas. I went back to a situation I recalled from earlier (and had pasted in a lame-o workaround) and adjusted it more along the lines you suggested above. MUCH better. :) Mike
  11. murpl

    Multiple fields in rowsource combobox property

    &quot;Only one column can be bound to a ComboBox or ListBox but you can do things to save all the data if you need&quot; I assume the &quot;things&quot; would be VB code, huh? I've been trying to work that out but I am kinda new to this and it isn't really all that important in this case. I'd...
  12. murpl

    Percentage field

    If you have the format set to Percent then it will automagically multiply it by 100 (&quot;percent&quot; = &quot;of one hundred&quot; or &quot;x 100&quot;). You can just enter .05 or add some code that divides the input value by 100. Not real elegant. Mike
  13. murpl

    How to add record to be sorted First?

    Just curious but wouldn't something like me.requery as an afterupdate event do it? I don't offer this as an answer, btw. Er, unless it works! :) Mike
  14. murpl

    Multiple fields in rowsource combobox property

    I've done this as per Access help descriptions and examples but it doesn't seem to work... What I'm trying to do is select from multiple collumns in a table (or query; same non result) but all I get in the forms combobox is the value from the first field specified. Here's the SQL statement...
  15. murpl

    Database window opens outside of work space

    Thanks, DougP. That'd probably work. What ended up working was to tile the open windows, resize and move, and save. I can't believe how I was held up by something so dumb that had such a simple fix. A real &quot;forehead slapper&quot;. <G> Thanks for the response! Mike
  16. murpl

    Database window nailed to Access titlebar

    Vman, you ARE great! <vbg> Yes, that did it. I should have read a little more closely the first time. Thanx muchly! (Gave you a star for that.) Thanks mate Mike
  17. murpl

    Database window nailed to Access titlebar

    I can gain focus but I just can't see enough of it to work with it.
  18. murpl

    Database window nailed to Access titlebar

    I've asked this question in another forum but then realized that perhaps it was the wrong forum for the question. Or perhaps I'm just too impatient and find it hard to understand that other folks might just like to enjoy their weekend. LoL! (Btw, hope everyones weekend is/was great!) Here's...
  19. murpl

    Database window opens outside of work space

    This is likely a problem of my own making but how do I fix it? The problem is when I press <F11> to display the database window it opens but places itself just outside the Access window... all I can see is the bottom portion of the database window and I can't move it back to gain access to the...

Part and Inventory Search

Back
Top