Search results

  1. SpentGeezer

    removing a break point

    Fair go....,it is just a typo: I cannot get the code debug screen from appearing. should be I cannot stop the code debug screen from appearing!
  2. SpentGeezer

    Check if cmd button has been clicked

    Try this, it uses an invisible label which changes if save has been clicked. There is probably a better way, but I am a NOOOOOB!!!!!!!!:D
  3. SpentGeezer

    Copying column in excel

    I tested your sub on my PC (Acc 2003) and it worked fine.
  4. SpentGeezer

    Can't create and populate new record

    Might have something to do with your If then else statement. Is this msgbox popping up when it is run, otherwise your "If masters is not occuring.: MsgBox("Masters " & MyVal, vbOKOnly, "xXx")
  5. SpentGeezer

    How to get the average of time values and show on report

    Have a great Christmas and try this tastey snack fresh from Spent Geezer Association
  6. SpentGeezer

    Lotus "Database Not Open Yet"

    Greetings, and Merry Christmas to one and all, I use this Function to send emails through Lotus from Access 2003 Database. Public Function NotesMailSend(strRecipient As String, strSubj As String, strBody As String, strAttachment As String) 'StrRecipient is the email address of the recipient...
  7. SpentGeezer

    Different default value in a subform

    I am going to eat / drink catergory 3 tonight at the Christmas Party!!
  8. SpentGeezer

    base one combo box off of another

    This is another work around for the same problem from the Spent Geezers Association.
  9. SpentGeezer

    Air Force database junkie

    greetings!!
  10. SpentGeezer

    SetFocus

    Alternatively, if it enters it all at once you could use the on change or after update properties. Private Sub Txt_Textbox1_Change() txt_Textbox2.setfocus End Sub BTW GREETINGS and WELCOME!!
  11. SpentGeezer

    Compact on close or not?

    Can you add it to the same event that calls the compact and repair function so it backs up then compacts and repairs?
  12. SpentGeezer

    Access 2010 web DB: combo box basic problem

    Just order and group your query that is populating the combo (instead of just selecting all). Something like this: SELECT Tasks.DEPARTMENTNAME FROM Tasks GROUP BY Tasks.DEPARTMENTNAME ORDER BY Tasks.DEPARTMENTNAME;
  13. SpentGeezer

    Compact on close or not?

    You should always make a backup before Compacting and repairing. My suggestion would be to create a macro that creates a backup then compacts and repairs on closing. The backup would overwrite the existing backup each time (so you don't balloon out your backup folder). Is this single or multi-user?
  14. SpentGeezer

    Hi all

    Greetings Msyth. Greetings.
  15. SpentGeezer

    Format First Row of Excel Spreadsheet From Access

    Try this at end of code: Dim objExcel Set objExcel = CreateObject("Excel.Application") objExcel.Visible = True objExcel.Workbooks.Open "G:\Biasi\WC" & "_" & Format(Date - 4, "ddmmyy") & ".xls" Set objsheet = objExcel.ActiveWorkbook.Worksheets(1) With objsheet .Rows("1:1").Select...
  16. SpentGeezer

    Define Excel Range from VBA in Access

    Arrghh my noobism on full display!! Not bad Bobby, another tip from the master to put in my notebook.
  17. SpentGeezer

    Disable Tab pages

    Yeah, wasn't sure if you could put the control names in there like that. Thanks. I like pink.
  18. SpentGeezer

    Disable Tab pages

    No, OP stated that unchecked would not be enabled
  19. SpentGeezer

    Disable Tab pages

    Try this tastey morsal straight from the Spent Geezers Association...
  20. SpentGeezer

    Disable Tab pages

    Put a textbox and checkbox on the form that is bound to the name of indicator and checkbox of the table (make them visible = false if you want). Then "On Current" do something like: if checkbox.value = -1 then if textbox.value = tabname1 then tabname1.enabled = false elseif textbox.value...
Back
Top Bottom