Recent content by mnewnham

  1. M

    Senior Analyst/Programmer, Denver

    Job Description ---------------- Senior PROGRESS/PHP Senior Programmer/Analyst $70,000 - $75,000 plus benefits depending on experience Based South of Denver in the Denver Technology Center, American Data Group is a financial systems software supplier to Local Government, Utility...
  2. M

    Cgi Error after update of WS2003...

    Nothing in the event viewer?
  3. M

    Cgi Error after update of WS2003...

    Try checking the permissions on the cgiip.exe to see if it is executable by the IIS server
  4. M

    Cgi Error after update of WS2003...

    I assume you allow unknown cgi applications in the web service extensions
  5. M

    Success with ODBC and Pprogress 9

    "We have a Progress back end for an ERP package called Proteus. We are trying to extract the data into SQL before we ditch Proteus in a short while." If you want to build an image of your progress database in SQL server, have a look at my PRO2XMLSCHEMA data conversion programs at...
  6. M

    PEG and Xenophobia

    >> Why on earth would you want to receive every single post on a topic via email. besides the network admin yelling about the traffic, I'd rather hit the site and search on the question when needed as opposed to getting every single email submission on a topic. The boards centralized area for...
  7. M

    PEG and Xenophobia

    Speaking as someone who posts replies more than asking questions on peg, and indeed, progresstalk, These are some observations: As someone involved in cross-disciplinary work, I find email groups are a much more efficient way of delivering, filtering out unwanted information and responding...
  8. M

    limiting the number of rows in a resultset

    Unfortunately not.
  9. M

    Create or Line up combo-box columns

    DO While Available(NonConf): Assign ChrWrkCenter = string(wrkcenter.WCcode,"x(10)"). Assign ChrJobNum = string(NonConf.JobNum,"x(20)"). Assign ChrOpNum = String(Joboper.oprseq). /* Assign Cmbfill = ChrWrkCenter + ChrJobNum + ChrOpNum. */ overlay(cmbFill,1) = chrWrkCenter...
  10. M

    Create or Line up combo-box columns

    You would have to 1. Make sure you are usiing a fixed font (courier). 2. Left (or right) pad the strings to the correct length OR have one long string and use overlay to drop the database info at the right offset.
  11. M

    PHP and Progress

    I'd just like to add that if any of you have any PHP/Progress code snippets, tricks or ideas I'm always interested in adding them to the site. email them to me at mark@newnhams.com Credit always given. The Progress/PHP pages are averaging about 500 hits/month so there is plenty of interest out...
  12. M

    One row at many times

    try adding SQL_CUR_USE_ODBC on the odbc_connect() line.
  13. M

    One row at many times

    1. not sure about this query $query = "SELECT * FROM pub.Holiday"; $query .= " pub.Holiday.holdate"; 2. You might try using odbc_prepare followed by odbc_execute instead of odbc_exec. This was definitely a problem with V8 databases and openlink MT drivers (You dont specify your setup).
  14. M

    One row at many times

    Post the section of code from the connect statement onwards.
  15. M

    Synchronizing 2 Progress Databases

    for batch have a look at probkup incremental online.
Top