Search results for query: *

  1. M

    Overload resolution failed

    1 more question, i did this in my code why did i get error " Operator "&" is not defined for string "INSERT INTO student(stdname,gen" and type 'TextBox' "?
  2. M

    Overload resolution failed

    i see..thnx!! ^^
  3. M

    Overload resolution failed

    Hello below is my code, i got this error Error "Overload resolution failed because no accessible 'New' can be called without a narrowing conversion:'Public SubNew(selectCommandText As String, selectConnection As System.Data.OleDb.OleDbConnection)': Argument matching parameter 'selectConnection'...
  4. M

    selected row into array

    I tried my code and the data is deleted in the datagrid and inside database as well. it just a simple code though. why u need to delete it locally and then only update changes to database? it uses a lot of memory if i have a large code. what i want is to directly delete from database. not...
  5. M

    selected row into array

    Hello guys, i have a code that would delete a row from datagridview and mysql. Now what i wanted to do is to delete multiple row instead of one. possible? command.CommandText = "delete from " & cmbTable.Text & " where ID = " & Val(DataGridView1.CurrentRow.Cells(0).Value.ToString)...
  6. M

    combobox problem

    Thanks! ^^
  7. M

    combobox problem

    hello guys below is my code. when i select / fetch data from mysql database at the first time, it can run, the second time i run without changing anything, i get this error, "Object reference not set to an instance of an object." at line that i marked below (combo box). The combo box load list...
Back
Top