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

Visual Basic

 
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 
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 
how do you get your data to the grid? is it via a dataset or datatable?

if datatable then

this bit goes in the event that loads your grid
dim myDataView as new dataview(myDataTable)

Datagridview1.datasource = myDataview


if Dataset then

dim myDataview as new dataview(myDataset.tables(0))
Datagridview1.datasource = myDataview


but the filtering is the same how ever


this bit goes in what you use to fire the filtering, i prefer to use a button to allow filetering

myDataView.Filter = "[Name] = '" & yourTextBox.text & "'"


if you need more help i would need to see your vb.net code as that is where its done and not at the sql statement.

Simon
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 
AnswerRe: How to display access records in Visual Basic 2008 form? Pin
Dave Kreskowiak27-Apr-10 2:39
mveDave Kreskowiak27-Apr-10 2:39 
QuestionHow to avoid a group box using mixed with other group boxes while overlapping in VB 6 Pin
Razanust26-Apr-10 15:27
Razanust26-Apr-10 15: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.