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 TouchToneTommy 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: drimades
  • Content: Threads
  • Order by date
  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

    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...
  4. 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)?
  5. 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?
  6. 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?
  7. 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')...
  8. 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 =...
  9. 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?
  10. 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?
  11. 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...
  12. 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...
  13. drimades

    Drivers for Acer Aspire 5715Z

    I cant find the drivers for the notebook Acer Aspire 5715Z for Win XP Pro. Any idea?
  14. drimades

    Custom query in &quot;Add Query&quot;

    Visual Basic 2008 I have a DataGridView and I click to Add Query for creating a query to fill it. Normally I have to add some statements in the Query Text field. I have a string variable to register my query text. How can I use it to fill the Query Text field?
  15. drimades

    Changing data form to search form

    (Visual Basic 2008) How can I change a data form to a search form? I've created the data form connecting it with a dataset so each time I open it, it loads the data from the db. How can I use it in "search mode" so the text boxes to appear empty when I open it?
  16. drimades

    Disabling programs at Microsoft Word 2003 start up

    I have installed some dictionary softwares and they have the plugins for Word. So each time Word starts, it loads even the dictionary services etc. How can I disable these in Word? thanks
  17. drimades

    Querying a dataset

    Visual Basic 2008 I have a dataset called qbf2kDataSet. Currently it is just a table of the database. Using an SQL query how can I query the existing dataset qbf2kDataSet and return the resulting records to a new dataset qbf2kNew?
  18. drimades

    Executing query to fill data form

    I've created a SQL query that selects some records from a table. I have created a wizard data form from that table. How can I execute the query to fill the data form with the result of the query?
  19. drimades

    Setting the source of a data mask

    I have created a wizard data mask that displays data from a specific table. How can I change the datasource of the mask to that of a query result after executing a query?
  20. drimades

    Cutting a string in Access

    How can I transform a string of the form "firstword secondword thirdword" into 3 strings "firstword", "secondword", "thirdword

Part and Inventory Search

Back
Top