hi, please help me on how to use the textfield_change can you give me an example on this so that i will know how to use this..thanks in advance...hoping for your positive responds....
jemz -1 Master Poster
Recommended Answers
Jump to Posthi, please help me on how to use the textfield_change can you give me an example on this so that i will know how to use this..thanks in advance...hoping for your positive responds....
what you mean by textfield_change? :confused: is it changing event of a text control? or other? please …
Jump to PostThe example u needed can be depicted as follows:
Private sub text1_change()
dim blnitemfound as boolean
dim intindex as integer
do while blnitemfound=false or intindex<list1.listcount
if ucase(text1.text)=ucase(left(list1.listindex),len(text1.text))
list1.listindex=intindex
blnitemfound=true
end if
intindex=intindex+1
loop
end sub
This is a prog in which u have a text box and a listbox..when u …
Jump to Posttry this
Private Sub Text1_Change() Text2.Text = Text1.Text End Sub
All 9 Replies
abu taher 34 Practically a Posting Shark
vb5prgrmr 143 Posting Virtuoso
Vineeth K 10 Posting Whiz in Training
kavya_nayak7 0 Newbie Poster
jemz -1 Master Poster
jemz -1 Master Poster
Vineeth K 10 Posting Whiz in Training
student02 0 Light Poster
abu taher 34 Practically a Posting Shark
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.