Forum: VB.NET Mar 23rd, 2009 |
| Replies: 1 Views: 1,038 How to prevent multiple instances running when Application.Restart() is given in vb.net() form..
Thanks in advance... |
Forum: VB.NET Mar 17th, 2009 |
| Replies: 3 Views: 2,517 dim mydate as string
mydate =Format(Now,"yyyy-MM-dd") |
Forum: VB.NET Mar 5th, 2009 |
| Replies: 3 Views: 1,636 You can mention in the target directory of the setup folder... |
Forum: VB.NET Mar 5th, 2009 |
| Replies: 3 Views: 655 Write the ftp client as a class...
After that u can create object to that ftp client...
By creating objects according to ur need u can do it parallely .... |
Forum: VB.NET Mar 4th, 2009 |
| Replies: 5 Views: 1,074 Hi millanskie....
since you had got the solution mark the thread as solved....
Thanks :) |
Forum: VB.NET Mar 4th, 2009 |
| Replies: 5 Views: 1,074 U can also visit this link....
http://www.xtremevbtalk.com/showthread.php?t=117616 |
Forum: VB.NET Mar 4th, 2009 |
| Replies: 5 Views: 1,074 DirectoryInfo di = new DirectoryInfo(System.Environment.G etFolderPath(Environment.SpecialFo lder.Programs)) |
Forum: VB.NET Mar 4th, 2009 |
| Replies: 7 Views: 36,465 Use the datasource property of the datagridview to bind the database with the datagridview....
You can change the column length by
datagridview.columns(0).width = length
eg.
... |
Forum: VB.NET Mar 4th, 2009 |
| Replies: 7 Views: 36,465 you can read by using the datagridview.currentrow.cells[0] ,
datagridview.currentrow.cells[1].value , datagridview.currentrow.cells[2] .value ....
like wise u can read the values of all the... |
Forum: VB.NET Mar 3rd, 2009 |
| Replies: 4 Views: 964 Thanks.....
I don't need to focus the combobox not in the load... I need to do it after doing some process in thread...
After that a message box appears at the end of the thread... After... |
Forum: VB.NET Mar 2nd, 2009 |
| Replies: 4 Views: 964 yea I tried combobox.focus But it doesnt work for me...
Is there any other way to bring the focus back to combobox .. |
Forum: VB.NET Feb 28th, 2009 |
| Replies: 10 Views: 922 You need to store the personalinformation.id in salarydetails table. after that you need to link the personalinformation.id ane the personalinformation.id stored in salarydetails table. |
Forum: VB.NET Feb 28th, 2009 |
| Replies: 4 Views: 964 I am setting focus to combobox as combobox.select() in a thread by using the delegate. But only after changing the ALT+TAB to another window the combobox is getting focused.
How to solve this... |