Click here to Skip to main content
16,015,072 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Capture keystroke Pin
Christian Graus14-Jun-05 17:04
protectorChristian Graus14-Jun-05 17:04 
GeneralExecution time of code. Pin
Alsvha13-Jun-05 20:36
Alsvha13-Jun-05 20:36 
GeneralRe: Execution time of code. Pin
Dave Kreskowiak14-Jun-05 1:50
mveDave Kreskowiak14-Jun-05 1:50 
GeneralNeed A code run with active directory Pin
y_mmohd13-Jun-05 18:42
y_mmohd13-Jun-05 18:42 
GeneralRe: Need A code run with active directory Pin
Dave Kreskowiak14-Jun-05 4:29
mveDave Kreskowiak14-Jun-05 4:29 
GeneralRe: Need A code run with active directory Pin
Anonymous14-Jun-05 4:52
Anonymous14-Jun-05 4:52 
GeneralRe: Need A code run with active directory Pin
Dave Kreskowiak14-Jun-05 2:31
mveDave Kreskowiak14-Jun-05 2:31 
GeneralOutlook Calendar Information Pin
KaptinKrunch13-Jun-05 14:22
KaptinKrunch13-Jun-05 14:22 
I have seen a few posts about getting outlook's calendar information aka appointment items. Here is a quick way of getting the information

Imports Microsoft.Office.Core
Imports Outlook

Function Test()
Dim myOlApp = CreateObject("Outlook.Application")
Dim myNameSpace = myOlApp.GetNameSpace("MAPI")
Dim myCalendar = myNameSpace.GetDefaultFolder(OlDefaultFolders.olFolderCalendar)
Dim myItems = myCalendar.Items
Dim apptItem As AppointmentItem

For Each apptItem In myItems
If apptItem.Start >= Date.Today Then
Debug.WriteLine(apptItem.Subject & " : " & apptItem.Start)
End If
Next

End Function

Questionhow to compare the text of two html pages Pin
Mohsen Saad13-Jun-05 14:22
Mohsen Saad13-Jun-05 14:22 
AnswerRe: how to compare the text of two html pages Pin
Christian Graus13-Jun-05 14:25
protectorChristian Graus13-Jun-05 14:25 
GeneralRe: how to compare the text of two html pages Pin
Mohsen Saad14-Jun-05 8:15
Mohsen Saad14-Jun-05 8:15 
GeneralRe: how to compare the text of two html pages Pin
Christian Graus14-Jun-05 13:49
protectorChristian Graus14-Jun-05 13:49 
GeneralRe: how to compare the text of two html pages Pin
Mohsen Saad15-Jun-05 5:32
Mohsen Saad15-Jun-05 5:32 
GeneralRe: how to compare the text of two html pages Pin
Christian Graus15-Jun-05 13:09
protectorChristian Graus15-Jun-05 13:09 
GeneralMap Area to onclick event Pin
asalyon13-Jun-05 13:29
asalyon13-Jun-05 13:29 
GeneralRe: Map Area to onclick event Pin
Christian Graus13-Jun-05 14:06
protectorChristian Graus13-Jun-05 14:06 
GeneralRe: Map Area to onclick event Pin
asalyon13-Jun-05 15:21
asalyon13-Jun-05 15:21 
GeneralRe: Map Area to onclick event Pin
Christian Graus13-Jun-05 15:33
protectorChristian Graus13-Jun-05 15:33 
GeneralRe: Map Area to onclick event Pin
asalyon13-Jun-05 16:23
asalyon13-Jun-05 16:23 
GeneralRe: Map Area to onclick event Pin
Christian Graus13-Jun-05 16:26
protectorChristian Graus13-Jun-05 16:26 
GeneralPassing ARGS to C++ DLL Pin
john john mackey13-Jun-05 12:15
john john mackey13-Jun-05 12:15 
GeneralRe: Passing ARGS to C++ DLL Pin
john john mackey13-Jun-05 13:53
john john mackey13-Jun-05 13:53 
GeneralDesign Help for Fast DB Access Pin
Rob57013-Jun-05 6:43
Rob57013-Jun-05 6:43 
GeneralRe: Design Help for Fast DB Access Pin
oykica13-Jun-05 19:12
oykica13-Jun-05 19:12 
GeneralHard disk free space Pin
johnjsm13-Jun-05 5:36
johnjsm13-Jun-05 5:36 

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.