Advertisement

06.18.2008 at 11:10AM PDT, ID: 23496282
[x]
Attachment Details

Count records using a wildcard...

Asked by Boon01 in Microsoft Visual Basic.Net, VB Database Programming, SQL Query Syntax

Tags: VB.Net 2005

I am trying to setup a Count routine that will use a wildcard to find all records in a certain field within a certain table that starts with a specified number (comes from a text box) but I don't think the wildcard is working because no matter what I enter it doesn't find a Count (always 0). Any idea what I might be doing wrong now?

thanks in advance for any help that you can give me with this.

Also tried...
cmd.Parameters.AddWithValue("@CurrDepart", OleDbType.VarChar).Value = Me.txtCurGL.Text.ToString & "%"Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
'Check to make sure the Current Department already exisits
            Dim Count2 As Integer = 0
            Using Connection As New OleDbConnection _
             ("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Comet 631 Databases\Converted to 2003\C022008.mdb")
                Dim cmd As OleDbCommand = New OleDbCommand _
                ("Select Count(ActAcct) as ExistingRecords From [SHACT] where (ActAcct)= @CurrDepart", Connection)
                cmd.Parameters.AddWithValue("@CurrDepart", Me.txtCurGL.Text.ToString & "%")
                 Connection.Open()
                Count2 = CInt(cmd.ExecuteScalar)
                ("@CurrDepart",me.txtCurGL.text.Tostring & "%")end withconnection.open()
            End Using
            'if the Current Department doesn't exisit then throw message and exit sub
            If Count2 <= 0 Then
                MessageBox.Show("The GL Department " & Me.txtCurGL.Text.ToString & " does not exisit.", _
                "Copy Department", MessageBoxButtons.OK)
                Me.txtCurGL.Focus()
                Me.txtCurGL.SelectAll()
                Return
            End If
 
Loading Advertisement...
 
[+][-]06.18.2008 at 11:21AM PDT, ID: 21815531

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Microsoft Visual Basic.Net, VB Database Programming, SQL Query Syntax
Tags: VB.Net 2005
Sign Up Now!
Solution Provided By: nexusnation
Participating Experts: 1
Solution Grade: A
 
 
[+][-]06.18.2008 at 11:39AM PDT, ID: 21815716

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06.18.2008 at 11:45AM PDT, ID: 21815779

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628