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

Visual Basic

 
AnswerRe: web browser in vb.net. Pin
Luc Pattyn28-Apr-10 7:16
sitebuilderLuc Pattyn28-Apr-10 7:16 
AnswerRe: web browser in vb.net. Pin
The Man from U.N.C.L.E.28-Apr-10 21:37
The Man from U.N.C.L.E.28-Apr-10 21:37 
QuestionVB.NET 2005 - Walking the Document Outline to iterate through controls Pin
vvincent28-Apr-10 5:26
vvincent28-Apr-10 5:26 
AnswerRe: VB.NET 2005 - Walking the Document Outline to iterate through controls Pin
Dave Kreskowiak28-Apr-10 8:19
mveDave Kreskowiak28-Apr-10 8:19 
GeneralRe: VB.NET 2005 - Walking the Document Outline to iterate through controls Pin
vvincent28-Apr-10 11:47
vvincent28-Apr-10 11:47 
GeneralRe: VB.NET 2005 - Walking the Document Outline to iterate through controls Pin
Dave Kreskowiak28-Apr-10 15:32
mveDave Kreskowiak28-Apr-10 15:32 
QuestionQueries for Datagrid View in VB 2008 Pin
Razanust28-Apr-10 0:52
Razanust28-Apr-10 0:52 
AnswerRe: Queries for Datagrid View in VB 2008 Pin
Simon_Whale28-Apr-10 0:59
Simon_Whale28-Apr-10 0:59 
Yes you want to have a look at the dataview class.

assuming you have data loaded into a datatable, this example i use from the changing of the date in a datetimepicker

dim dv as dataview
dv = new dataview(dt)

 Private Sub DateTimePicker1_ValueChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles DateTimePicker1.ValueChanged
        ' MessageBox.Show(DateTimePicker1.Text)
        dv.RowFilter = "duedate = '" & DateTimePicker1.Text & "'"
    End Sub

Thanks for taking the time, now go away and grow up and return in a newer, more polite and less shouty and ignorant form. - Dalek Dave

GeneralKindly solve it out ! Queries for Datagrid View in VB 2008 Pin
Razanust28-Apr-10 4:04
Razanust28-Apr-10 4:04 
GeneralRe: Kindly solve it out ! Queries for Datagrid View in VB 2008 Pin
Simon_Whale28-Apr-10 4:13
Simon_Whale28-Apr-10 4:13 
QuestionVB Script Help For Microsoft Excel Pin
Ali Rashid27-Apr-10 21:45
Ali Rashid27-Apr-10 21:45 
AnswerRe: VB Script Help For Microsoft Excel Pin
Dalek Dave27-Apr-10 23:50
professionalDalek Dave27-Apr-10 23:50 
GeneralRe: VB Script Help For Microsoft Excel Pin
Ali Rashid28-Apr-10 1:38
Ali Rashid28-Apr-10 1:38 
AnswerRe: VB Script Help For Microsoft Excel Pin
Johan Hakkesteegt28-Apr-10 0:02
Johan Hakkesteegt28-Apr-10 0:02 
GeneralRe: VB Script Help For Microsoft Excel Pin
Ali Rashid28-Apr-10 4:06
Ali Rashid28-Apr-10 4:06 
GeneralRe: VB Script Help For Microsoft Excel Pin
Johan Hakkesteegt3-May-10 22:23
Johan Hakkesteegt3-May-10 22:23 
QuestionWhich is the best way to set default value for properties Pin
andiyuniar27-Apr-10 17:40
andiyuniar27-Apr-10 17:40 
AnswerRe: Which is the best way to set default value for properties Pin
Steven J Jowett27-Apr-10 21:13
Steven J Jowett27-Apr-10 21:13 
AnswerRe: Which is the best way to set default value for properties Pin
tosch27-Apr-10 21:25
tosch27-Apr-10 21:25 
GeneralRe: Which is the best way to set default value for properties Pin
andiyuniar27-Apr-10 22:03
andiyuniar27-Apr-10 22:03 
Answer[Solved] Which is the best way to set default value for properties Pin
andiyuniar27-Apr-10 22:47
andiyuniar27-Apr-10 22:47 
AnswerRe: Which is the best way to set default value for properties Pin
DaveAuld28-Apr-10 3:24
professionalDaveAuld28-Apr-10 3:24 
QuestionMultithread Error (Input string was not in the correct format)? [modified] Pin
Dominick Marciano27-Apr-10 13:49
professionalDominick Marciano27-Apr-10 13:49 
AnswerRe: Multithread Error (Input string was not in the correct format)? Pin
Luc Pattyn27-Apr-10 14:18
sitebuilderLuc Pattyn27-Apr-10 14:18 
QuestionHow to display access records in Visual Basic 2008 form? Pin
Razanust27-Apr-10 2:27
Razanust27-Apr-10 2:27 

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.