Search results

  1. Nero

    OLE bound objects making the DB very big

    There are alot of posts regarding images on the forum. Storing images in access 'bloats' the db size. The best method is linking your images and as Ally says just storing the path name to your image in a table. Search the forum for some examples.
  2. Nero

    Export Query

    Shay, Thanks for your reply. The query is triggered through code. I will give your suggestion a go. Thanks again
  3. Nero

    Export Query

    I have a query which exports data as a .txt file. Is there a way of stopping the export if no data is returned from the query, something similar to the report On NoData event ???
  4. Nero

    Using Msgbox

    Dim Response Response = MsgBox "This entry has been marked complete. Are you sure you want to send an email?", vbYesNo If Response = vbNo Then Exit Sub End If
  5. Nero

    DLookup function

    You can try creating a command button and on the OnClick event put the Me.Requery line.
  6. Nero

    DLookup function

    Are you sure the DLookup formula is correct?
  7. Nero

    DLookup function

    Sorry, my mistake. Put the Me.Requery on the after change event of your combobox
  8. Nero

    DLookup function

    In the properties of your textbox add Me.Requery to the after Update event
  9. Nero

    Shift Key

    There are quite a few posts about this. Ghudson seems to have it covered. Try this thread. http://www.access-programmers.co.uk/forums/showthread.php?s=&threadid=35471&highlight=Disable+shift+key
  10. Nero

    Contest anyone?

    Great Idea, Maybe we should use some of the popular questions that are posted, and build a sort of reference db for all to use and abuse? Or Is that a lame idea???
  11. Nero

    References

    Either send me an email or post your email address and I will send you the .ocx file you need and a program for registering the file.
  12. Nero

    References

    What is the name of the library which is missing. In the VB Window Tool>References.
  13. Nero

    For or while loop thru records

    Try putting this after the Set db = CurrentDb Set rs = db.OpenRecordset("TableName",dbOpenTable) Also remeber to set db & rs to Nothing at the end of your code otherwise you will run into problems later. ie Set db = Nothing Set rs = Nothing
  14. Nero

    Sharing Database on Network

    You could split the database keeping the back end on the server and then customising 5 front ends for the reps which would sit on their pc. The only problem with front ends on the reps pc is when you want to make any changes or updates. If you would need to make regular updates then it would...
  15. Nero

    How to make fields in subform invisible?

    Forms![yoursubform]![yourfieldname].Visible = False
  16. Nero

    Sharing Database on Network

    What is the pupose for each rep needing their own database? If each rep only want access to their records then just filter the form based on the rep Id.
  17. Nero

    Looping recordset

    Your MoveFirst needs to be outside of your loop otherwise it will just keep returning to the first record. rs.MoveFirst Do While Not rs.EOF
  18. Nero

    Access Working With Outlook

    Use this code behind a button on your form. You will need to modify it to reference your fields though. Private Sub Command1_Click() On Error GoTo ErrProc Dim TaskNS As Outlook.NameSpace Dim TaskItem As Outlook.TaskItem Dim TaskApp As Object Dim Db As DAO.Database Dim Rst As DAO.Recordset...
  19. Nero

    Database as User-Defined Type

    http://www.access-programmers.co.uk/forums/showthread.php?s=&threadid=34755
  20. Nero

    Not that important question

    Auteng, Cool site!!
Back
Top Bottom