A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Creating new appointment & setting its properties



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old February 1st 06, 08:08 AM posted to microsoft.public.outlook.program_vba
dim4x4
external usenet poster
 
Posts: 17
Default Creating new appointment & setting its properties

Hello everybody!

This is my first message here and first macro I'm trying to do in
Outlook (I did some for Excel before, albeit with macro recorder =)

Basically, I'm creating a new appointment (the code was borrowed from a

message from this group or some forum). Below is part of the code and 2

things I'm struggling to do.

With objAppointment
.Subject = "Call "
.Start = ' PROBLEM 1: Here I want to put a time of a current
selection in a daily view of the calendar (don't know how to do it)
.Duration = 5
.ReminderMinutesBeforeStart = 0
.Save
.Display
End With

PROBLEM 2: When appointment is created and opened I was the cursor to
be in a subject line after the word "Call ", so that I can finish
typing the subject, eg. "Call Bill Gates" =)

Would appreciate any advise. Thank you!

  #2  
Old February 1st 06, 03:33 PM posted to microsoft.public.outlook.program_vba
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default Creating new appointment & setting its properties

Forget about #2, you can't control the cursor position except by using
SendKeys and that can be very buggy and depending on where the cursor starts
out can be unpredictable.

If one item is selected in the current view of the calendar then use this
for #1:

Dim datStart As Date

datStart = Application.ActiveExplorer.Selection.Item(1).Start

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"dim4x4" wrote in message
ups.com...
Hello everybody!

This is my first message here and first macro I'm trying to do in
Outlook (I did some for Excel before, albeit with macro recorder =)

Basically, I'm creating a new appointment (the code was borrowed from a

message from this group or some forum). Below is part of the code and 2

things I'm struggling to do.

With objAppointment
.Subject = "Call "
.Start = ' PROBLEM 1: Here I want to put a time of a current
selection in a daily view of the calendar (don't know how to do it)
.Duration = 5
.ReminderMinutesBeforeStart = 0
.Save
.Display
End With

PROBLEM 2: When appointment is created and opened I was the cursor to
be in a subject line after the word "Call ", so that I can finish
typing the subject, eg. "Call Bill Gates" =)

Would appreciate any advise. Thank you!


  #3  
Old February 1st 06, 06:00 PM posted to microsoft.public.outlook.program_vba
Josh Einstein
external usenet poster
 
Posts: 57
Default Creating new appointment & setting its properties

Hey Ken I responded to someone before about the cursor position but I never
tried it myself. What's wrong with sending the EM_SETSEL message to the
RichEdit control? Should be fairly straightforward.

(One hour later...) Okay please excuse my horredous VBA/Win32. It's been so
long since I've done this. The code below will set the cursor position of
the body control or text box of any standard Outlook item. This started out
as a 10 minute thing but then I realized that guy wanted to set the position
in the subject so I had to change some things around.

-------------------------------------------
Option Explicit

Private Declare Function SendMessage Lib "User32.dll" Alias "SendMessageA"
(ByVal hwnd As Long, ByVal msg As Long, ByVal wParam As Long, ByVal lParam
As Long) As Long
Private Declare Function GetForegroundWindow Lib "User32.dll" () As Long
Private Declare Function FindWindowEx Lib "User32.dll" Alias "FindWindowExA"
(ByVal hwndParent As Long, ByVal hwndChildAfter As Long, ByVal lpszClass As
String, ByVal lpszWindow As String) As Long
Private Declare Function EnumChildWindows Lib "User32.dll" (ByVal hwndParent
As Long, ByVal lpEnumFunc As Long, ByVal lParam As Long) As Boolean
Private Declare Function GetClassName Lib "User32.dll" Alias "GetClassNameA"
(ByVal hwnd As Long, ByVal lpClassName As String, ByVal nMaxCount As Long)
As Long
Private Declare Function SetFocusAPI Lib "User32.dll" Alias "SetFocus"
(ByVal hwnd As Long) As Long
Private Declare Function GetWindowTextAPI Lib "User32.dll" Alias
"GetWindowTextA" (ByVal hwnd As Long, ByVal lpString As String, ByVal cch As
Long) As Long
Private Declare Function GetWindowTextLength Lib "User32.dll" Alias
"GetWindowTextLengthA" (ByVal hwnd As Long) As Long

