Forum: Visual Basic 4 / 5 / 6 Dec 23rd, 2008 |
| Replies: 2 Views: 451 In Form1
Private Sub CustemersList_DblClick()
Form2.Comand1_Click()
End Sub
In Form2
Public Sub Command1_Click()
'Your Code Here
End Sub |
Forum: ASP.NET Nov 21st, 2008 |
| Replies: 2 Views: 663 http://msdn.microsoft.com/en-us/library/bb426882.aspx |
Forum: VB.NET Nov 21st, 2008 |
| Replies: 1 Views: 658 http://www.vbdotnetforums.com/xml/29163-how-transform-xml-file-text-file-using-visual-basic-net.html |
Forum: Visual Basic 4 / 5 / 6 Nov 20th, 2008 |
| Replies: 9 Views: 2,793 u can also use CheckedListBox control.
see the following link. I hope it will help u.
http://msdn.microsoft.com/en-us/library/2yc9d57t.aspx |
Forum: ASP.NET Nov 20th, 2008 |
| Replies: 4 Views: 929 try this :
Response.Write("<script>alert('Hello')</script>");
also see the following link
http://weblogs.asp.net/bleroy/archive/2005/12/01/432016.aspx |
Forum: ASP.NET Nov 20th, 2008 |
| Replies: 4 Views: 929 MsgBox("Your Message", MsgBoxStyle.Information, "Your Title") |
Forum: MS SQL Nov 18th, 2008 |
| Replies: 6 Views: 1,589 See the following link
http://bloggingabout.net/blogs/arjen/archive/2006/02/09/SQL-Server-Error-26.aspx |
Forum: VB.NET Nov 18th, 2008 |
| Replies: 2 Views: 878 See the following links for details :
http://www.builderau.com.au/program/windows/soa/Reading-and-writing-text-files-with-VB-NET/0,339024644,320267367,00.htm
... |
Forum: ASP.NET Jul 17th, 2008 |
| Replies: 5 Views: 7,198 You have to configure IIS to support ASP.Net for the Msgbox code to work. Is your IIS configured for ASP.Net? |
Forum: ASP.NET Jul 16th, 2008 |
| Replies: 5 Views: 7,198 You can use MsgBox -- just like in VB6. |
Forum: VB.NET Jul 2nd, 2008 |
| Replies: 4 Views: 851 I am glad to help. If your problem has been solved, please mark this as solved. |
Forum: VB.NET Jun 30th, 2008 |
| Replies: 4 Views: 851 What you can do is create a Payments table with the customer id as Primary Key, paymentdate, and paymentinfo. Then store the payment recieved according to customerid, paymentdate. This will be easier... |