Search results for query: *

  1. T

    BindingNavigator

    see if this is helpful: http://www.coderpages.com/default,date,2005-10-31.aspx Good Luck!
  2. T

    SQLDataAdapter Insert Command

    you may check your code with dataadapterInsertCommand.paraters.add("@p1", oledbtype.varchar) .sourcecolumn="address_1" end with In my experience, null value in string type field is acceptable as other string type fields in your SQL statement, so I guess the places going wrong maybe you have...
  3. T

    dataAdapter and datagrid help

    in my experience, there is no way to update both tables by using the commandbuilder.getInsertcommand or commandbuilder.getUpdatecommand because dataadapter is assigned to only 1 table so it can update, delete or insert only one table at one time, other than the selecting sancerio you mentioned...
  4. T

    Delete rows in datatable to database

    the following maybe helpful, pls try: ds.Tables("dtGenres").Rows(rownumber).delete daGenre.update(ds.Tables("dtGenres").getchanges(datarow.deleted)) ds.Tables("dtGenres").acceptchanges where rowumber is the number of the row in your table, which start with 0 to the number of tableRows - 1...
  5. T

    the need for IIS?

    Please visit the following, it maybe helpful: http://www.nodeworks.com/asp/install.html
  6. T

    Can we load specific page only in Crystal Report Viewer rather than filtering it out

    gopal2006, thank you very much, I have tried it. It works! Timothy
  7. T

    Can we load specific page only in Crystal Report Viewer rather than filtering it out

    :) Hi everyone, Now I am writing the receipt part of a program loaded with crystal report. Can we select a specific receipt to load in crystal report viewer instead filter it out after all pages are loaded? I can't find any solution after searching many articales. Is it possible to do...
  8. T

    Crystal Report at Runtime.......

    Can we load specific page only in Crystal Report Viewer rather than filtering it out :) Hi everyone, Now I am writing the receipt part of a program loaded with crystal report. Can we select a specific receipt to load in crystal report viewer instead filter it out after all pages are loaded...
Back
Top