Click here to Skip to main content
15,912,897 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Questionread bitmap and display it back problem Pin
shee_dee8618-Jun-08 21:34
shee_dee8618-Jun-08 21:34 
Questionsql Pin
jacko87318-Jun-08 20:59
jacko87318-Jun-08 20:59 
AnswerRe: sql Pin
Noctris18-Jun-08 22:58
Noctris18-Jun-08 22:58 
GeneralRe: sql Pin
Ashfield18-Jun-08 23:18
Ashfield18-Jun-08 23:18 
GeneralRe: sql Pin
Noctris19-Jun-08 0:01
Noctris19-Jun-08 0:01 
GeneralRe: sql Pin
jacko87319-Jun-08 9:38
jacko87319-Jun-08 9:38 
GeneralRe: sql Pin
Noctris21-Jun-08 23:42
Noctris21-Jun-08 23:42 
QuestionRegarding Outlook progrmamming using .net Pin
Ansari Mohammad Aamir18-Jun-08 19:37
Ansari Mohammad Aamir18-Jun-08 19:37 
I am sending appointment to outlook 2003 using vb.net, i am able to send appointments but the problem is that on my local machine appointment comes with reminder checkbox checked but to reciepents the reminder checkbox remain uncheck. how to get that checkbox checked.
plz suggest a solution.

below is my code:
Dim oApp As Outlook.Application = New Outlook.Application()

Dim oAppt As Outlook._AppointmentItem = oApp.CreateItem(Outlook.OlItemType.olAppointmentItem)
oAppt.MeetingStatus = Outlook.OlMeetingStatus.olMeeting

oAppt.Subject = "Call Follow Up"
oAppt.Body = "Call Report"
oAppt.Location = "Mumbai"

oAppt.Start = Convert.ToDateTime(mdate & " 3:15:00 PM")
oAppt.End = Convert.ToDateTime(mdate & " 6:30:00 PM")

oAppt.ReminderSet = True
oAppt.ReminderMinutesBeforeStart = 5
oAppt.BusyStatus = Outlook.OlBusyStatus.olTentative
oAppt.IsOnlineMeeting = False
oAppt.AllDayEvent = False

Dim oRecipts As Outlook.Recipients = oAppt.Recipients

Dim oRecipt As Outlook.Recipient
oRecipt = oRecipts.Add(email)
oRecipt.Type = Outlook.OlMeetingRecipientType.olRequired

oRecipts.ResolveAll()

oAppt.Save()
oAppt.Send()

oApp = Nothing
oAppt = Nothing
oRecipts = Nothing
oRecipt = Nothing



Thanks and Regards
Aamir
QuestionLock controls in a form Pin
Sebastian T Xavier18-Jun-08 19:01
Sebastian T Xavier18-Jun-08 19:01 
AnswerRe: Lock controls in a form Pin
Tom Deketelaere18-Jun-08 20:55
professionalTom Deketelaere18-Jun-08 20:55 
GeneralRe: Lock controls in a form Pin
Sebastian T Xavier20-Jun-08 4:24
Sebastian T Xavier20-Jun-08 4:24 
GeneralRe: Lock controls in a form Pin
Tom Deketelaere23-Jun-08 1:09
professionalTom Deketelaere23-Jun-08 1:09 
GeneralRe: Lock controls in a form Pin
Sebastian T Xavier25-Jun-08 21:35
Sebastian T Xavier25-Jun-08 21:35 
GeneralRe: Lock controls in a form Pin
Tom Deketelaere25-Jun-08 21:54
professionalTom Deketelaere25-Jun-08 21:54 
GeneralRe: Lock controls in a form Pin
Sebastian T Xavier25-Jun-08 23:04
Sebastian T Xavier25-Jun-08 23:04 
GeneralRe: Lock controls in a form Pin
Tom Deketelaere26-Jun-08 3:10
professionalTom Deketelaere26-Jun-08 3:10 
QuestionWrong datetime will get when using Date in vb6 Pin
cocoonwls18-Jun-08 15:39
cocoonwls18-Jun-08 15:39 
AnswerRe: Wrong datetime will get when using Date in vb6 Pin
nishkarsh_k18-Jun-08 17:05
nishkarsh_k18-Jun-08 17:05 
GeneralRe: Wrong datetime will get when using Date in vb6 Pin
cocoonwls18-Jun-08 18:49
cocoonwls18-Jun-08 18:49 
GeneralRe: Wrong datetime will get when using Date in vb6 Pin
nishkarsh_k18-Jun-08 22:14
nishkarsh_k18-Jun-08 22:14 
GeneralRe: Wrong datetime will get when using Date in vb6 Pin
cocoonwls22-Jun-08 16:45
cocoonwls22-Jun-08 16:45 
AnswerRe: Wrong datetime will get when using Date in vb6 Pin
Tom Deketelaere18-Jun-08 20:58
professionalTom Deketelaere18-Jun-08 20:58 
Questionimages in vb.net Pin
salam ellayan18-Jun-08 10:37
salam ellayan18-Jun-08 10:37 
AnswerRe: images in vb.net Pin
nishkarsh_k18-Jun-08 17:01
nishkarsh_k18-Jun-08 17:01 
GeneralRe: images in vb.net Pin
salam ellayan18-Jun-08 22:42
salam ellayan18-Jun-08 22:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.