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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Bada

  1. Bada

    Replace command

    rene browse the database create a field nameonly replace all nameonly with name browse field nameonly ctrl+f find = '- Registered Voter' replace with ' ' Bada
  2. Bada

    Calculate days in the month....

    mgagnon zmnth = STR(MONTH(DATE())) zyear = STR(YEAR(DATE())) zmnth & zyear are not numeric they are converted using str function. Bada
  3. Bada

    Calculate days in the month....

    zmnth = STR(MONTH(DATE())) zyear = STR(YEAR(DATE())) qstdate = CTOD("01/"+zmnth+"/"+zyear) qendate = GOMONTH(qstdate,1)-1 ? DAY(qendate)
  4. Bada

    Calculate days in the month....

    zmnth = MONTH(DATE()) zyear = YEAR(DATE()) qstdate = CTOD("01/"+zmnth+"/"+zyear) qendate = GOMONTH(qstdate,1)-1 ? DAY(qendate)
  5. Bada

    APPEND FROM Not Working

    Just wait for a while before you zap by flashing a messagebox say Messagebox("Report Executed",64,"Return") When user presses OK after that you zap the database. Have a nice day
  6. Bada

    DBF Monitoring

    Make a log table with user,transacts...etc. -When addition is occured and user saves - Add a record to that table including name,id etc of that user. -When user modifies - copy original record to file x. when user saves copy modified record to y. compare fields if any field does not...
  7. Bada

    multi-user & grid problem

    Hi When you want to update to table use SKIP 0 to suppress record to table. Let me know if it works Bada
  8. Bada

    Disappearing I-bar in text fields...

    Hi Make sure that in forms procedures SET CURSOR is set to off or Before executing this form Make sure to make SET CURSOR ON Bye

Part and Inventory Search

Back
Top