Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Yogeetarp

    MS Access Memo Field Getting Corrupted at Runtime

    Hello, I am using VB .Net programming to dynamically read/write MS Access 2000 data at runtime environment. The data gets imported using OLEDB connection via Jet4.0 engine. The MS Access data contains memo fields, and these fields are getting corrupted at runtime. I have looked on web for any...
  2. Yogeetarp

    auto lookup

    Thanks for the response. I am doing this application as a windows form and not web form, so I don't think AJAX would help. Thanks.
  3. Yogeetarp

    auto lookup

    Hello, I have an excel sheet with a bunch of activities and their respective codes assigned to it. Now I want to create a lookup table that would do the following: If a user types in some words it should lookup in the spreadsheet for ALL the matching words and populate them on the screen...
  4. Yogeetarp

    Associating a combobox with Datagrid

    All the time, thanks for replying
  5. Yogeetarp

    Associating a combobox with Datagrid

    Hello, I am trying to associate a combobox with a DataGrid. I am creating a dynamic table and adding it to a dataset. The datagrid uses this dataset as the datasource. For instance: DataGrid.DataSource = Dataset.Tables("NewCase") In the table I have several text columns (the default) and need...
  6. Yogeetarp

    button on a dynamic form

    Does this mean I have to declare the Form as a global field?
  7. Yogeetarp

    button on a dynamic form

    Hello, I am creating a form dynamically based on some button click from the original form. Now when I hit exit I want close the current form (dynamically created one), but not the orignial form: This code is closing both the forms Dim NewCase As New Form Dim btnExitCase As Button = New...
  8. Yogeetarp

    Extract Time out of DateTime Type

    Thanks for looking at it. This worked: MyStr = Format(MyDateTime, "hh:mm tt") ' Returns "05:04:23 PM".
  9. Yogeetarp

    Extract Time out of DateTime Type

    I want to extract the Time (12-hour type, NOT military) from a DateTime type for the display. I was thinking about displaying it as string and formatting it. But am having some problems in this transaction. Any help or suggestions will be greatly appreciated.
  10. Yogeetarp

    Populating new dataset

    I have an access database and I need some advice on how to convert each record/row of the access table into a new table. The main goal is to populate a VB datagrid for each record and allow the user to update it. Would it be recommended to create yet another actual table to copy the data OR...

Part and Inventory Search

Back
Top