Private Const CLASS_SUBJECT = "RichEdit20WPT"
Private Const CLASS_BODY = "RichEdit20W"
Private Const CLASS_WINDOW = "rctrl_renwnd32"

Private Const DEFAULT_SUBJECT = "To whom it may concern"
Private Const DEFAULT_BODY = "When in the course of human events..."

Private Const EM_SETSEL = &HB1

Private Const FINDMODE_BYCLASS = 0
Private Const FINDMODE_BYTEXT = 1

Private hwndRichEdit As Long

' Used internally
Private expectedText As String
Private currentFindMode As Long

''' summary
''' Demo entry method
''' /summary
Public Sub CreateTestItem()

Dim app As AppointmentItem
Set app = Application.CreateItem(olAppointmentItem)

app.Subject = DEFAULT_SUBJECT
app.Body = DEFAULT_BODY

app.Display

DoEvents

'SetBodyCursorPos 5
SetTextBoxCursorPos DEFAULT_SUBJECT, 5

End Sub

''' summary
''' Sets the cursor position in a given text box by finding the text box
that has the specied
''' text and sets the focus to it.
''' /summary
Public Sub SetTextBoxCursorPos(ByVal subjectText As String, ByVal pos As
Long)
SetPositionInternal subjectText, FINDMODE_BYTEXT, pos
End Sub

''' summary
''' Sets the cursor position in the body by finding the body (no text is
needed because only one
''' body control is on the form) and sets focus to it.
''' /summary
Public Sub SetBodyCursorPos(ByVal pos As Long)
SetPositionInternal "", FINDMODE_BYCLASS, pos
End Sub


''' summary
''' Sets the cursor position of a text box or the body field. Called
internally by the two
''' public methods SetBodyCursorPos and SetTextBoxCursorPos.
'' /summary
Private Sub SetPositionInternal(ByVal text As String, ByVal findMode As
Long, ByVal pos As Long)

' Get the foreground window which should be appointmentitem
Dim hwnd As Long
hwnd = GetForegroundWindow()

' Make sure it's the appointment window
Dim hwnd2 As Long
hwnd2 = FindWindowEx(0, 0, CLASS_WINDOW, vbNullString)

If hwnd = hwnd2 Then

' Store the text that they're searching for in a private variable
expectedText = text
' Likewise store the find mode. Would have passed this to
enumchildwindows
' but since i'm storing expectedText, I'll do this too. I hate VB
currentFindMode = findMode

' Find the rich edit box on the page
EnumChildWindows hwnd, AddressOf EnumWindowProc, 0

If hwndRichEdit 0 Then
SetFocusAPI hwndRichEdit
SendMessage hwndRichEdit, EM_SETSEL, pos, pos
End If

End If

End Sub

''' summary
''' Callback function invoked by Windows for every child window enumerated.
''' /summary
Private Function EnumWindowProc(ByVal hwnd As Long, ByVal lParam As Long) As
Boolean

Dim returnValue As Boolean
returnValue = True

Dim className As String
Dim length As Long

className = Space(100)
length = GetClassName(hwnd, className, Len(className) - 1)
If length 0 Then

' FINDMODE_BYTEXT means they are looking for a single-line textbox
that
' has the specified text. Because there are multiple single-line
text box class
' instances on the form, we need the expected text to match it to
get the right hwnd
If currentFindMode = FINDMODE_BYTEXT Then
If Left(className, length) = CLASS_SUBJECT And
GetWindowText(hwnd) = DEFAULT_SUBJECT Then
hwndRichEdit = hwnd
returnValue = False
End If
' FINDMODE_BYCLASS means they are looking for the body control.
Since there's
' only one instance of that class on the form we don't care about
the text
ElseIf currentFindMode = FINDMODE_BYCLASS Then
If Left(className, length) = CLASS_BODY Then
hwndRichEdit = hwnd
returnValue = False
End If
End If

End If

EnumWindowProc = returnValue

End Function

''' summary
''' Helper function to get the window text of the HWND in one call.
''' /summary
Private Function GetWindowText(ByVal hwnd As Long) As String

