• WSherworth

    WSherworth

    @wsherworth

    Viewing 15 replies - 76 through 90 (of 263 total)
    Author
    Replies
    • in reply to: Convert To PDF? (2000) #773003

      Hi there desrev1
      If you have Acrobat (full) you just need to print your publisher doc to the AcrobatPDF printer. I believe there are freeware equivalents of Acrobat available. If you do a search of the Lounge the subject (ie Free PDF converters) has already been covered.
      Peter

    • in reply to: Using VBA to create a Task within an App. (Outlook 2000) #1808179

      Ken
      Sorry it’s been a while but I think you’re doing something similar to me so here’s part of my code. I assume you know the set up stuff. Mine is for one item at a time but you could set up a loop of course. RecurrenceType is a long number and you can add RecurrenceInterval. (See OL Help)

      ‘Write values from variables to fields in the new appt item
      With itm
      .Subject = “Training Session at ” & strSubject & ” (No ” & lngNo & “)”
      .start = dteStart
      .Location = strLocation
      .End = dteFinish
      .ClearRecurrencePattern
      ‘I found that for some reason you need to clear before you set even tho you think it is clear
      ‘add recurrence pattern for training session if more than 1 day
      If lngDuration > 1 Then
      Set myRecur = .GetRecurrencePattern
      With myRecur
      .RecurrenceType = olRecursDaily ‘or weekly monthly etc
      .PatternEndDate = dteEndDate
      End With
      strMsg = “DATES TRANSFERRED.” & NL _
      & “DON’T FORGET THE WALL CHART.”
      End If
      .Close (olSave)
      End With
      ‘add task reminder for recontact
      Set itmT = itms.Add(“IPM.Task”)
      With itmT
      .Subject = “Send Training follow-up letter to ” & strSubject
      .DueDate = dteEndDate + 63
      .Close (olSave)
      End With

      Hope this helps.
      Peter

    • in reply to: Using VBA to create a Task within an App. (Outlook 2000) #1808174

      Ken
      I can transfer dates to Outlook from Access and set up recurrence patterns if the needed. Sometimes for me an appointment may last 3 days or repeat over a couple of weeks so instead of entering it in Access several times I have a field that contains the recurrence number. If this is more than 1 the code automatically sets up the recurrence pattern. Is this what you want? If so, I can show you my code and you can adapt it.
      Peter

    • in reply to: Using VBA to create a Task within an App. (Outlook 2000) #1808170

      Tim
      I would have thought an easy way to do it from Access would be to open Outlook from code at a given time which would then pop up the due task. I used to automatically run a query if a particular form was opened before 8.15am (don’t ask!!).
      Form_OnOpen
      if time is less than X
      CreateObject(etc)
      exit
      Something like that! It depends on your users of course but it could work if they’re disciplined (?) or if it’s just for you.
      Peter

    • in reply to: Simple ScannerCopier #767518

      Bob
      I think iCarbon probably depends on your printer. I work on 300dpi for B/W and play around with contrast to get a good result. It may occasionally mean wasting a sheet of paper but most of the time it goes 1st time. I get good colour copy at 75 dpi and grey scale at 150dpi.
      Peter

    • in reply to: Simple ScannerCopier #767519

      Bob
      I think iCarbon probably depends on your printer. I work on 300dpi for B/W and play around with contrast to get a good result. It may occasionally mean wasting a sheet of paper but most of the time it goes 1st time. I get good colour copy at 75 dpi and grey scale at 150dpi.
      Peter

    • in reply to: Simple ScannerCopier #766821

      Bob
      I have a great little program called iCarbon that copies to any printer or fax printer driver. It may also print to a file tho I’ve never tried that. I use my preferred graphic prog to scan direct and save.
      I can’t remember where I picked it up but the author’s site is here.
      Peter

    • in reply to: Simple ScannerCopier #766822

      Bob
      I have a great little program called iCarbon that copies to any printer or fax printer driver. It may also print to a file tho I’ve never tried that. I use my preferred graphic prog to scan direct and save.
      I can’t remember where I picked it up but the author’s site is here.
      Peter

    • in reply to: Adobe Acrobat Toolbars – STOP!!! (2003) #761491

      I think if you go into your Word Startup folder (usually ..userApplication DataMicrosoftWord) you’ll see that Adobe has sneaked it in there. Delete it and it bothers you no further.
      Merry Christmas
      Peter

    • in reply to: Adobe Acrobat Toolbars – STOP!!! (2003) #761492

      I think if you go into your Word Startup folder (usually ..userApplication DataMicrosoftWord) you’ll see that Adobe has sneaked it in there. Delete it and it bothers you no further.
      Merry Christmas
      Peter

    • in reply to: Show More Templates? (2002) #758362

      Lou
      I’m not in Word at the moment but I’m fairly sure that if you click File|New instead of the menu button you get the whole list of templates from your template folder (and subfolders)
      Peter

    • in reply to: Show More Templates? (2002) #758363

      Lou
      I’m not in Word at the moment but I’m fairly sure that if you click File|New instead of the menu button you get the whole list of templates from your template folder (and subfolders)
      Peter

    • in reply to: Publisher and Mail Merge (Publisher 2000) #758153

      If you use a maketable query in Access then link this, it should work. The MTQ would of course be created from the filtered list of recipients.

      Peter

    • in reply to: Publisher and Mail Merge (Publisher 2000) #758154

      If you use a maketable query in Access then link this, it should work. The MTQ would of course be created from the filtered list of recipients.

      Peter

    • in reply to: MsgBox (Access 2003) #757704

      Braddy
      What do you see at the moment when you first open the DB. It seems to me the simplest way to do what you want is to open on a little unbound form which says “Do you want to see today’s clients?” . Have 2 buttons, one of which filters your client list by date and the other either exits or goes into some other part of the DB. I ( or lots of other loungers) can show you the code if this sounds right.
      Peter

    Viewing 15 replies - 76 through 90 (of 263 total)