Click here to Skip to main content
15,915,795 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: calling camera application in .net Pin
Ahamed Azeem19-Oct-07 20:40
Ahamed Azeem19-Oct-07 20:40 
QuestionTimer problem Pin
Benny_Lava17-Oct-07 22:09
Benny_Lava17-Oct-07 22:09 
AnswerRe: Timer problem Pin
Luc Pattyn17-Oct-07 22:40
sitebuilderLuc Pattyn17-Oct-07 22:40 
QuestionError "Object reference not set to an instance of an object" Pin
Dan Suthar17-Oct-07 21:31
professionalDan Suthar17-Oct-07 21:31 
AnswerRe: Error "Object reference not set to an instance of an object" Pin
Guffa17-Oct-07 21:47
Guffa17-Oct-07 21:47 
GeneralRe: Error "Object reference not set to an instance of an object" Pin
Dan Suthar17-Oct-07 21:52
professionalDan Suthar17-Oct-07 21:52 
QuestionFilter your datagrid through text in a combobox/textbox Pin
blonkie17-Oct-07 21:27
blonkie17-Oct-07 21:27 
AnswerRe: Filter your datagrid through text in a combobox/textbox Pin
C1AllenS18-Oct-07 2:04
C1AllenS18-Oct-07 2:04 
Hello,

To achieve this, you would have to use the filter property for the binding source. You will have
to specifically put the filter condition on the field whose value you will enter in the Text box.

You can use the following code in the TextChanged event of the Combobox or the Text Box:

Private Sub ComboBox1_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ComboBox1.TextChanged<br />
<br />
        Me.TblLijstBindingSource.Filter = "<Column Name> ='" & Me.ComboBox1.Text & "'"<br />
<br />
End Sub


I believe this should help.

Regards,
Allen

Allen Smith

Software Engineer
ComponentOne LLC
www.componentone.com

GeneralRe: Filter your datagrid through text in a combobox/textbox Pin
blonkie18-Oct-07 3:04
blonkie18-Oct-07 3:04 
QuestionAccess Key Pin
brams717-Oct-07 15:37
brams717-Oct-07 15:37 
AnswerRe: Access Key Pin
Abhijit Jana17-Oct-07 20:05
professionalAbhijit Jana17-Oct-07 20:05 
Questionload assembly from appdomain? Pin
cstrader23217-Oct-07 11:41
cstrader23217-Oct-07 11:41 
QuestionInserting a new row programatically in a bound datgridview Pin
Mr Oizo17-Oct-07 11:33
Mr Oizo17-Oct-07 11:33 
AnswerRe: Inserting a new row programatically in a bound datgridview Pin
Dave Kreskowiak17-Oct-07 15:28
mveDave Kreskowiak17-Oct-07 15:28 
QuestionSending Email without using Outlook Pin
yogesh_kumar_agarwal17-Oct-07 8:22
yogesh_kumar_agarwal17-Oct-07 8:22 
AnswerRe: Sending Email without using Outlook Pin
nlarson1117-Oct-07 8:59
nlarson1117-Oct-07 8:59 
GeneralRe: Sending Email without using Outlook Pin
yogesh_kumar_agarwal17-Oct-07 10:34
yogesh_kumar_agarwal17-Oct-07 10:34 
GeneralRe: Sending Email without using Outlook Pin
svanwass18-Oct-07 9:04
svanwass18-Oct-07 9:04 
AnswerRe: Sending Email without using Outlook Pin
GuyThiebaut17-Oct-07 9:03
professionalGuyThiebaut17-Oct-07 9:03 
GeneralRe: Sending Email without using Outlook Pin
yogesh_kumar_agarwal17-Oct-07 10:35
yogesh_kumar_agarwal17-Oct-07 10:35 
GeneralRe: Sending Email without using Outlook Pin
GuyThiebaut17-Oct-07 23:03
professionalGuyThiebaut17-Oct-07 23:03 
AnswerRe: Sending Email without using Outlook Pin
Christian Graus17-Oct-07 10:56
protectorChristian Graus17-Oct-07 10:56 
QuestionCan we read return from a process without waiting its completion? Pin
ATC17-Oct-07 7:59
ATC17-Oct-07 7:59 
AnswerRe: Can we read return from a process without waiting its completion? Pin
Dave Kreskowiak17-Oct-07 15:26
mveDave Kreskowiak17-Oct-07 15:26 
GeneralRe: Can we read return from a process without waiting its completion? Pin
ATC18-Oct-07 6:05
ATC18-Oct-07 6:05 

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.