Click here to Skip to main content
15,881,757 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Trig in vb Pin
ummoops3-May-07 16:27
ummoops3-May-07 16:27 
Questionexecute in context of different user Pin
TeachesOfPeaches3-May-07 11:35
TeachesOfPeaches3-May-07 11:35 
AnswerRe: execute in context of different user Pin
Dave Kreskowiak4-May-07 3:45
mveDave Kreskowiak4-May-07 3:45 
GeneralRe: execute in context of different user Pin
TeachesOfPeaches4-May-07 4:45
TeachesOfPeaches4-May-07 4:45 
QuestionBubble sort an array of Structure Pin
amatbrewer3-May-07 11:35
amatbrewer3-May-07 11:35 
AnswerRe: Bubble sort an array of Structure Pin
TwoFaced3-May-07 13:35
TwoFaced3-May-07 13:35 
QuestionChecking for overlapping timespans Pin
fp2billiards3-May-07 11:05
fp2billiards3-May-07 11:05 
AnswerRe: Checking for overlapping timespans Pin
Arun.Immanuel3-May-07 15:53
Arun.Immanuel3-May-07 15:53 
Do like this:
if s1>s2 and e1<e2 Then
  s1-e1 occurs inbetween s2-e2(So, Overlapping=e1-s1+1)
elseif s1<s2 and e1>e2 Then
  s2-e2 occurs inbetween s1-e1(So, Overlapping=e2-s2+1)
elseif s1 > s2 and s1 < e2 then
  Overlapping=e2-s1+1
elseif e1>s2 and e1<e2
  Overlapping=e1-s2+1
else
  Overlapping=0


Use appropriate classes to compare 2 dates.

Regards,
Arun Kumar.A

QuestionUsing a filter on BindingSource with BindingList Pin
Mightor3-May-07 9:44
Mightor3-May-07 9:44 
AnswerRe: Using a filter on BindingSource with BindingList Pin
Dave Kreskowiak4-May-07 3:50
mveDave Kreskowiak4-May-07 3:50 
GeneralRe: Using a filter on BindingSource with BindingList Pin
Mightor4-May-07 9:17
Mightor4-May-07 9:17 
QuestionConvert 2003 to 2005 Errors Pin
Central_IT3-May-07 9:34
Central_IT3-May-07 9:34 
AnswerRe: Convert 2003 to 2005 Errors Pin
Dave Kreskowiak3-May-07 9:42
mveDave Kreskowiak3-May-07 9:42 
GeneralRe: Convert 2003 to 2005 Errors Pin
Central_IT3-May-07 9:49
Central_IT3-May-07 9:49 
GeneralRe: Convert 2003 to 2005 Errors Pin
Central_IT3-May-07 10:02
Central_IT3-May-07 10:02 
GeneralRe: Convert 2003 to 2005 Errors Pin
Dave Kreskowiak3-May-07 13:34
mveDave Kreskowiak3-May-07 13:34 
GeneralRe: Convert 2003 to 2005 Errors Pin
Central_IT4-May-07 1:36
Central_IT4-May-07 1:36 
GeneralRe: Convert 2003 to 2005 Errors Pin
Dave Kreskowiak4-May-07 2:31
mveDave Kreskowiak4-May-07 2:31 
QuestionCreating a Help System for a VB.NET Project Pin
RichFeldman3-May-07 8:23
RichFeldman3-May-07 8:23 
AnswerRe: Creating a Help System for a VB.NET Project Pin
MatrixCoder3-May-07 11:19
MatrixCoder3-May-07 11:19 
Question[02/03] Please help graphing datasource Pin
Srigopal0073-May-07 8:19
Srigopal0073-May-07 8:19 
QuestionError While Creating Publish Pin
vurugonda3-May-07 7:53
vurugonda3-May-07 7:53 
QuestionInstalling a Windows Service and the GAC Pin
Terry Porter3-May-07 6:04
Terry Porter3-May-07 6:04 
AnswerRe: Installing a Windows Service and the GAC Pin
kubben3-May-07 6:24
kubben3-May-07 6:24 
GeneralRe: Installing a Windows Service and the GAC Pin
Terry Porter3-May-07 6:33
Terry Porter3-May-07 6:33 

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.