Dim buff As String
buff = Space(GetWindowTextLength(hwnd) + 1)

GetWindowTextAPI hwnd, buff, Len(buff)
GetWindowText = Left(buff, Len(buff) - 1)

End Function


--
Josh Einstein
Einstein Technologies
Microsoft Tablet PC MVP
Tablet Enhancements for Outlook 2.0 - Try it free for 14 days
www.tabletoutlook.com


"Ken Slovak - [MVP - Outlook]" wrote in message
...
Forget about #2, you can't control the cursor position except by using
SendKeys and that can be very buggy and depending on where the cursor
starts out can be unpredictable.

If one item is selected in the current view of the calendar then use this
for #1:

Dim datStart As Date

datStart = Application.ActiveExplorer.Selection.Item(1).Start

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"dim4x4" wrote in message
ups.com...
Hello everybody!

This is my first message here and first macro I'm trying to do in
Outlook (I did some for Excel before, albeit with macro recorder =)

Basically, I'm creating a new appointment (the code was borrowed from a

message from this group or some forum). Below is part of the code and 2

things I'm struggling to do.

With objAppointment
.Subject = "Call "
.Start = ' PROBLEM 1: Here I want to put a time of a current
selection in a daily view of the calendar (don't know how to do it)
.Duration = 5
.ReminderMinutesBeforeStart = 0
.Save
.Display
End With

PROBLEM 2: When appointment is created and opened I was the cursor to
be in a subject line after the word "Call ", so that I can finish
typing the subject, eg. "Call Bill Gates" =)

Would appreciate any advise. Thank you!




  #4  
Old February 1st 06, 09:47 PM posted to microsoft.public.outlook.program_vba
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default Creating new appointment & setting its properties

Cool. Does it work universally (WordMail or Outlook editor, formats (plain
text, HTML, RTF)?

The window and process subclassing I've seen with WordMail is horrendous,
it's miles of code just to get a true hWnd for a WordMail window usually.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Josh Einstein" wrote in message
...
Hey Ken I responded to someone before about the cursor position but I
never tried it myself. What's wrong with sending the EM_SETSEL message to
the RichEdit control? Should be fairly straightforward.

(One hour later...) Okay please excuse my horredous VBA/Win32. It's been
so long since I've done this. The code below will set the cursor position
of the body control or text box of any standard Outlook item. This started
out as a 10 minute thing but then I realized that guy wanted to set the
position in the subject so I had to change some things around.

-------------------------------------------
Option Explicit

Private Declare Function SendMessage Lib "User32.dll" Alias "SendMessageA"
(ByVal hwnd As Long, ByVal msg As Long, ByVal wParam As Long, ByVal lParam
As Long) As Long
Private Declare Function GetForegroundWindow Lib "User32.dll" () As Long
Private Declare Function FindWindowEx Lib "User32.dll" Alias
"FindWindowExA" (ByVal hwndParent As Long, ByVal hwndChildAfter As Long,
ByVal lpszClass As String, ByVal lpszWindow As String) As Long
Private Declare Function EnumChildWindows Lib "User32.dll" (ByVal
hwndParent As Long, ByVal lpEnumFunc As Long, ByVal lParam As Long) As
Boolean
Private Declare Function GetClassName Lib "User32.dll" Alias
"GetClassNameA" (ByVal hwnd As Long, ByVal lpClassName As String, ByVal
nMaxCount As Long) As Long
Private Declare Function SetFocusAPI Lib "User32.dll" Alias "SetFocus"
(ByVal hwnd As Long) As Long
Private Declare Function GetWindowTextAPI Lib "User32.dll" Alias
"GetWindowTextA" (ByVal hwnd As Long, ByVal lpString As String, ByVal cch
As Long) As Long
Private Declare Function GetWindowTextLength Lib "User32.dll" Alias
"GetWindowTextLengthA" (ByVal hwnd As Long) As Long

Private Const CLASS_SUBJECT = "RichEdit20WPT"
Private Const CLASS_BODY = "RichEdit20W"
Private Const CLASS_WINDOW = "rctrl_renwnd32"

Private Const DEFAULT_SUBJECT = "To whom it may concern"
Private Const DEFAULT_BODY = "When in the course of human events..."

Private Const EM_SETSEL = &HB1

Private Const FINDMODE_BYCLASS = 0
Private Const FINDMODE_BYTEXT = 1

Private hwndRichEdit As Long

' Used internally
Private expectedText As String
Private currentFindMode As Long

''' summary
''' Demo entry method
''' /summary
Public Sub CreateTestItem()

Dim app As AppointmentItem
Set app = Application.CreateItem(olAppointmentItem)

app.Subject = DEFAULT_SUBJECT
app.Body = DEFAULT_BODY

app.Display

DoEvents

'SetBodyCursorPos 5
SetTextBoxCursorPos DEFAULT_SUBJECT, 5

End Sub

''' summary
''' Sets the cursor position in a given text box by finding the text box
that has the specied
''' text and sets the focus to it.
''' /summary
Public Sub SetTextBoxCursorPos(ByVal subjectText As String, ByVal pos As
Long)
SetPositionInternal subjectText, FINDMODE_BYTEXT, pos
End Sub

''' summary
''' Sets the cursor position in the body by finding the body (no text is
needed because only one
''' body control is on the form) and sets focus to it.
''' /summary
Public Sub SetBodyCursorPos(ByVal pos As Long)
SetPositionInternal "", FINDMODE_BYCLASS, pos
End Sub


''' summary
''' Sets the cursor position of a text box or the body field. Called
internally by the two
''' public methods SetBodyCursorPos and SetTextBoxCursorPos.
'' /summary
Private Sub SetPositionInternal(ByVal text As String, ByVal findMode As
Long, ByVal pos As Long)

