Click here to Skip to main content
15,900,973 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: how can I read 4 hex characters from a textbox and put them in a uint? Pin
Dave Kreskowiak26-Oct-07 6:44
mveDave Kreskowiak26-Oct-07 6:44 
QuestionNew To VB Pin
FreakNikon26-Oct-07 4:20
FreakNikon26-Oct-07 4:20 
AnswerRe: New To VB Pin
AliAmjad26-Oct-07 5:20
AliAmjad26-Oct-07 5:20 
GeneralRe: New To VB Pin
FreakNikon29-Oct-07 12:42
FreakNikon29-Oct-07 12:42 
QuestionPassing a Javascript variable to a VB variable Pin
gates0926-Oct-07 3:50
gates0926-Oct-07 3:50 
AnswerRe: Passing a Javascript variable to a VB variable Pin
Dave Kreskowiak26-Oct-07 6:15
mveDave Kreskowiak26-Oct-07 6:15 
AnswerRe: Passing a Javascript variable to a VB variable Pin
gates0926-Oct-07 6:19
gates0926-Oct-07 6:19 
QuestionUsing LIKE keyword to search through a datagrid Pin
imonfiredammit26-Oct-07 3:49
imonfiredammit26-Oct-07 3:49 
I have a question... I have a datagrid populated with a large list of information. I have a text box above the datagrid and i want it to be possible for the user to click inside the textbox and type a letter and the list jumps to the row on the datagrid beginning with that letter. As the user continues typing in letters it brings matches up to the item on the list that most closly matches what is being typed.

The way I have it now is that the user can type in a word and it finds that row in the datagrid. I want it to match up to the letter. any clues?

Confused | :confused:

This code is what i have now...it finds the item by number or acronym typed in the text box but you have to type in the whole number or acronym...not just one letter.

Private Sub txtSearch_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtSearch.TextChanged<br />
Dim intItemFound As Integer<br />
This will search the programlist for whatever the user is inputting in the textbox<br />
If Me.rbAcronym.Checked = True Then<br />
  intItemFound = Me.m_bndProgramList.Find("REVISION_ACRONYM", txtSearch.Text)<br />
  Me.m_bndProgramList.Position = intItemFound<br />
ElseIf Me.rbNumber.Checked = True Then<br />
  intItemFound = Me.m_bndProgramList.Find("BASE_PROGRAM_NUMBER", txtSearch.Text)<br />
  Me.m_bndProgramList.Position = intItemFound<br />
End If 



Erica

AnswerRe: Using LIKE keyword to search through a datagrid Pin
Dave Kreskowiak26-Oct-07 6:12
mveDave Kreskowiak26-Oct-07 6:12 
GeneralRe: Using LIKE keyword to search through a datagrid Pin
imonfiredammit26-Oct-07 6:50
imonfiredammit26-Oct-07 6:50 
QuestionHow do I lock two Windows together Pin
G.W.E.26-Oct-07 3:36
G.W.E.26-Oct-07 3:36 
AnswerRe: How do I lock two Windows together Pin
Dave Kreskowiak26-Oct-07 5:51
mveDave Kreskowiak26-Oct-07 5:51 
GeneralRe: How do I lock two Windows together Pin
G.W.E.26-Oct-07 11:22
G.W.E.26-Oct-07 11:22 
GeneralRe: How do I lock two Windows together Pin
Ray Cassick26-Oct-07 20:08
Ray Cassick26-Oct-07 20:08 
QuestionHow to genearte a Gant-Chart frorm VB.Net in MS Visio Pin
RobertSoelner26-Oct-07 3:16
RobertSoelner26-Oct-07 3:16 
AnswerRe: How to genearte a Gant-Chart frorm VB.Net in MS Visio Pin
Paul Conrad27-Oct-07 13:08
professionalPaul Conrad27-Oct-07 13:08 
QuestionDyanamic array declarations Pin
danasegaranea26-Oct-07 2:37
danasegaranea26-Oct-07 2:37 
AnswerRe: Dyanamic array declarations Pin
kubben26-Oct-07 3:14
kubben26-Oct-07 3:14 
GeneralRe: Dyanamic array declarations Pin
danasegaranea26-Oct-07 3:18
danasegaranea26-Oct-07 3:18 
GeneralRe: Dyanamic array declarations Pin
kubben26-Oct-07 3:31
kubben26-Oct-07 3:31 
AnswerRe: Dyanamic array declarations Pin
Dave Kreskowiak26-Oct-07 5:45
mveDave Kreskowiak26-Oct-07 5:45 
GeneralRe: Dyanamic array declarations Pin
danasegaranea26-Oct-07 18:28
danasegaranea26-Oct-07 18:28 
Questioncrystal reports deployment [modified] [SOLVED] Pin
Tom Deketelaere26-Oct-07 1:43
professionalTom Deketelaere26-Oct-07 1:43 
QuestionAbt displaying images placed in one web page randomly display each at atime Pin
sivaram praveen26-Oct-07 1:28
sivaram praveen26-Oct-07 1:28 
AnswerRe: Abt displaying images placed in one web page randomly display each at atime Pin
Dave Kreskowiak26-Oct-07 5:38
mveDave Kreskowiak26-Oct-07 5:38 

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.