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!

Search results for query: *

  • Users: apffal
  • Content: Threads
  • Order by date
  1. 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 ?
  2. 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 !
  3. 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 ?
  4. 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.
  5. 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.
  6. apffal

    Starting FoxPro

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

    CSV file

    What's the best way to export a dbf table, with a large memo field, to a csv or text file ? Thanks
  8. apffal

    Inputbox

    I've created a listener, which opens an inputbox, for searching strings in a textarea. But, when clicking OK, that inputbox disappears and I need to restart the listener for searching another ocurrence of the same string. How to solve this ? Thanks. That's my code class Listener...
  9. apffal

    Euro symbol

    Using mysql-connector-java 3.0.15, I get "?" instead of Euro symbol, in my JDBC text field. How to solve this ? Thanks.
  10. apffal

    Euro symbol

    I've converted an Access table to FoxPro 6.0 Now, in that table, euro symbol has changed to "?" - and when I try to correct it, gives me a "Ç". What can I do ? Thanks.
  11. apffal

    Dialog caption

    In VC++ 6.0 applications, I always get a "No title" (followed by the app name) dialog caption. How can I change that ? Thanks.
  12. apffal

    Distributing application

    Using Visual Studio Installer, which files must I add to setup file for distributing a Visual C++ application ? Thanks.
  13. apffal

    ProgressBar

    I'm building a setup application which copies a big file to the target machine. How must I modify the ProgressBarDemo (from Sun website) in order to show the progress of copying files ? Thanks for help. There is the ProgressBarDemo code import java.awt.*; import java.awt.event.*; import...
  14. apffal

    Setup program

    I'm writing a Java setup program for installing a JDBC app, which connects to a Mysql database. I want to create a script in order to provide final user setting privileges in that database and add it a table, without needing to write Mysql commands. How can I do it ? Thanks in advance.
  15. apffal

    SetText on textarea

    I've created a JDBC application which retrieves data from a local Mysql database and prints results to textfields and the memo (blob) field contents to a textarea in a java form. When using it in Windows XP, everything works fine. But, using the same code, in Linux, it takes a long time to print...
  16. apffal

    Lists

    Two questions about lists : I cannot make visible an awt.list with list.setVisible(true). What's wrong ? Is it possible add two, or more, columns to an awt.list ? If yes, how to do it ? Thanks.
  17. apffal

    Refresh value

    I'm using as variable the integer value of last selected index in a list. However, after removing all items in my list, with removeAll, I cannot refresh that integer value - which is still used when adding new items to it. How can I do it? Thanks.
  18. apffal

    Resultset

    I would like move to next or prev records in a Resultset, clicking other listeners bottons. What the best way to do it ? Thanks. There is my code : class Listener1 implements ActionListener { public void actionPerformed(ActionEvent ev) { String url= "jdbc:mysql://127.0.0.1/mydb"; Connection...
  19. apffal

    JDBC

    I' m using the linux driver libmyodbc3-3-51.06.so, for connecting to a mysql database. I set url to String url= "jdbc:odbc:mydsn;useUnicode=true&characterEncoding=ISO8859-1"; However I cannot get accented characters in textfields or textareas. What's wrong ? Thanks
  20. apffal

    JDBC

    As I got no answer, here are the questions I've made in another thread : 1 - In JDBC, how to use a scrollbar to navigate through records (next, previous, bottom, top) ? 2 - And how to use a combobox to assign a field name in a query ? 3 - I have a large text field in Mysql database (3000 or...

Part and Inventory Search

Back
Top