Search results for query: *

  1. F

    I Need help desperately...

    thanks for replying thanks for replying.. but I dont the snippet of code you wrote... do you mean I need a query in order to get the next autonumber? and can you explain the code your wrote a bit please? thank u so much..
  2. F

    I Need help desperately...

    Subject Override: Finding next autoincrement value in Access Database I only have a few hours left before I pass this project and Im having a hard time.. pls pls pls help me.. Heres the problem.. I have an Access database that contains a table named Customer.. now, as an attribute of that...
  3. F

    Size of Column Header in Datagrid...

    sorry for this question but I cant figure how to resize my column headers in such a way that all my column names are seen. because I keep resizing all my column fields at runtime to be able to see all my fields' characters.. I tried looking at the properties but nothing happens.. can...
  4. F

    How to Link a help writer to my Application?

    I have a help writer called "help maker".. I was just wondereing how can I connect this help writer to my system.. because I have a "help" option in my system... please help.... thanks so much in advance for your kind consideration...
  5. F

    datgrid showing limited fields.HELP

    paszt thanks.. I fixed it already.. I just generated a new dataset and it worked.. maybe I binded it to a wrong adapter at first. thanks again :)
  6. F

    datgrid showing limited fields.HELP

    ok.. I will try that... does the code data adpater.fill(Dataset) do the job of populating the grid with my wanted fields? do I have to configure the datamember properties of the grid? t.y
  7. F

    datgrid showing limited fields.HELP

    Pastz.. :) by the way.. Iam creating a windows application (winnform) not a web based app.. t.y...
  8. F

    datgrid showing limited fields.HELP

    ok.. I only used the code DataAdapter.Fill(DataSet).. did I miss any code? i Just configured my dataadapter and checked the fields I only wante dto display through the Query builder... I also binded it to my dataset... but after all that I just used DataAdapter.Fill(DataSet).. is that wrong?
  9. F

    datagrid display problem

    is it possible to display a specific column/columns without using DataReader, but using the DataGrid? if so, please post the procedure. thank you in advance for your help.
  10. F

    datgrid showing limited fields.HELP

    i use the command: DataAdapter.Fill(DataSet) in order to fill my datagrid with the contents of a certain database table. however this didn't work when i only wanted two fields from a database table with 5 fields. i configured my dataAdapter to select only the desired fields to show, but...
  11. F

    HELLLLP.. datagrids

    thanks thanks so much for ur help... I will do just that :)
  12. F

    HELLLLP.. datagrids

    Hello... I have a proj due in a few weeks.. can somebody help me... I have a datagrid which contains tables from my access db however I am puzzled how can the system know that I have pressed a certain row in the datagrid? for instance I want to delete a row in the grid is it possible that...
  13. F

    .ExecuteNonQuery Method ERROR

    managed to fix this.. after reading past threads :)
  14. F

    .ExecuteNonQuery Method ERROR

    Dim MyConn As String = "Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source= C:\Davenben.mdb;" & "User Id=admin;Password=;" Dim Query As String = "SELECT * FROM login" Dim MyConnection As New OleDbConnection(MyConn) Dim StrInsertCommand As String = "INSERT INTO login(Username,Password)" &...
  15. F

    HELP! how can I connect to MSACCESS...

    Thanks Thank you for that... I did what you said and I have successfully connected to MSACCESS... :)
  16. F

    HELP! how can I connect to MSACCESS...

    Hello.. I have a project that is due in a few weeks time and I cant even connect to my database yet :'( Ive read about connecting to databases.. from what Ive read I need datasets, dataadapters ,dataconnections and datagrids so I can display and manipulate my tables during run-time. however I...
  17. F

    what are the datagrid capabilities in VB.NET?

    Im new in using VB.NET and I am currently working on an Information Sytem that uses MSACCESS as its database.. I just have a few questions about datagrids: 1.) can datagrids directly show my MSACCESS databases? 2.) when fields in it are edited, deleted or created, are they automatically...
Back
Top