Results 1 to 4 of 4

Thread: [RESOLVED] 3 problems

Threaded View

  1. #1

    Thread Starter
    Member
    Join Date
    Feb 2008
    Posts
    57

    Resolved [RESOLVED] 3 problems

    Hello guys, I am trying to built a mysql application.
    1. I have a checklistbox, with 25 items. Most of them reads it ok. When it reaches at "Birth Place", MySQL reads only "Birth". The string is ok, because before I send it to Mysql, I print it in textbox. Why is this happenning?
    The items are in Greek, and mysql collumns.
    Code:
    Dim SQL As String
    SQL = "SELECT " & ShowCol & " FROM ΠΡΟΣΩΠΙΚΟ WHERE AGE = '25'"
    .....
    
    
    Sub ChooseCols()
            Dim Num, i, j As Integer
                For i = 0 To frmSearch.CheckedListBox1.Items.Count - 1
                For j = 0 To frmSearch.CheckedListBox1.CheckedItems.Count - 1
                    If j = 0 Then
                        ShowCol = frmSearch.CheckedListBox1.CheckedItems.Item(j)
                    Else
                        ShowCol = ShowCol & ", " & frmSearch.CheckedListBox1.CheckedItems.Item(j)
                    End If
                Next
            Next
            frmSearch.TextBox1.Text = ShowCol
        End Sub
    2. My checklistbox needs 2 clicks to check an item. I want to do it with one click. I checked properties, but there isn't anything similar.

    3. I want when I debug the programm, my default language to be greek. Is this possible?
    Last edited by manin; Jan 27th, 2009 at 07:11 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width