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 wOOdy-Soft 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 apffal

  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

Part and Inventory Search

Back
Top