Search results for query: *

  • Users: Markoleo
  • Content: Threads
  • Order by date
  1. M

    Navigation

    i have datagridview on form and button ">". dot'n using bindingnavigator and dataset. selectionmode -> fullrowselect i needing a help with thise. my english is very poor. i am sorry!
  2. M

    update bool values

    "update table set column= " in database one column is bool of type(yas/no). what for values?
  3. M

    command between

    Dim cs As String = "Provider = Microsoft.Jet.OLEDB.4.0; Data Source=c:\database.mdb;Jet OLEDB:database Password= 1" Dim ad4 As New OleDb.OleDbDataAdapter("select * from table where date BETWEEN '" & CDate(TextBox1.Text) & "' and '" & CDate(TextBox2.Text) & "' ", cs) "Data type mismatch...
  4. M

    update in data access

    Dim c As String = "Provider = Microsoft.Jet.OLEDB.4.0; Data Source=c:\database.mdb;Jet OLEDB:Database Password=1;" Dim con2 As New OleDb.OleDbConnection(c) Dim st2 As String = "UPDATE table set column1='" & CInt(TextBox1.Text) & "', column2= '" & CInt(TextBox2.Text) & "' ...
  5. M

    Print data from textboxs and labels

    i have few textboxs and labels on form, i must print data from textbox and labels on paper.
  6. M

    Time from access

    i have a one problem with time. in columns show a date 30.12.1899, in all rows. format time is short time(17:20)
  7. M

    read from data and insert into textbox

    i have table with two columns and x rows, i wont read one data and compare to with data from one textbox, if data exist read data from same row but other column and put this data in textbox2. thank you!
  8. M

    insert data into Ms Access

    complete code for additing data into sql server. Dim c As New SqlClient.SqlConnection("Data Source=notebook;initial catalog=stuslu;user id=vbnet;password=vbnet;Integrated security=false") Dim da As New SqlClient.SqlCommand("Insert into studnew...
  9. M

    Login, its work

    Dim cs As String = "Provider = Microsoft.Jet.OLEDB.4.0; Data Source=E:\any.mdb" Dim b As String im con1 As New OleDb.OleDbConnection Dim dr As OleDb.OleDbDataReader Dim cmd As New OleDb.OleDbCommand Dim strselect As String = "Select Admin,lozinka from admin where Admin = '" & User.Text & "'...
  10. M

    Reading data from Access and filtering data

    i have database from which read data, but i wont "if i select from combobox on the form anything' example in database is table with date and time and on the form i must filtering data from combobox, browse by all, by current month, by current day or today and next day .....etc.
  11. M

    Queries, forms, reports

    can be possible using queries, form an report with dataconnection?
  12. M

    connect to Ms access (access is protected with password)

    I have Ms access database, which is protected with password. i wont connect to database, but i don't no how for password(database). in database exist table users and admin, if loged admin, admin have all priveleges.if loged user, user have only one part privilegies. in form vb.net, first menu...
  13. M

    Variables

    General/Declarations Option Explicit On Dim a As Integer Dim b As Integer Dim c As Integer and show mi "Statements is not valid in a namespace" before is work, but now don't work. please help me.
Back
Top