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 SkipVought 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: *

  • Users: apffal
  • Order by date
  1. apffal

    "?" instead of euro symbol

    As I said, in Mysql, euro symbols display correctly if I make a search, for instance with phpMysqlAdmin. They change to "?" only if I search with a Java program via JDBC. So, it's a Java encoding problem. Something wrong with my String ?url=...
  2. apffal

    "?" instead of euro symbol

    I receive the NPE in terminal window (either in windows or linux), when I execute java program and try get results from database
  3. apffal

    Database access

    And what about getting results from text files, like in XML ?
  4. apffal

    Database access

    Can I use javascript to access and querying database tables, (such as in sql format), in different operating systems (windows, linux, mac os) ? If yes, how to get information about it ?
  5. apffal

    "?" instead of euro symbol

    Excuse me for delay ! I found this is a encoding problem, since my database uses ISO-8859-1, which has no euro symbol support, and ISO-8859-15 has it. So, I've changed String url= "jdbc:mysql://127.0.0.1/test"; to String url=...
  6. apffal

    Newbie question.....

    A question about XML : Is it possible to use XML for querying a database and displaying its results, without using a local or remote server ?
  7. apffal

    Copy grid contents

    I'm using FoxPro 6.0 and have a grid with no columns. So, is it enough put that code (thisform.Text1.Value = this.Value)in grid´s DblClick EVENT ?
  8. apffal

    Copy grid contents

    What I want is allow the user, by clicking or double clicking one cell or row in the grid, automatically copy its contents to a text or editbox. Is it possible ?
  9. apffal

    Copy grid contents

    Is it possible allow the user copy grid contents to a text or editbox ? If yes, how to do it ? Thanks !
  10. apffal

    "?" instead of euro symbol

    Problem with fonts ? In java program, I'm using "Helvetica", Font.PLAIN, 12. What should I use ?
  11. apffal

    "?" instead of euro symbol

    I enter all my data in Mysql - and euro symbols display correctly if I make a search, for instance in phpMysqlAdmin. They change to "?" only if I search with a Java program via JDBC. And I cannot fix that - if I edit the TextField, save the change and restart the application, I get "?" instead...
  12. apffal

    Adding form

    I changed the forms from modal to modeless and everything works now. Thanks !
  13. apffal

    Adding form

    Since I've added a second form to my application, no more got the quit command and exit button, in menu bar, to work. What's wrong ?
  14. apffal

    "?" instead of euro symbol

    Yes, I get results in a TextField from a mysql database
  15. apffal

    "?" instead of euro symbol

    I mean : a text field for getting results with JDBC
  16. apffal

    "?" instead of euro symbol

    I get "?" instead of Euro symbol, as a result, in a JDBC text field. Is it possible to solve this ? Thanks.
  17. apffal

    Case insensitive

    Thanks ! But always gives me a syntax error on the line Set Filter to lower(cValue1) $ Lower(Evaluate(lcField1)) IN "MyTable" And if I delete the expression "IN my table", I only get the first record in search results. I'm using FoxPro 6.0 and that is my complete code IF...
  18. apffal

    Case insensitive

    So, how to use it with this code ? cValue1 = ALLTRIM(thisform.Text1.Value) lcField1 = thisform.cbo1.Value SET FILTER TO cValue1 $ &lcField1
  19. apffal

    Case insensitive

    I've defined the search value with the expression : cValue = ALLTRIM(thisform.Text1.Value) or cValue = [']+ALLTRIM(thisform.Text1.Value)+['] How can I modify it, to get case insensitive results ? Thanks.
  20. apffal

    Starting FoxPro

    How can I avoid loading all the database when starting FoxPro ? Thanks in advance.

Part and Inventory Search

Back
Top