' Get the foreground window which should be appointmentitem
Dim hwnd As Long
hwnd = GetForegroundWindow()

' Make sure it's the appointment window
Dim hwnd2 As Long
hwnd2 = FindWindowEx(0, 0, CLASS_WINDOW, vbNullString)

If hwnd = hwnd2 Then

' Store the text that they're searching for in a private variable
expectedText = text
' Likewise store the find mode. Would have passed this to
enumchildwindows
' but since i'm storing expectedText, I'll do this too. I hate VB
currentFindMode = findMode

' Find the rich edit box on the page
EnumChildWindows hwnd, AddressOf EnumWindowProc, 0

If hwndRichEdit 0 Then
SetFocusAPI hwndRichEdit
SendMessage hwndRichEdit, EM_SETSEL, pos, pos
End If

End If

End Sub

''' summary
''' Callback function invoked by Windows for every child window
enumerated.
''' /summary
Private Function EnumWindowProc(ByVal hwnd As Long, ByVal lParam As Long)
As Boolean

Dim returnValue As Boolean
returnValue = True

Dim className As String
Dim length As Long

className = Space(100)
length = GetClassName(hwnd, className, Len(className) - 1)
If length 0 Then

' FINDMODE_BYTEXT means they are looking for a single-line textbox
that
' has the specified text. Because there are multiple single-line
text box class
' instances on the form, we need the expected text to match it to
get the right hwnd
If currentFindMode = FINDMODE_BYTEXT Then
If Left(className, length) = CLASS_SUBJECT And
GetWindowText(hwnd) = DEFAULT_SUBJECT Then
hwndRichEdit = hwnd
returnValue = False
End If
' FINDMODE_BYCLASS means they are looking for the body control.
Since there's
' only one instance of that class on the form we don't care about
the text
ElseIf currentFindMode = FINDMODE_BYCLASS Then
If Left(className, length) = CLASS_BODY Then
hwndRichEdit = hwnd
returnValue = False
End If
End If

End If

EnumWindowProc = returnValue

End Function

''' summary
''' Helper function to get the window text of the HWND in one call.
''' /summary
Private Function GetWindowText(ByVal hwnd As Long) As String

Dim buff As String
buff = Space(GetWindowTextLength(hwnd) + 1)

GetWindowTextAPI hwnd, buff, Len(buff)
GetWindowText = Left(buff, Len(buff) - 1)

End Function


