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 Chris 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: *

  1. frankienstien

    Select Current Moth

    sorry my internet's been down for a little while cable got cut by city crew (go figure) this is my current code, not pretty yet but i'm working on it. "SELECT * FROM tblMenu WHERE MONTH(LunchDay) = MONTH(DATE_ADD(NOW(), INTERVAL 0 MONTH)) ORDER BY LunchDay DESC" let me know if you see...
  2. frankienstien

    Select Current Moth

    i need to be able to select all the items in the database that are in the current month. or i need to be able to select all the items that are within 30 days of todays date. this is for a nursery school that would like to be able to show the lunch menu's for the month. the table is very simple...
  3. frankienstien

    post not actually posting

    thanx for the help. i am trying to learn from example and not examples are equal out there on the internet. but thanx once again.
  4. frankienstien

    post not actually posting

    ok i read the one variable but i don't seem to be able to read the second variable. echo $_POST['txtText']; echo '<br />'; echo $_POST['txtHeading']; echo '<br />'; returns the txtText but not txtHeading can you tell me what i'm doing wrong? thanx
  5. frankienstien

    post not actually posting

    I'm trying to get this page to insert data into a mysql table but after hitting the submit button the data is not being submitted to the database. i'm not sure what is happening. i know the fields are coming back empty but i don't know why. any hints as why this is not working correctly? thank...
  6. frankienstien

    Missing Parameter Error

    thanx for your help. this is what i discovered. Dim rdReport As New ReportDocument rdReport.Load("C:\Cash\Reports\New\" & reportListBox.GetItemText(ReportListBox.SelectedItem) & ".rpt") rdReport.SetParameterValue("StartDate", Now.Date) rdReport.SetParameterValue("EndDate", Now.Date)...
  7. frankienstien

    Missing Parameter Error

    sorry i didn't explain very well. there is no subreport. it is just a simple report that needs to know the starting date and ending date to retrieve information from the database. if i use the report viewer i will get the prompts to enter the info. if i try to print the report directly to the...
  8. frankienstien

    Missing Parameter Error

    I am trying to get crystal XI to print a selected report when the user clicks on the report. but everytime i do that i receive the error missing parameter. i have two parameters that are used in the data selection expert {@TransactionDate} in {?StartDate} to {?EndDate} i have just turned off the...

Part and Inventory Search

Back
Top