Search results

  1. SpentGeezer

    2003 Security - Front End vs. Backend...

    I use a different password on my front end (.mde) and my backend (.mdb) files. I am the only one with a password to the backend.
  2. SpentGeezer

    Exporting Excel data: convert to text problem

    Re: Exporting Excel data: covert to text problem The field you are importing it into in Access needs to be string.
  3. SpentGeezer

    removing a break point

    I had a similar problem once, and fixed it using the following methodology: Remove the offending If is Null(coname....) end if staement completely. Save. Close and reopen. It should work now (without that test obviously). Now put the statement back in and save and close etc... TECHNICALLY THIS...
  4. 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!
  5. 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
  6. SpentGeezer

    Copying column in excel

    I tested your sub on my PC (Acc 2003) and it worked fine.
  7. 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")
  8. 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
  9. 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...
  10. SpentGeezer

    Different default value in a subform

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

    base one combo box off of another

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

    Air Force database junkie

    greetings!!
  13. 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!!
  14. 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?
  15. 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;
  16. 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?
  17. SpentGeezer

    Hi all

    Greetings Msyth. Greetings.
  18. 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...
  19. 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.
  20. SpentGeezer

    Disable Tab pages

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