Forum: VB.NET Aug 14th, 2009 |
| Replies: 3 Views: 849 Ok i have a button on MDI parent form and i need to disable it when closing a child form. When writing the button name (cmdmenu) in the child form, it says that the cmdmenu is not declared please... |
Forum: VB.NET Sep 12th, 2008 |
| Replies: 12 Views: 1,668 if u just want to open MS Word u can use
system.diagnostic.process.start("winword") no need to give path..
if u want to run in other machine also it works only thing is that machine must have... |
Forum: VB.NET Sep 11th, 2008 |
| Replies: 12 Views: 1,668 Exactly what u want to do? do u want to automate msowrd? |
Forum: VB.NET Sep 11th, 2008 |
| Replies: 12 Views: 1,668 You have to add com object reference in your appliction
i.e microsoft word 9.0 object library and in namspace
iimports the word so that you can use the ms word object in ur code as you like
just... |
Forum: VB.NET Jun 3rd, 2008 |
| Replies: 3 Views: 9,025 To make text box to accept only numbers, in key press event of that textbox u can code like this
If Char.IsDigit(e.KeyChar) = False And Char.IsControl(e.KeyChar) = False Then
... |
Forum: VB.NET May 23rd, 2008 |
| Replies: 5 Views: 2,892 Do u want all Charecters of textbox in upper case? |
Forum: VB.NET May 23rd, 2008 |
| Replies: 4 Views: 4,132 Hi.
u can use masked text box for ur requirement |