Thread: Spell checker
View Single Post
  #12 (permalink)  
Old 03-05-2009, 04:59 PM
Erel's Avatar
Erel Erel is offline
Administrator
 
Join Date: Apr 2007
Posts: 15,676
Awards Showcase
Basic4ppc Founder 
Total Awards: 1
Default

It shouldn't be too hard to pass a textbox control from Basic4ppc to an external library.
A VB .Net Sub:
Code:
Public Sub DoSomethingWithTextBox(textBox1 As TextBox)
 textBox1.Text = 
"test"
End Sub
In Basic4ppc:
Code:
YourLibrary.DoSomthingWithTextBox("TextBox1")
Reply With Quote