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

    Automated Linked Table manager

    All, I added my auto re-linking code to my "Main Form" init sequence to automatically re-link my linked tables. However I still am getting errors, before it gets to the code. Looks like I need to link in my code somewhere else to catch the application init instead of the form init. Where do...
  2. YoungManRiver

    Simulating REXX

    I have a REXX procedure that does the following: Map all local windows drives, Delete "somefile.txt", Run equiv to "dir *.* /s /b >> somefile.txt" for each drive, Read and filter "somefile.txt" to eliminate program and OS files, Load the File Results into "f_results.txt", Load the Dir Results...
  3. YoungManRiver

    Two Issues

    All, I need the following: I'm REXX hack and use Pegasus Mail. Problem with Pegasus Mail is the files, at the file level are compressed or encrypted with multiple emails jammed into one file. I have over 1 Million emails in my system. I need to clean out some, but need to keep all the valid...
  4. YoungManRiver

    Quick Q => Filename.ext Processing

    All, I was trying to create a list of files, over the week-end and write into MySQL. Same as DOS cmd "dir path\*.* /s /b > dir_list.txt", but into MySQL instead. Kept getting an error on the "." from the filename.ext. I looked up the error and the MySQL manual says "." is a reserved word, not...
  5. YoungManRiver

    Exec

    All, The PHP users manual says the way to call an external routine is one of the following: exec() system() passthru() escapeshellcmd() pcntl_exec()I've tried all these for the following code: if (isset($HTTP_POST_VARS['fixs'])) { $drvstr = 'D: E:' for ($i = 0; $i <...
  6. YoungManRiver

    Another Quick Q

    All, Been looking for an example, as my attempt is causing error, but all the docs I find only show how to read from "form" not write to "form" for selected items in a listbox object. My code to read is this: Sub LOC_sav() Dim Wspace As dao.Workspace, dbs As dao.Database, rsDEST As...
  7. YoungManRiver

    Templating

    All, Know this is going to sound weird to all of you, but in 1994 your's truly introduced the whole concept of templates, using .shtml with includes for the segments/sections of a page. Well the template movement has really matured and taken off, and I'm left behind. Went out to try to get up...
  8. YoungManRiver

    Two Problems

    All, Have two problems which are: 1. Need a good example of sending email from within Access. want to use config for the email I enter into a table for this so export of Data into Zipped Excel file can be MIME encrypted and sent to corporate location, 2. Problem with "Afterupdate"...
  9. YoungManRiver

    WinCVS Setup - SourgeForce in particular

    All, Downloaded WinCVS, RapidSVN, and SubVersion and been trying to get them to work. In particular I opened two OS projects on SourgeForce and have been trying to step by step, with their howto docs, but swear they wrote them in Swaheli or something, cause nothing they say to do works. Docs...
  10. YoungManRiver

    Back to Zip with Template twist

    All, I was working on some zip stuff a while back. See thread434-1390625 I'm running a new project as part of or a sub piece of my project at: http://www.tek-tips.com/viewthread.cfm?qid=1429676 I have posted the two main files and two methods I'm attempting to use to display the html...
  11. YoungManRiver

    Python Installer Problem

    All, I downloaded the OpenEMM (Linux & Windows) to install. The Windows version uses Python as the Installer and the programmer for this installer made some bad assumptions about the installations. I posted a run-down of the install problems at...
  12. YoungManRiver

    simple query

    I can't run a simple query in my CR to do: select count(code) from transactions where code in ('001', '002', '003', '004', 'E01', 'E02', 'E03', 'E04') and userid = groupname.userid and datediff('day',cdate,NOW(*)) =0 This is where my transaction table contains the following: userid ==>...
  13. YoungManRiver

    Ghost Tables

    All, I have a MySQL containing 12 databases, one which has 3 tables. I've looked in the docs to determine how to re-index and run maintenance on my databases and it leaves me cold. Anyway I login at the console and: show databases; ==>> DB shows use <<dbname>>; ==>> DB...
  14. YoungManRiver

    Button Control

    All, Have a file posted at: http://pastebin.ca/840828 with 5 buttons. Problem is I'm having trouble getting the buttons to differentiate themselves. Been trying to use the function "set_but" to solve this, but not sure I'm calling it correct nor setting up the passing of vars to it right...
  15. YoungManRiver

    Excel in PHP

    All, Have dowloaded and tried the following classes and/or excel tools for PHP: Excel Class No example file to test Excel Reader Test 1 fails Excel Reader Test 2 writes code and errors to screen Excel XML Opens Excel but writes crap in the file EZ Excel...
  16. YoungManRiver

    Looking - Sync Package

    All, Looking for a PHP driven package to synchronize files on machines, with DB (MySQL) backend and searchable/syncable by: 1. Topic/Content, 2. Date, 3. Project, 4. Latest, 5. Exclusion List Driven (for directories and/or files to ignore when syncing), 6. Thumb/Flash Drive or CD/DVD media...
  17. YoungManRiver

    Drop Down List Mastery

    All, Trying to master the problem with this code:<?php require('./functions/db_connect.php'); $cur_cnt = "001"; $cur_dat = date("m/d/y"); $sql = "SELECT inv_no, inv_rep FROM invoice WHERE inv_dat=$cur_dat;"; $result = mysql_query($sql); while ($row =...
  18. YoungManRiver

    PHP Array Sorting

    All, Solved my dBase problem from: http://www.tek-tips.com/viewthread.cfm?qid=1390294&page=1 only to find my list is unsorted. PHP manual says use "asort" or "ksort" but not having any luck. Please look at my code and let me know what is needed to get my sort working. [code]<?php...
  19. YoungManRiver

    PHP &amp; Zip Files

    All, Looking in PHP manual there is an "addfile", but no "pullfile" routine in the zip library. The extractTo, extracts all the files and I need to selectively extract files from the zip. Does anyone have a sample/example of how to do this? YMR
  20. YoungManRiver

    DBase &amp; PHP

    All, Working on PHP script to open existing "Customer Add" function to pull data from existing "ACT" .dbf file. Here is code so far:<?php $af = 'c:\myact.dbf'; $db = dbase_open($af, 0); if ($db) { $record_numbers = dbase_numrecords($db); echo "G rec cnt =>...

Part and Inventory Search

Back
Top