--
Josh Einstein
Einstein Technologies
Microsoft Tablet PC MVP
Tablet Enhancements for Outlook 2.0 - Try it free for 14 days
www.tabletoutlook.com


  #5  
Old February 1st 06, 10:58 PM posted to microsoft.public.outlook.program_vba
Josh Einstein
external usenet poster
 
Posts: 57
Default Creating new appointment & setting its properties

That will only work for standard Outlook forms but it should work among all
items as far as I know. WordMail should be alot easier to set the cursor
position using the object model.

--
Josh Einstein
Einstein Technologies
Microsoft Tablet PC MVP
Tablet Enhancements for Outlook 2.0 - Try it free for 14 days
www.tabletoutlook.com


"Ken Slovak - [MVP - Outlook]" wrote in message
...
Cool. Does it work universally (WordMail or Outlook editor, formats (plain
text, HTML, RTF)?

The window and process subclassing I've seen with WordMail is horrendous,
it's miles of code just to get a true hWnd for a WordMail window usually.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Josh Einstein" wrote in message
...
Hey Ken I responded to someone before about the cursor position but I
never tried it myself. What's wrong with sending the EM_SETSEL message to
the RichEdit control? Should be fairly straightforward.

(One hour later...) Okay please excuse my horredous VBA/Win32. It's been
so long since I've done this. The code below will set the cursor position
of the body control or text box of any standard Outlook item. This
started out as a 10 minute thing but then I realized that guy wanted to
set the position in the subject so I had to change some things around.

-------------------------------------------
Option Explicit

Private Declare Function SendMessage Lib "User32.dll" Alias
"SendMessageA" (ByVal hwnd As Long, ByVal msg As Long, ByVal wParam As
Long, ByVal lParam As Long) As Long
Private Declare Function GetForegroundWindow Lib "User32.dll" () As Long
Private Declare Function FindWindowEx Lib "User32.dll" Alias
"FindWindowExA" (ByVal hwndParent As Long, ByVal hwndChildAfter As Long,
ByVal lpszClass As String, ByVal lpszWindow As String) As Long
Private Declare Function EnumChildWindows Lib "User32.dll" (ByVal
hwndParent As Long, ByVal lpEnumFunc As Long, ByVal lParam As Long) As
Boolean
Private Declare Function GetClassName Lib "User32.dll" Alias
"GetClassNameA" (ByVal hwnd As Long, ByVal lpClassName As String, ByVal
nMaxCount As Long) As Long
Private Declare Function SetFocusAPI Lib "User32.dll" Alias "SetFocus"
(ByVal hwnd As Long) As Long
Private Declare Function GetWindowTextAPI Lib "User32.dll" Alias
"GetWindowTextA" (ByVal hwnd As Long, ByVal lpString As String, ByVal cch
As Long) As Long
Private Declare Function GetWindowTextLength Lib "User32.dll" Alias
"GetWindowTextLengthA" (ByVal hwnd As Long) As Long

Private Const CLASS_SUBJECT = "RichEdit20WPT"
Private Const CLASS_BODY = "RichEdit20W"
Private Const CLASS_WINDOW = "rctrl_renwnd32"

Private Const DEFAULT_SUBJECT = "To whom it may concern"
Private Const DEFAULT_BODY = "When in the course of human events..."

Private Const EM_SETSEL = &HB1

Private Const FINDMODE_BYCLASS = 0
Private Const FINDMODE_BYTEXT = 1

Private hwndRichEdit As Long

' Used internally
Private expectedText As String
Private currentFindMode As Long

''' summary
''' Demo entry method
''' /summary
Public Sub CreateTestItem()

Dim app As AppointmentItem
Set app = Application.CreateItem(olAppointmentItem)

app.Subject = DEFAULT_SUBJECT
app.Body = DEFAULT_BODY

app.Display

DoEvents

'SetBodyCursorPos 5
SetTextBoxCursorPos DEFAULT_SUBJECT, 5

End Sub

''' summary
''' Sets the cursor position in a given text box by finding the text box
that has the specied
''' text and sets the focus to it.
''' /summary
Public Sub SetTextBoxCursorPos(ByVal subjectText As String, ByVal pos As
Long)
SetPositionInternal subjectText, FINDMODE_BYTEXT, pos
End Sub

''' summary
''' Sets the cursor position in the body by finding the body (no text is
needed because only one
''' body control is on the form) and sets focus to it.
''' /summary
Public Sub SetBodyCursorPos(ByVal pos As Long)
SetPositionInternal "", FINDMODE_BYCLASS, pos
End Sub


''' summary
''' Sets the cursor position of a text box or the body field. Called
internally by the two
''' public methods SetBodyCursorPos and SetTextBoxCursorPos.
'' /summary
Private Sub SetPositionInternal(ByVal text As String, ByVal findMode As
Long, ByVal pos As Long)

