Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old February 27th, 2007, 06:55 PM
klscheff@gmail.com
Guest
 
Posts: n/a
Default Archiving files

I need help - I am not a programmer. I am a user. I have an access95
database created by an individual who is no longer available. Another
worker in my office inadvertenly archived the jobs from our database.
Can anyone tell me how to unarchive these jobs?
Thank you.

  #2  
Old February 27th, 2007, 08:25 PM
missinglinq via AccessMonster.com
Guest
 
Posts: n/a
Default Re: Archiving files

Archived them how? Archived them where? We can't really help you much from
what you've given us so far, I'm afraid! We need more detail!

--
There's ALWAYS more than one way to skin a cat!

Answers/posts based on Access 2000

Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...ccess/200702/1

  #3  
Old February 27th, 2007, 08:55 PM
klscheff@gmail.com
Guest
 
Posts: n/a
Default Re: Archiving files

On Feb 27, 3:14 pm, "missinglinq via AccessMonster.com" <u28780@uwe>
wrote:
Quote:
Archived them how? Archived them where? We can't really help you much from
what you've given us so far, I'm afraid! We need more detail!
>
--
There's ALWAYS more than one way to skin a cat!
>
Answers/posts based on Access 2000
>
Message posted via AccessMonster.comhttp://www.accessmonster.com/Uwe/Forums.aspx/databases-ms-access/2007...
I hope I can give you more detail - I appreciate your willingness to
help. I am only the database user and am not very familiar w/
programming. There is a 'button' on the main menu screen. It was
pressed. In doing close it takes all files(we call them jobs) that
have been closed and sends them who knows where. The only information
I can retrieve is the job no., name and contact info. I cannot
retrieve the data input into these jobs. (The data is labor,
materials, subcontractors, invoices and payment). I have tried to peek
around into the tables and queries and since I really dont know what I
am doing - it doesnt do me much good. I hope that gives you more
details. Thanks again.

  #4  
Old February 27th, 2007, 11:25 PM
missinglinq via AccessMonster.com
Guest
 
Posts: n/a
Default Re: Archiving files

You need to find out what code is behind the command button that archives the
records.

1) From the form's Design View:

2) Right Click on the button

3) Make a note of the command button's name

4) Select Properties

5) Click on the Event Tab in the Properties box

6) You'll see "On Click"

7) In the box to the right you should see "Event Proceedure"

8) Left Click to the right of this entry

9) This should bring up an ellipsis (...) Double click on this

This should take you to the code window and you should see a sub listed for
the command button control something like "Private Sub
CommandButtonName_Click()" where CommandButtonName is the actual name of the
button you noted in step # 3 above

You need to copy this sub and post it here so that I or someone else to try
to figure out where the records went to. They may have been placed in a
separate table, or could even be in the same table where your active records
are; sometimes we don't actually move the records but merely use a checkbox
to denote an "active" versus an "inactive" record. If it's marked "active" it
appears in the form's underlying query and thus shows in the form. If it's
marked "inactive" it's not retrieved by the query and ths doesn't show up.

BTW, since you're new to all this, please understand that we're all
volunteers here. We're happy to help, that's why we troll these waters, but
we tend to come and go as other duties call. I'll check back when I get a
chance, and others will probably have a look and help if they can.

--
There's ALWAYS more than one way to skin a cat!

Answers/posts based on Access 2000

Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...ccess/200702/1

  #5  
Old February 27th, 2007, 11:45 PM
Larry Linson
Guest
 
Posts: n/a
Default Re: Archiving files

I believe my earlier advice was appropriate. You are going to need to engage
someone who is experienced with and competent in Access database
development. This does not begin to give enough information for anyone to
have a remote chance of solving your problem. I'm afraid it is more than can
be handled in a newsgroup exchange.

Larry Linson
Microsoft Access MVP

<klscheff@gmail.comwrote in message
news:1172609333.109941.18620@k78g2000cwa.googlegro ups.com...
Quote:
On Feb 27, 3:14 pm, "missinglinq via AccessMonster.com" <u28780@uwe>
wrote:
Quote:
>Archived them how? Archived them where? We can't really help you much
>from
>what you've given us so far, I'm afraid! We need more detail!
>>
>--
>There's ALWAYS more than one way to skin a cat!
>>
>Answers/posts based on Access 2000
>>
>Message posted via
>AccessMonster.comhttp://www.accessmonster.com/Uwe/Forums.aspx/databases-ms-access/2007...
>
I hope I can give you more detail - I appreciate your willingness to
help. I am only the database user and am not very familiar w/
programming. There is a 'button' on the main menu screen. It was
pressed. In doing close it takes all files(we call them jobs) that
have been closed and sends them who knows where. The only information
I can retrieve is the job no., name and contact info. I cannot
retrieve the data input into these jobs. (The data is labor,
materials, subcontractors, invoices and payment). I have tried to peek
around into the tables and queries and since I really dont know what I
am doing - it doesnt do me much good. I hope that gives you more
details. Thanks again.
>

  #6  
Old February 28th, 2007, 03:15 PM
klscheff@gmail.com
Guest
 
Posts: n/a
Default Re: Archiving files

Thanks for the directions, here is the code behind the button:
Private Sub btnArchiveJobs_Click()
On Error GoTo Err_btnArchiveJobs_Click

Dim stDocName As String

stDocName = "mcrArchive"
DoCmd.RunMacro stDocName

Exit_btnArchiveJobs_Click:
Exit Sub

Err_btnArchiveJobs_Click:
MsgBox Err.Description
Resume Exit_btnArchiveJobs_Click

End Sub


-----------------------------------------------------------
I appreciate your help. I understand other duties take precedent.
Thanks for trying.
Also - I like your saying: "There's ALWAYS more than one way
to skin a cat!"

 

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles