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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jose74

  1. jose74

    Update Stored Procedure Only Updates First 10000 Rows Of Table

    Hi, I think this will be an MS Access issue. As I remember Access by default only shows the first 10000 records of a large table. So I can imagine that it has a problem with the update-statement. Try to set another value in default settings or use a separat connection in VBA to send the statement.
  2. jose74

    how to stop datagridview columns being reset

    Look for the AutoGenerateColumns property of the grid. It must be set to false.
  3. jose74

    Problem with Webservices and Reflection .GetFields() method

    I dont know, what the problem is in VS2005, but when the two objects are of the same type, you shoud try the schemaimporterextensions, that are new in 2005. So you can map a web service object to a local one. I hope it helps!
  4. jose74

    Multilingual data/different charsets

    Is there something like an Idn-Mapping-tool helpfull (e.g. in .net 2.0) to translate the japanese characters to ascii? - because the user inputs only characters of one language! Does someone know something like that?
  5. jose74

    Multilingual data/different charsets

    Hi, I have the problem to save data of different languages in a table in MS SQL 2000. The data is stored in one Column (nvarchar) and is connected with a foreign key to the specific language. It contains english and japanese values with different fonts. Is it possible to do a search over this...
  6. jose74

    Application.ThreadException is not thrown

    Hi Chiph! Yes, the backgroundworker has finished and the exception is thrown in the main thread. But the threadexception is not captured.
  7. jose74

    Application.ThreadException is not thrown

    I know this, but even if the backgroundworker has done the work, the ThreadException in the main thread is not captured.
  8. jose74

    Application.ThreadException is not thrown

    I use some backgroundworker in the main form. When I delete them the events are fired, but I need some backgroundworker! How can I use the ThreadExceptionHandler when I have a backgroundworker? The events are not fired althought the backgroundworker has finished!
  9. jose74

    Application.ThreadException is not thrown

    Hi, I try to catch all unmanaged exceptions in an application to send a bug report by webservice. So I implemented Application.ThreadException and AppDomain.UnhandledException. I also tried a try-catch-block at Application.Run(...). But the events are not fired. I´m using VS 2005. Can anybody...
  10. jose74

    Different versions of Microsoft Excel...

    You can use #if .. #elif .. #endif. So you can define which code parts have to be compiled.
  11. jose74

    Generic UserControl

    Hi, sorry for the late response! The problem is to work with the collections. The usercontrol contains a grid (or a listview) and buttons for paging. The paging fills the collection _shownCollection from _wholeCollection. But I can not specifiy the type of the collectionitems.
  12. jose74

    Generating String SQL Statement

    Well, I did it! And it works! But I do not know if this is the best solution, but the handling is good. You have an object of type filter (in your case field) and can loop through the list with "foreach".
  13. jose74

    Generic UserControl

    In my application I use a usercontrol that contains a grid and buttons for paging functionality. The user can specify how many items he wants to see per page. To use custom objects I used generic lists which contain the items. So the control contains two collections: List<Article>...
  14. jose74

    Generating String SQL Statement

    Hi, my experience is not as well, too - but I had the problem to build a "where"-clause. So I had a class with columnname, fieldtype, operator and value called "filter". To create the filter I have a generic List<filter>. So I can loop through the items and create the "where"-clause. Hope, I...
  15. jose74

    VB6/CR: Report with local recordset!

    thx, we now use CR10 and I created it with OLEDB/ADO, but the login dialog appears when I use the setdatasource method. I even tried to set the connection properties at runtime - but no changes.

Part and Inventory Search

Back
Top