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!

Recent content by mk2lee1

  1. mk2lee1

    URGENT!!!: submit problem

    When there is a form, clicking enter on the keyboard while in the last textbox does not activate the submit button, instead it just refreshes the page. Thank you.
  2. mk2lee1

    Writing Constructor for php class with database function

    Hi, I would like to make a class called "Game." basically I have some game table in the database with game attributes like score, team1, team2, datetime, etc. I would like to turn this into the class but I have some difficulties writing the code. 1) how can I write the constructor...
  3. mk2lee1

    Multiple Select Help

    Hi, I want to make a drop downlist so that user can select it multiple items within drop down list. How can i make it that way? this is my current html code ================= <select name=&quot;section&quot;> <option value=&quot;none&quot;>-------------</option> <option...
  4. mk2lee1

    problem with multiple submit buttons.. help me!!!!

    Hi, i have problem with my code. In my page there are session variable; session_start(); session_register(&quot;WFCounter&quot;); session_register(&quot;TCounter&quot;); session_register(&quot;EFactor&quot;); Initially they are set to 0 if(!$WFCounter) $WFCounter=0; if(!$TCounter)...
  5. mk2lee1

    Multiple submit button in 1 form problem. Help Please

    Hello, I have multiple submit button, each with unique onClick&quot;&quot; command. However, when I click one submit button, both onClick command is executed. for instant, below is pseudocode... <form...> <input..submit...onClick=&quot;Do A&quot;> <input...submit...onClick=&quot;Do...
  6. mk2lee1

    Two button onClick command within same &lt;form&gt; boundary problem.. Help!

    Hi, I have a <form> and within this form boundary I have 2 submit button. Each button have onClick commands which increases the variable(x++ and y++ respectively). Problem is when I click on one button that have onClick command of x++, when page reloads, both x++ and y++ occurs. Does both...
  7. mk2lee1

    HELP!!!! linking html to section of the page

    Hello, I have question... I would like to put an anchor within a page so that when i press the link, it will goto that section of the page... How can I do this in html page?
  8. mk2lee1

    Help! make calculation that retains its input values after calc..

    Hi, I am fairly new to php, and i want to create the website that calculates the use case point. And this is to be done like a calcuator. Please refer to nhlbisupport.com/bmi/bmicalc.htm this website (no www). when you look at this site, you input the data your height and weight, and when...
  9. mk2lee1

    Help Me..drop downlist to add new data when new data is added

    Hi, I have a form in which there is Drop down list linked to table. It source is table called location and the inputs and selection changes another table called presentation, in which field name location exist. What I would like to know is, if I can add the data into location table when there is...
  10. mk2lee1

    about opening form with sepecific data to show Help Me Plz!!

    well.. its based on table... they are all text fields.. in which data's are retrieved from table.. once you click on the button that opens the participation form... and automatically adjust data according to what school it is...
  11. mk2lee1

    about opening form with sepecific data to show Help Me Plz!!

    Hi, I have two forms called school and participation (1 to many relationship). And they are linked by participationID. becuase its one to many relationship.. when i open the school form and click the button that opens the participation form, i get listings in the participation form but its...
  12. mk2lee1

    having two drop down list.. related to each other

    hey hasu can i send my file to you.. can you look over what is wrong with it? I still couldn't figured it out. thank you
  13. mk2lee1

    having two drop down list.. related to each other

    well i tried that code.. but it makes the school combo..blank after i click on region combo do you know why? Private Sub comboRegion_AfterUpdate() Me.Combo35.RowSource = &quot;select distinct school.schoolname from school where school.region = '&quot; & Me.comboRegion & &quot;'&quot...
  14. mk2lee1

    List box value based on combo box???

    Hi, I have same problem with this... this is my code Private Sub comboRegion_AfterUpdate() Me.Combo35.RowSource = &quot;select school.schoolname from school where (((school.region)= '&quot; & [Forms]![School]![comboRegion] & &quot;'))&quot; Me.Combo35.Requery End Sub which combo region is...

Part and Inventory Search

Back
Top