' Get the foreground window which should be appointmentitem
Dim hwnd As Long
hwnd = GetForegroundWindow()

' Make sure it's the appointment window
Dim hwnd2 As Long
hwnd2 = FindWindowEx(0, 0, CLASS_WINDOW, vbNullString)

If hwnd = hwnd2 Then

' Store the text that they're searching for in a private variable
expectedText = text
' Likewise store the find mode. Would have passed this to
enumchildwindows
' but since i'm storing expectedText, I'll do this too. I hate VB
currentFindMode = findMode

' Find the rich edit box on the page
EnumChildWindows hwnd, AddressOf EnumWindowProc, 0

If hwndRichEdit 0 Then
SetFocusAPI hwndRichEdit
SendMessage hwndRichEdit, EM_SETSEL, pos, pos
End If

End If

End Sub

''' summary
''' Callback function invoked by Windows for every child window
enumerated.
''' /summary
Private Function EnumWindowProc(ByVal hwnd As Long, ByVal lParam As Long)
As Boolean

Dim returnValue As Boolean
returnValue = True

Dim className As String
Dim length As Long

className = Space(100)
length = GetClassName(hwnd, className, Len(className) - 1)
If length 0 Then

' FINDMODE_BYTEXT means they are looking for a single-line textbox
that
' has the specified text. Because there are multiple single-line
text box class
' instances on the form, we need the expected text to match it to
get the right hwnd
If currentFindMode = FINDMODE_BYTEXT Then
If Left(className, length) = CLASS_SUBJECT And
GetWindowText(hwnd) = DEFAULT_SUBJECT Then
hwndRichEdit = hwnd
returnValue = False
End If
' FINDMODE_BYCLASS means they are looking for the body control.
Since there's
' only one instance of that class on the form we don't care about
the text
ElseIf currentFindMode = FINDMODE_BYCLASS Then
If Left(className, length) = CLASS_BODY Then
hwndRichEdit = hwnd
returnValue = False
End If
End If

End If

EnumWindowProc = returnValue

End Function

''' summary
''' Helper function to get the window text of the HWND in one call.
''' /summary
Private Function GetWindowText(ByVal hwnd As Long) As String

Dim buff As String
buff = Space(GetWindowTextLength(hwnd) + 1)

GetWindowTextAPI hwnd, buff, Len(buff)
GetWindowText = Left(buff, Len(buff) - 1)

End Function


--
Josh Einstein
Einstein Technologies
Microsoft Tablet PC MVP
Tablet Enhancements for Outlook 2.0 - Try it free for 14 days
www.tabletoutlook.com




  #6  
Old February 2nd 06, 09:02 AM posted to microsoft.public.outlook.program_vba
dim4x4
external usenet poster
 
Posts: 17
Default Creating new appointment & setting its properties

Wow! =) Thank you guys!

It'll take me some time just to copy-paste it in the right places in my
macro

 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Time & Date drop downs disappear when creating appointment Rich B Outlook - Calandaring 8 June 30th 10 09:21 PM
Mass MAILING distribution lists - setting up to target & flag Ansheee Outlook - Using Contacts 2 March 8th 06 12:25 AM
Setting up a special reoccuring appointment Sue Outlook - Calandaring 0 February 1st 06 10:59 PM
Creating new appointment & setting its properties dim4x4 Outlook - Using Contacts 2 February 1st 06 06:10 PM
Creating Custom Forms...Display, Headers & Printing macus Outlook - Using Forms 1 January 25th 06 02:01 PM


All times are GMT +1. The time now is 03:53 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.