Forum: VB.NET Dec 8th, 2008 |
| Replies: 7 Views: 1,605 Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
Try
oConnOleDb = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data... |
Forum: VB.NET Dec 6th, 2008 |
| Replies: 7 Views: 1,605 try this
Dim con as new OledbConnection
con = new OledbConnection (constring)
con.open()
Dim cmd as new OledbCommand
cmd = new OledbCommand("Delete Query",con)
cmd.ExecuteNonQuery() |
Forum: VB.NET Dec 6th, 2008 |
| Replies: 7 Views: 1,605 |
Forum: VB.NET Dec 1st, 2008 |
| Replies: 7 Views: 1,605 Dim con as new OledbConnection
con = new OledbConnection (constring)
con.open()
Dim cmd as new OledbCommand
cmd = new OledbCommand("Delete Query")
cmd.ExecuteNonQuery()
cmd.Dispose()... |
Forum: VB.NET Nov 17th, 2008 |
| Replies: 2 Views: 3,595 Hi,
Private Sub frmDesigner_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles Me.KeyPress
If Asc(e.KeyChar) = Keys.Enter Then
... |
Forum: VB.NET Oct 21st, 2008 |
| Replies: 9 Views: 1,727 CrystalReportViewer1.Visible = false; |
Forum: VB.NET Oct 21st, 2008 |
| Replies: 9 Views: 1,727 Private Sub CloseToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CloseToolStripMenuItem.Click
CrystalReportViewer1.ReportSource = Nothing
... |
Forum: VB.NET Oct 21st, 2008 |
| Replies: 9 Views: 1,727 Hi,
Take one button and on that Click write this code |
Forum: VB.NET Oct 20th, 2008 |
| Replies: 9 Views: 1,727 Hi,
CrystalReportViewer1.ReportSource = Nothing
If ur problem solved ,pls marked Solved |