TextBoxs Basic Commands!
Textboxs the greates Active X/Control made lol people always use textboxs for many things for example things like "Chat Program" or even Yahoo Programs(add-ons) or even Ip sniffer etc...
AI
AI Summary: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.
Source Code
'here is some basic functions with Textbox's and what they can do
text1.text = "Any text" ' this means its setting the text1.text to Any Text also there is other ways with this.
text1.text = label1.caption 'setting text1.text to label1's caption.
text1.text = form1.caption 'setting text1.text to form1's caption
text1.text = text2.text 'setting text1.text to text2.text
replace(" ","A",text1.text) 'replacing space to A lol
text1.seltext = text2.text ' setting text1.seltext to text2.text just like chat programs use so then u can keep adding more and more text
text1.text = "" 'clearing text1.text
text1.text = UCase(text1.text) 'setting text1.text to Upper Case text
text1.text = LCase(text1.text) 'setting text1.text to Lower Case
text1.locked = true 'Locking text1 textbox
text1.locked = false 'Unlocking Text1 textbox
text1.visible=false'text1 is hidden
text1.visible=true 'text1 is showed
Original Comments (3)
Recovered from Wayback Machine