Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. dominicg123

    PPMT with date

    I am trying to do a report with an amortization table. This is a function that comes from Microsoft website that shows the payment for each period with different details. There is a counter that shows each period of payment. I trying to show a date for each period that change on each line but it...
  2. dominicg123

    Contact phone number management like in outlook

    I have a single field for type of each number. Maybe my question is not clear... I want to chose to display for each contact only certain type of number. For example , for the contact john smith I want to display is work number and pager number, for Mary Jane I want to display her cell phone and...
  3. dominicg123

    Contact phone number management like in outlook

    I have a database for our company contacts. Each of of my contacts have several phone numbers. I would like to choose from a combo box, like in outlook the contact phone number that I want to display for earch record. Do you think its possible??
  4. dominicg123

    Many to Many

    Thank you PHV. I look at your document and I created the table necessary for a many to many relation. My action table and my contact table are link with a table that contain both tables primary key. My contact form contain a subform that show the actions related to a contact id. My problem is...
  5. dominicg123

    Many to Many

    Sorry I dont understand!!
  6. dominicg123

    Many to Many

    I have a contact form with an action sub-form. My action sub-form is link with the contactid field. I want to add a combo box called secondary contact. Then I want the action to be displayed in both contact.This is where I am gettin lost.Sorry for my pour English...
  7. dominicg123

    Many to Many

    I have a database with contact that have actions related to them. My problem is that a contact can have many actions and an action can be related one or two contact. Is that a many to many relationship?
  8. dominicg123

    Dlookup problem with '

    This code is used to update a text box with the value from the column 1 of a list box. Everything worked until when in the name of the field I have the ' character. Then I get a syntax error! I must have a typo somewhere... for example this will work: G:\Public\Dossiers\BRUN16\R.Brunet Annexe...
  9. dominicg123

    Moving files

    I am trying to move all the files from a folder to another one using VBA. Any good plave to start? I read some stuff on moving files but I need some help on how to move mutiple files at a time. Thank you!!
  10. dominicg123

    Another filter problem

    This code is part of a procedure to filter my record base a combo box. If Not IsNull(Me.FtlTypeDoc) Then strWhere = strWhere & "(right([Linked_Doc], 3)= """ & Me.FtlTypeDoc & """) AND " End If Linked_Doc is a path to certain files and FtlTypeDoc is a combo box with a list a extention...
  11. dominicg123

    Simple filter problem

    I only have one column to my combo box. I did add what you said but I still get this stupid parameter box with the title being the record that I choose in my combo box: Private Sub FtlUser_AfterUpdate() Dim cuser As String cuser = Me.FtlUser.Column(0) MsgBox cuser Me.Form.Filter =...
  12. dominicg123

    Simple filter problem

    I have a combo box name FtlUser. I want to apply a filter with that combo box but I get a dialog box asking me for a parameter. Probably a simple mistake.... Private Sub FtlUser_AfterUpdate() Me.Form.Filter = "[ActionFor]=" & Me!FtlUser Me.FilterOn = True End Sub
  13. dominicg123

    Trying to change a sub-form

    Thank you !! This is my final code and it work: Private Sub btnGoToContact_Click() Dim con As Long con = Me.ContactID DoCmd.Close , "Actions" Forms![Main]![DisplayPanel].SourceObject = "Contacts" Forms![Main]![Menu Options].Value = 1 Forms![Main]![DisplayPanel].Form.Filter = "[Contact ID]=" &...
  14. dominicg123

    Trying to change a sub-form

    Yes it is correct. Actually anything that I try to do on the contact form doesn’t work. For example I tried to .setfocus on a specific field…
  15. dominicg123

    Trying to change a sub-form

    Thank you, the first step work perfectly but my filter gives me an error message. Its look like the form "Contacts" is not activated yet so I cannot filter it.
  16. dominicg123

    Trying to change a sub-form

    I have a form called main that I use for a menu on the left side of the screen. I use an option group with the following code to navigate between different sub-form that are use to display information: Select Case Me![Menu Options] Case 1 Me![DisplayPanel].SourceObject =...
  17. dominicg123

    fill combo box with data from two tables

    Thank you all this is my result SELECT qryContacts.[No De Contact], qryContacts.[Contact(Nom/Prénom)] FROM qryContacts ORDER BY qryContacts.[No De Contact] UNION ALL SELECT Users.UserID, " " AS Expr1 FROM Users
  18. dominicg123

    fill combo box with data from two tables

    Do you know where it is in the nothwind database?

Part and Inventory Search

Back
Top