No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
'''''*****ListView(VB 6) Selected or checked Data Entry & Display Solutions full code*****'''' Option Explicit Public CN As ADODB.Connection ''General Declaration in Modules part'' Public RS As ADODB.Recordset ''General Declaration in Modules part'' Public Sub DBConn() ''Sub Procedure for Database in Modules part''' Set CN = New ADODB.Connection With CN If … | |
**How to Table Create in SQL Server 2000 Edition by OS: Windows 7** ============================================================ (1) Run Enterprise Manager as administrator preveliage. (2) Navigate (select) to a DataBase that you are working on. (3) Right click on any table in right side that already created in the system by default (Not … | |
Re: ~~~ vb Private Sub cmdListView_CheckedRowDEL_Click() '''''''Deleting Listview Checked Row Data using delete button''''' '''''''Deleting Listview Checked Row Data using Connection Object like CN ''''''''''' Dim x As Integer On Error GoTo Rollback_Err '''''''''''''''' CN.BeginTrans For x = ListView2.ListItems.Count To 1 Step -1 If ListView2.ListItems(x).Checked = True Then CN.Execute "DELETE from … |
The End.