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: pookie62
  • Content: Threads
  • Order by date
  1. pookie62

    Undefined variable ?

    Hi, Anyone sees why I'm getting undefine index for output ? "Undefined index: id" in /path to/edit.php on line 57 // display initial form with values pre-filled $submit=''; if (!$submit) { // open database connection $connection = mysql_connect($host, $user, $pass) or die ("Unable to...
  2. pookie62

    No new window !

    Hi, I'm using the SlideMenu 2.0 made by Thomas Brattli *Script date: 08/05/2002 This is the line from the script where some elements are given to call the proper values for the PHP script. This PHP script creates a table with results from a match. slideMenu.makeMenu('sub','Level...
  3. pookie62

    Sorting columns

    Hi, jpadie wrote me this script for outputting scores from different races. (For which I'm thankfull eternally) It does work nice, but there's one little thing I'd like enhanced. the sorting of the columns. I've looked into the sort() function but I don't get it working the way I want. All races...
  4. pookie62

    Specific layout

    Hi, I want to display a table in a specific way. Matchnames(Wedstrijdnaam) as toprow Firstname + Lastname in second column Perc in crosscell Like: "Empty Cell" | Match1 | Match2 | Match3 Firstname+Lastname | Perc (for this match) | Perc | -- (when there's no score for this...
  5. pookie62

    Adjust script for FireFox

    Hi, I found an external js script to create a popup nav menu on rightclicking. Called like this: <SCRIPT tyle="text/javascript"> var iecheck=document.all&&document.getElementById if (iecheck){ document.write('<script type="text/javascript" src="../menu/mymenu.js"><\/script>') } </SCRIPT> Working...
  6. pookie62

    Navigating out of frameset

    Hi, I have a frameset, main and leftframe. In the mainframe I have a menu poping up when mouse is rightclicked. When I want to to mainpage its loaded in the mainframe. How do I prevent that and load the normal page (no frameset) and closing the frameset ? Thanks
  7. pookie62

    Calling file.js twice ???

    Hi, I'm calling a menu script like this: <script language="JavaScript" src="slidemenu.js" type="text/javascript"> The page is php and has an included header in which another menu is called like this: <SCRIPT tyle="text/javascript"> var iecheck=document.all&&document.getElementById if (iecheck){...
  8. pookie62

    Nest Array's ??

    Hi, If I need fields from different tables and those have a relation in what I want to display, should I nest array's ? Can one nest array's ? Can someone provide a sample code how this works ? I have such a complicated situation, is very hard to explain, tried on two ither Forums'without any...
  9. pookie62

    Calculating average from 3 smallest values ?

    Hi, I'm using a mdb to set scores. Usually there are 5 scores, now I would take the three smallest values from the five present, and calculate the average of those three. The scores entered (in a form) then should be erased and replaced by this one new average value. Is this possible with VBA ...
  10. pookie62

    Exporting decimals ?

    Hi, Can someone help me ? I use this DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel8, "ExportScore", ExportFile to export certain data to a csv file. The data in the table has 14 decimals, but the csv contains only two decimals. I need at least three decimals.. How can I do that...
  11. pookie62

    Exporting orderlist to Word & Updating sheet

    Hi all, Is there a sample for this: I have a sheet with our number of products in stock. When the number gets beneath a certain value, I need to order those products. I would like to export to this to Word creating a list of the products and howmuch I need to order to ensure I have enough of...
  12. pookie62

    Saving WordDoc from Excel

    Hi all, I found this code, but I can't save the WordDoc properly as I want. Anyone knows how to do this ? ' Automation of Microsoft Word from Excel ' NOTE: There must be a reference to the current Word ' library from TOOLS | REFERENCES within the VBE '...
  13. pookie62

    No decimals imported ??? Help..

    Hi, I'm importing score values into a Score table. Data is inserted, but the decimal values are all zero. This is the data from the csv file: Id InschrijvingId SerieNr Tijd Punten -1342470134 -2066231603 1 10,53 100 1642315376 -2036312949 1 14,63 100 1752376856 -2000188461 1 9,61 100...
  14. pookie62

    If date on form &lt; Now(+7) ???

    Hi, I want to disable editing certain fields on a form if the date on this form (goes over a year) is smaller then now() + days How do I write that ??? Now I have this, but I need those extra 7 days on top of the present datefield[txtDatumFix] If Forms![Inschrijving].[txtDatumFix] < Now() Then...
  15. pookie62

    Easy for guys, syntax error

    Hi, I'm using script to update MySQL table from csv file. I'm getting a syntax error and don't know how to get it right. Browser error: right syntax to use near 'lid='',URL='',Vereniging='Somevillage',Adres='The Street 9' Line from csv file...
  16. pookie62

    Insert or Update table

    Hi, Got this script, but now when the data is in the table (id) nothing happens, I would like the record to be updated with the new values from csv file. Anyone can help me write this ? This is what I have: mysql_select_db($database_ASN, $ASN); $fp = fopen('UploadedMatch.csv', 'r'); //...
  17. pookie62

    Combining query's and echo results

    Hi all, I have a few different query's from which I need to display the results. Have a look at the code and you'll understand better then I can explain. This is the relevant part, the counting query does work, tested it without variables. How must I do this ?? Thanks ! Code: <?php...
  18. pookie62

    Auto update MySQLdb

    Hi all, Does anyone have a working phpscript (and the will to share ;-)) that can read and update a MySQL db (hosted) with an uploaded text file ? (By itself..) See my little project partly here: http://www.tek-tips.com/viewthread.cfm?qid=1073963 I have no clue on where to start, would...
  19. pookie62

    Replacing text

    Hi, In a table I have a guys clubname, but also the club URL. What I would like is showing on the report the clubname being a hyperlink to the club URL. This report is published on the web. Is this possible ?? If so, how ??? Thanks in advance ! Hans
  20. pookie62

    Counting checkbox with criteria ??

    Hi All, I'm new on this forum and can't get my thing done.. I've checkbox on a Form with this property: =IIf([NR]>0;Waar;Onwaar) So, if NR is greater then zero, the box get's checked. How do I count the boxes that are checked ?? I can't get it done.... Thanks for replying ! Hans

Part and Inventory Search

Back
Top