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 TouchToneTommy 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. dominicgingras

    Receiving email probably simple problem

    I can send email without any problem. I can also do an external nslookup on my public IP without problem and resolve it. I can also telnet my server. So far so good! When I send a email I get an unknown recipient error. The receiving domain name is not the same then my internal domain name so I...
  2. dominicgingras

    NZ related question

    I have a database desing for a transport company picking up people in different place like a taxi. Sometimes they schedule a pickup and at the sametime they schedule the return of that person: Private Sub Retour_Click() On Error GoTo Err_Retour_Click Dim IntersectionArrivee As String Dim...
  3. dominicgingras

    Calendar active x to show todays date

    Maybe it’s a simple question... I have a pop-up form used for entering a date for my user. When I open that pop-up, I want the active x to display today’s date. I tried this code: Me.DateDépart.Value = Now() No success Any help will be appreciated.
  4. dominicgingras

    Why is this so hard?

    I have a post somewhere related to that but this time I will try to refine my question. I need to enter a full date in a field called "shippingtime". How can I make sure that my user are entering a date and the time. My user are pesky one. I dont want to use an input mask because its...
  5. dominicgingras

    Simple but tought time and date question

    I have a database designed for a shipping company. Their is a field for the time of the pickup. Of course I need to stock the time and the date for the pickup. But when its time for data entry on the form, how do you guy create a field to enter a full time and date. For example if you enter that...
  6. dominicgingras

    Dsum

    I have one table with customer and one table with "calls". I want to show on the customer form all the tolal value($) of the call that that person made AND that are not paid(yes-no field). I tried this on the form update event but its look like if my logic is wrong.. maybe its to...
  7. dominicgingras

    Nz on a filter

    I have two combo box on a form that I use to filter data. I use a button with the following code: DoCmd.ApplyFilter "", "[field1] = '" & Me.Cmbox1 & "' and [field2]= '" & Me.Cmbox2 & "'" How can I return a all value(*) if the combo box is empty I could...
  8. dominicgingras

    Invoicing

    If you had to desing an invoicing system with two table: table1 = general information table2 = Details for the invoice Would you store the invoice total in table1 or calculate that total everytime you need it?
  9. dominicgingras

    Filter with multiple criteria

    I have a Continuous Form that display products information. On the top of the form I have different combo box to filter the list of my product. I have been trying to use different method to achieve my goal but I got different problems. Does someone have a "best approach" solution to...
  10. dominicgingras

    Enable Or not , that is the question

    I have a form that I use to do my order entry. When the order is complete, I want to disable some of the sub-form. So far I have use something like that Private Sub Form_Current() If [Status] = "Invoiced" Then ReadOnly = "Read Only" InvoiceButton.Enabled = False...
  11. dominicgingras

    Enable Or not , that is the question

    I have a form that I use to do my order entry. When the order is complete, I want to disable some of the sub-form. So far I have use something like that Private Sub Form_Current() If [Status] = "Invoiced" Then ReadOnly = "Read Only" InvoiceButton.Enabled = False...
  12. dominicgingras

    Customer Number

    I want that every time a user create a new workorder that the focus remain on a specific control (Account Number) until the user enter that account number. I tried to use the setfocus on before update and then create a validation rules on the control but without success. Any clue?
  13. dominicgingras

    Customer Specific pricing

    I would like to asing a pricing level to my customer. For example 1 to 10. Then we i use my order entry from, i will like assing that specific price to that customer. So far I use a dlookup function to assing that pricing. Any lead for where to start?
  14. dominicgingras

    Everyone share

    We have a user login on the vpn and we want to restrain that user to only one directory. We have setup the correct permissions on that directory but that user is able to see all the "everyone shares". That user is by default a domain user.
  15. dominicgingras

    Outlook formatting

    1) Is there a way in Outlook / Exchange to configure the length of a written line before a word wrap occurs at transmission time ? I'd swear that there was a menu item in Outlook, but since we moved to Exchange (and had to reconfigure everything!), I can't find it. 2) When I receive a...
  16. dominicgingras

    Pop-up windows and bookmark

    How would somebody make a pop-up windows that open with a hyperlink and then go to a specific place in that new pop-up page.
  17. dominicgingras

    new server

    I have install a new Exchange 2000 server and will like to move all the mailbox to this new server. What are my best options. thank
  18. dominicgingras

    Ado and Expression, How to "marry" them....

    I have an ADO piece of code that take the date from data from a table and export it to outlook contact on a public folder. My problem is the following: I want to take 3 fields from my table and merge then into one to export to the body part of an outlook contact. Usualy, in a query, I use the...
  19. dominicgingras

    Updating outlook

    I have readed several thread about creating new contact i outlook from Access. I have done some work on a database and I am able to tranfer all my contact to a public folder on the exchange server. But I need something more efficient. Anybody got Idea on how to "update" a contact in...

Part and Inventory Search

Back
Top