Search results

  1. A

    Backup Copy of Database

    Good Enough! question..how does this solve my problem of server going down and data lost. Is it due to the BE being on a seperate server?
  2. A

    Backup Copy of Database

    I appeciate your information regarding splitting the database and understand the concept. I'm just not sure I'll be able to buy-in from the people running the show to allow that kind of time to correcting the set-up.
  3. A

    Backup Copy of Database

    no it is not split. Any suggestion with the way currently set up? not split?
  4. A

    Backup Copy of Database

    Greetings, I have a database which is heavily relied on to provide information running a business. Their are 20-30 people in it at a time inputting information, creating documents ect... Our server has gone down twice within the last week and information had to be restored from out IT dept...
  5. A

    Syntax-reference to pages

    Greetings, I'm having a problem getting the syntax correct when referring to a field on a page/tab. The database is set up with 3 pages, there is a main page(frmMain) and two other pages with subforms(frmLetter, frmVoid) linked to the main form. On the subform(frmVoid) in the default value...
  6. A

    Reference another Database

    I appeciate your efforts! Most likely i will be linking. If I find an alternative I'll post it! Have a great Day!
  7. A

    Reference another Database

    The form will be opened.
  8. A

    Reference another Database

    The form I'm referencing has 5 buttons that refereence other forms built off of querries and tables. Also reports are attached. I would need to link 5 tables, import 7 forms, 3 querries and 2 reports. Its a matter of do I really want to do that or merge the two together? a reference would...
  9. A

    Reference another Database

    I'm trying to avoid linking the tables, importing the forms/querries/reports in the other database. Trying to find a way to reference it.
  10. A

    Reference another Database

    Greetings, I have a database and need to put a button/combo box/???? that will reference another database and reference a form within that DB. I also need it to filter to a certain record on the form(Group field). I was playing around with the RunApp in a macro but dont know what I'm doing...
  11. A

    record updates after going to the next record

    WONDERFUL! it works like a charm! Greatly appeciated.
  12. A

    record updates after going to the next record

    I have a user interface form (frmCP)that a report is generated from(rptCP). the form has many option buttons that are option groups of yes or no, it also has text boxes and date fields. The form is attached to a table(tblCP). When the user inputs the data, the report doesnt show the changes...
  13. A

    Check boxes on a report

    I have a form with check boxes (yes=1 and no=2) and also option buttons(values -1 and 0). I built a report from the table built from the form. The report has all bound fields from the tbl. The report has check boxes and I want to show them as 'checked' if the value is 1 for the y/n fields and...
  14. A

    Check if field exists on report?

    I have a form with check boxes (yes=1 and no=2) and also option buttons(values -1 and 0). I built a report from the table built from the form. The report has all bound fields from the tbl. The report has check boxes and I want to show them as 'checked' if the value is 1 for the y/n fields and...
  15. A

    Visbile Label

    Thank you!
  16. A

    Visbile Label

    Thanks for the responses. I added the field to the form as a bound field, txt. I'm confused on where to put the conditional format would it be something like ....on the click event. If checkField = -1 then boundField.backcolor = whatevercolor? endif
  17. A

    Visbile Label

    I have a form that displays 1000 records. On the form is an option button "do not Contact". when it is toggled on (-1) I want a label to be visible(properties are set to visible=no). Here is my code Private Sub Option369_Click() If DoNotCommWithGrp.Value = -1 Then Me.DoNotContactLbl.Visible =...
  18. A

    Append input from one form to another

    Thanks for all your help! you were right, the referencing was incorrect for the subform.
  19. A

    Append input from one form to another

    The attachment
  20. A

    Append input from one form to another

    Thanks for the quick response. I must apologize for not understanding or not explaining well. Let me further explain. I think I specified the record but not correctly. I have attatched a screen print of the query and the forms. The frmMainContacts form has a subform frmWithRequest, the tab...
Back
Top Bottom