Click here to Skip to main content
15,890,579 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Keep Mouse Inside Window? Pin
Ian Shlasko21-Sep-11 7:51
Ian Shlasko21-Sep-11 7:51 
AnswerRe: Keep Mouse Inside Window? Pin
Dave Kreskowiak21-Sep-11 3:24
mveDave Kreskowiak21-Sep-11 3:24 
GeneralRe: Keep Mouse Inside Window? Pin
Bert Mitton22-Sep-11 3:17
professionalBert Mitton22-Sep-11 3:17 
Questionvb Pin
magesr20-Sep-11 7:11
magesr20-Sep-11 7:11 
AnswerRe: vb Pin
Luc Pattyn20-Sep-11 7:41
sitebuilderLuc Pattyn20-Sep-11 7:41 
AnswerRe: vb Pin
Dalek Dave25-Sep-11 21:50
professionalDalek Dave25-Sep-11 21:50 
QuestionFilter between two dates Pin
Lek Plepi20-Sep-11 1:37
Lek Plepi20-Sep-11 1:37 
AnswerRe: Filter between two dates Pin
Wayne Gaylard20-Sep-11 2:38
professionalWayne Gaylard20-Sep-11 2:38 
You need to have a WHERE clause in your SQL statement that filters between the dates, something like this:-

SQL
WHERE datefield > ?StartDate AND datefield < ?EndDate


Then you add the parameters to your command object like this:-

VB
cmd.Parameters.AddWithValue("?StartDate", yourStartDate)
cmd.Parameters.AddWithValue("?EndDate", yourEndDate)


Hope this helps
When I was a coder, we worked on algorithms. Today, we memorize APIs for countless libraries — those libraries have the algorithms - Eric Allman

GeneralRe: Filter between two dates Pin
Lek Plepi20-Sep-11 3:31
Lek Plepi20-Sep-11 3:31 
GeneralRe: Filter between two dates Pin
Wayne Gaylard20-Sep-11 3:45
professionalWayne Gaylard20-Sep-11 3:45 
AnswerRe: Filter between two dates Pin
DaveAuld20-Sep-11 3:59
professionalDaveAuld20-Sep-11 3:59 
GeneralRe: Filter between two dates Pin
Lek Plepi20-Sep-11 4:12
Lek Plepi20-Sep-11 4:12 
AnswerRe: Filter between two dates Pin
Eddy Vluggen20-Sep-11 6:28
professionalEddy Vluggen20-Sep-11 6:28 
GeneralRe: Filter between two dates Pin
Lek Plepi20-Sep-11 20:58
Lek Plepi20-Sep-11 20:58 
AnswerRe: Filter between two dates Pin
Luc Pattyn20-Sep-11 4:57
sitebuilderLuc Pattyn20-Sep-11 4:57 
GeneralRe: Filter between two dates Pin
DaveAuld20-Sep-11 5:16
professionalDaveAuld20-Sep-11 5:16 
GeneralRe: Filter between two dates Pin
Lek Plepi20-Sep-11 21:03
Lek Plepi20-Sep-11 21:03 
GeneralRe: Filter between two dates Pin
DaveAuld20-Sep-11 21:23
professionalDaveAuld20-Sep-11 21:23 
GeneralRe: Filter between two dates Pin
Lek Plepi21-Sep-11 0:06
Lek Plepi21-Sep-11 0:06 
GeneralRe: Filter between two dates Pin
DaveAuld21-Sep-11 0:27
professionalDaveAuld21-Sep-11 0:27 
GeneralRe: Filter between two dates Pin
Lek Plepi21-Sep-11 0:30
Lek Plepi21-Sep-11 0:30 
GeneralRe: Filter between two dates Pin
DaveAuld21-Sep-11 0:37
professionalDaveAuld21-Sep-11 0:37 
GeneralRe: Filter between two dates Pin
Lek Plepi21-Sep-11 0:38
Lek Plepi21-Sep-11 0:38 
GeneralRe: Filter between two dates Pin
DaveAuld21-Sep-11 0:42
professionalDaveAuld21-Sep-11 0:42 
QuestionWhich event to connect to? Pin
Sonhospa19-Sep-11 21:21
Sonhospa19-Sep-11 21:21 

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.