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 Mike Lewis 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. dkellygb

    Outlook actions when message recieved

    Thank you! At first this did not work. I gave up after monkeying with every setting I could find. The next day it started working. I assume that I had to close Outlook and reopen it to make it work. Regards, Dave
  2. dkellygb

    Outlook actions when message recieved

    I am pretty good with VBA from within Access or Excel but I am struggling with Outlook. What I am trying to do is execute code whenever an email message is received or sent. Specifically, when a message arrives, I would like to check the email address against a field in a Jet table. If it...
  3. dkellygb

    Random Access files error 59 strange problems

    The way I am doing seems to match the help and works in several other programs. The question is why does this work for two weeks and then stop working with a runtime error 59? Why can I fix it by importing the program and objects into a new database?
  4. dkellygb

    Random Access files error 59 strange problems

    The AuditTrail type is the file layout for the random access file. It requires no reference. Here it is for your information: Type AuditTrail ID As String * 1 AudDate As Date AudTime As String * 5 CostCentre As Integer User...
  5. dkellygb

    Random Access files error 59 strange problems

    I need to read from random access files and write them to access to do analysis on a legacy system's data. I have written the code and all seems to work fine for about a week and then bingo! I start getting run-time error 59 bad record length on a GET statement. Repairing and compacting the...
  6. dkellygb

    Automation between Word and Access

    Thanks! That's a good tip. Dave
  7. dkellygb

    Automation between Word and Access

    Thank you for your advice. I was struggling with adding the document to a bound object frame. However, I think I found a solution. On Error GoTo NoOleObject Dim ctl As Control Dim wrd As Word.Application Dim fname As String Dim sal As String Dim add As String...
  8. dkellygb

    Automation between Word and Access

    I am struggling with automation with office XP. I have an Access database where every time a user communicates with a customer, it is logged with the date and time. I am trying to create a facility where the user can select from a list of about 5 word templates to create a letter to a...
  9. dkellygb

    Close temporary form without a dialog box

    Yes, I have put docmd.setwarnings false in the close and the unload events separately. It stops the dialog box which asks you whether you want to save but then gives you the form name dialog box. I don't want either.
  10. dkellygb

    Close temporary form without a dialog box

    How do you remove the close button from the application? How do you handle the situation where the user is shutting down Windows which then tries to close the appliction generating a dialog box which prevents Windows from shutting down?
  11. dkellygb

    Close temporary form without a dialog box

    I have no problem closing a form without the dialog box from another form or from code, what I am trying to do is not have the dialog box when the user closes the application or form - either by closing the entire application or when windows is shutting down. If the user clicks the X in the...
  12. dkellygb

    Close temporary form without a dialog box

    Hello, I am creating a temporary form programmatically with a large number of controls to interact with the user. I do not need to save the form when the user exits the application or if he decides to close the form. However, when I try to docmd.setwarnings false in the unload event, the form...
  13. dkellygb

    Horizontal scrolling in a tabular form

    Yes, a crosstab query will do that but I would like to have it on a form. Are there any activeX controls which changes a tabular forms orientation from up/down to left/right? Thanks, Dave
  14. dkellygb

    Horizontal scrolling in a tabular form

    You have the right idea about the organisation. However, I would like the columns record1, record2, record3... recordn to be able to scroll to the right infinitely. This is how the access form works in an up and down direction, I just want it to work in a left to right direction. Dave
  15. dkellygb

    Horizontal scrolling in a tabular form

    As we know, tabular forms scroll vertically. I want to invert the columns and rows so that the columns run down the left and the records scroll to the right. Is this possible? Maybe with an ActiveX control? Your help is appreciated. Dave
  16. dkellygb

    How do I create a join on country codes that are part of phone number

    The phone number and country code are in the same field. For example, an Irish phone number will look like this 00353123123123 where 00 is the international access code (always 2 chars), 353 is the country code (varies between 1 and 3 chars), and 123123123 is the phone number. My problem is...
  17. dkellygb

    How do I create a join on country codes that are part of phone number

    I have a large taqble of telephone calls which consists of phone number dialled|time of day|Duration. I have a separate table which consists of Country code|Country Text|Rate per minute. I would like to create a join between these two tables so I can do some what if analysis with different...
  18. dkellygb

    One instance of Access required only!

    The DDE approach works well and there is a MS Knowledge Base article ACC: How to Determine If a Specific Windows Program Is Running (Q88167) which shows a Windows API approach. Both these approaches are fine for displaying a message and closing down. However, I would like to switch to the...

Part and Inventory Search

Back
Top