Click here to Skip to main content
15,884,176 members

Comments by hackerspk (Top 14 by date)

hackerspk 30-May-12 9:36am View    
After working with this example i have come to know that it is not supported for large text. above then 200 lines. so if there is any other method to do so?
hackerspk 28-May-12 21:46pm View    
iam unable to get code for underlining the wrong words. This solution is written in VS 11 and i have VB 2008 express. First of all VS 2008 unable to open this solution. 2nd it hard to me to find the code which is marking the wrong words. and sorry for my bad english.
hackerspk 14-May-12 13:48pm View    
its meter i tried netspell library it dose not match Urdu words. and Urdu Spell Checker Utility is the only working spell checker for Urdu, but it is not well programed and also its not compatible with .net.
hackerspk 11-May-12 7:43am View    
Thanks for your answer i have a little problem more.


For Each control As Control In TabControl1.SelectedTab.Controls
If TypeOf control Is RichTextBox Then
'' control.copy() '' This line is not working while the control is richtextbox
control.Focus()
End If
Next

if i add this one more line then it works
Dim rtb As RichTextBox = control
rtb.copy()
hackerspk 11-May-12 6:52am View    
winform