Search results for query: *

  1. C

    list box and vertical scrollbar

    i created a form with list box and vertical scrollbar controls. How will i incorporate the list box with the vertical scrollbar? i mean when i would click on the arrows of the scrollbar like the down button, the items to be viewed from the list box should also follow. or if click the up button...
  2. C

    adding records problem

    ac2ually the error message says: an unhandled exception of type 'System.Data.Oledb.OleDbException' occurred in system.dala.dll and that's all. that is if i omit the try-catch code.
  3. C

    adding records problem

    hi im making a simple program with this code on the add button. i don't know what's wrong with the code here: Private Sub cmdAddRecords_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdAddRecords.Click Dim da As New OleDbDataAdapter(command) Dim ds As New DataSet...
  4. C

    [Crystal Reports] Displaying Image

    hi..! is it possible for a crystal report to display a picture? i am making my crystal report somewhat like an album. like you have in one page all the information about one person and also his picture. The only thing i don't know how is to display that picture. although when i have added a...
  5. C

    record checking (if a record already exists)

    hi. i have a part of my form that asks for the lastname, and the firstname of a person. I have to make the name to be unique so that if for example "Perez, Mark" has been entered as input for a user's record, it will check if the name "Perez, Mark" is already stored on the database, if so then...
  6. C

    adding records help

    yeah it just says overflow well, forgive me for asking too much umm.. what do you mean by adding a break to my code?
  7. C

    adding records help

    hi thanks for that.. well it clearly states: OVERFLOW but what will i do with that? so i could really add a record?
  8. C

    adding records help

    hi would you guys help me? i made a code so that whenever i filled up all the required fields in my form a message box will tell that it has added the record. i think my code here is right but when i already filled all the information up, it displays my error handler message that "You have...
  9. C

    dataAdapter.Fill(m_DataSet) error

    hi i just followed the steps for a simple application that adds and delete records. Unfortunately, i have no idea why an error keeps on coming and it displays this: An unhandled exception of type 'System.Data.OleDb.OleDbException' occurred in system.data.dll and it highlights this code...
Back
Top