Search:

Type: Posts; User: luceze; Keyword(s):

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    380

    Append Query (Access 2002)

    I have a database that copies a table before a delete query runs. What I would like to do is be able to reload using an append query to repopulate the table that was deleted. The problem that I am...
  2. Replies
    1
    Views
    177

    Re: Snapshot Reports (Access 2002)

    Easy Fix. My Windows NT profile changed so the specifed path was invalid.
  3. Replies
    1
    Views
    177

    Snapshot Reports (Access 2002)

    I have a set of reports that I am trying to export in snapshot format through VBA. This has worked fine for the last few months (I haven't changed anything) but now I am getting this error:
    The...
  4. Replies
    5
    Views
    306

    Query problem (Access 2002)

    I'm not much of a SQL programmer so this might be very simple.
    I have a query that I need to show all the records except for the records that are in a second query.

    For Example:
    Query1 has...
  5. Replies
    12
    Views
    695

    Re: Loop through records (Access 2000)

    I don't know what was wrong but now it is working. Thanks for the code. I did not know that function existed.
  6. Replies
    12
    Views
    695

    Re: Loop through records (Access 2000)

    It is now giving me the "Object variable or with block variable not set" error.
  7. Replies
    4
    Views
    319

    Re: Drop Down Boxes (Excel 2000)

    I am not sure how to modify the drop downs, but the data seems to be coming from the lists at the right.
  8. Re: Printing either or series of reports (Access 2002 SP1)

    Try this. In the reports NoData event add this code:

    Private Sub Report_NoData(Cancel As Integer)
    docmd.openreport "YourOtherReport"




    Then in the on open event of your "no data" report ...
  9. Replies
    12
    Views
    695

    Loop through records (Access 2000)

    I have a query that grabs all the records that have the current date in the date field.
    What I would like to do is when a form is opened, a message box would open for each record in the query. With...
  10. Replies
    3
    Views
    260

    Re: Save Macro (Word2000)

    That worked great thank you!
  11. Replies
    3
    Views
    260

    Save Macro (Word2000)

    I have a macro in a document called print.doc that opens a text document then saves it as output1.doc. The 1st document then closes but output1.doc remains open. If the user thens opens print.doc...
  12. Replies
    3
    Views
    262

    Re: Sounds on Access Forms (Access 2000)

    Thanks that worked great!
  13. Replies
    3
    Views
    262

    Sounds on Access Forms (Access 2000)

    I have a table with an embedded picture in one field and an embedded .wav file in another. In a form I am trying to make the .wav file play when someone clicks a button. I know that you can...
  14. Replies
    2
    Views
    232

    Re: Assign Range Name (Excel 2000)

    That works great. Thanks.
  15. Replies
    2
    Views
    232

    Assign Range Name (Excel 2000)

    I am using this code to insert a row between values if they are different.

    Sub insertLine()
    Dim cell
    For Each cell In Range("BOB")
    cell.Select
    If Selection.Offset(-1, 0) <> "" Then
    If cell <>...
Results 1 to 15 of 15