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

  1. drimades

    Packing db application issue

    With a db application created in NetBeans, which files do I need to copy to make the application run on another computer. Usually after making Clean & Build, I get a 'dist' folder with a main JAR file. Is this enough to make the application run on another computer? What about the database file...
  2. drimades

    Not findind main class

    My application executes smoothly when I Run the project from Netbeans. After a Clean & Build I tried: java -jar "/home/eus/NetBeansProjects/HimaraTest/dist/HimaraTest.jar" and strangely it gives me the following error: Exception in thread "main" java.lang.NoClassDefFoundError...
  3. drimades

    Autostart jar and database

    No, I can't see it and I think this is the problem. All the rest of the application works normally (forms, etc.), but the db seems to be missing. I think it is not even included in the /dist folder. I created the db and the table using the JavaDB virtual server of NetBeans, as showed in the...
  4. drimades

    Autostart jar and database

    I finished preparing a database application in Netbeans and now I want to create the autostart jar. I used the indications in http://www.homeandlearn.co.uk/java/java_and_databases.html I'm having problems because if I run it in another computer, it doesnt find the database. What can I do to have...
  5. drimades

    Exporting recordset to xls

    SOLVED using Apache POI. Thanks!
  6. drimades

    Query to JTable

    In Netbeans I'm using a JTable to display data from a db table. How can I bind the JTable to the results of a query (recordset)?
  7. drimades

    Exporting recordset to xls

    I'm using Netbeans to create db application. I need to export the results of a query (recordset) into an excel file. How can I do that?
  8. drimades

    Getting number of clicks in a link

    Hi! I have some news links in mysql db. for each link I want to keep in the db (a field ClicksNr) the number of clicks too. Any idea how to deal with this in Perl/Html?
  9. drimades

    Question on get_tag usage (HTML::Toke::Parser)

    I'm using a script to fetch some news from a website. Follows the main part: $tag = $stream->get_tag('a'); if ($tag->[1]{class} eq 'font12' || $tag->[1]{class} eq 'font5') { $url = $tag->[1]{href}; $headline = $stream->get_trimmed_text('/a'); $tag = $stream->get_tag('img')...
  10. drimades

    Generating questions from CSV file

    thanks! it's a useful solution. I m trying it.
  11. drimades

    Generating questions from CSV file

    Hi! I have a CSV file with some sample questions. The fields of the CSV file are as follows: number of the question, text of the question, points of the question Now I m reading the file in php and trying to generate a number of questions from it. <?PHP $file_handle =...
  12. drimades

    Using variables in cell values

    How can I use variables to express the addresses of the cells in Excel? How can I use them in for loops?
  13. drimades

    Changing the connection string in VB2005

    I used the wizard to create a connection to an Access db. With this connection I created some datasets. Now I have moved the database file (.mdb) to another directory in the system. How can I change the connection string to point to the new location?
  14. drimades

    Finding an existing connection

    I used the wizard configuration for adding a data source in my project. During the wizard it created a connection to the db called qbf2kConnection. I want to use this connection from the code of another form. But if I use just the name of the connection qbf2kConnection it doesnt recognize it...
  15. drimades

    Querying an Access DB

    With that procedure I can display 2 grids with Customers in the first and Orders for the selected Customer in the second. But I need to display the data for each Customer record under the first grid. so if I delete the second grid and use textboxes instead, how can I bind the textboxes to the...
  16. drimades

    Querying an Access DB

    I'm using the following procedure to get data in a master/detail form: Private Sub GetData() Try ' Specify a connection string. Replace the given value with a ' valid connection string for a Northwind SQL Server sample ' database accessible to your system...
  17. drimades

    Querying an Access DB

    Thanks! I was asking how to execute the query and fill a container ...
  18. drimades

    Querying an Access DB

    [VB 2008] I have the following connection to the DB: Dim connString As String connString = "Provider=Microsoft.JET.OLEDB.4.0;datasource=C:\Documents and Settings\Acer\Desktop\Db-Books.mdb" if I have a Query string in queStr how can I execute it to return the records I want and which data...
  19. drimades

    Drivers for Acer Aspire 5715Z

    Thank you! In fact I have seen those drivers. I have problems in particular with the wifi Atheros drivers and Realtek audio drivers. P.S. That link seems doesnt working.
  20. drimades

    Drivers for Acer Aspire 5715Z

    I ll try like that. Thanks!

Part and Inventory Search

Back
Top