Thread: Spell checker
View Single Post
  #13 (permalink)  
Old 03-05-2009, 05:30 PM
moster67 moster67 is offline
Basic4ppc Expert
 
Join Date: May 2008
Location: Italy
Posts: 599
Awards Showcase
Beta Tester 
Total Awards: 1
Default

I already resolved it. I did as you suggested but the trick was to pass on the TextBox with double apostrophes around the name of the textbox:

Code:
YourLibrary.DoSomthingWithTextBox("TextBox1")
From my test-application in VB.NET it works without the double apostrophes:

Code:
YourLibrary.DoSomthingWithTextBox(TextBox1)
Thank you Erel
Reply With Quote