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!

Search results for query: *

  • Users: mk2lee1
  • Content: Threads
  • Order by date
  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!!

    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...
  11. mk2lee1

    having two drop down list.. related to each other

    Hi, I have this form called School based on table called School. And within this form I would like to have two drop down list. One for the region and one for the school name. These are the fields from the school table. What I need to do is by selecting the region, I would like the schoolName...
  12. mk2lee1

    need help on gettin the sql query in access. Plz Help~~

    Hi, I have this table called school, participation, and answer registration. currently i have this qry ================================================== SELECT [school].[schoolname], sum([participation].[numberofstudents]) AS totalStudent, sum([answerRegistration].[#Folders]) AS totalfolders...
  13. mk2lee1

    getting qry in 1 to many relationship..!!! Help Please~~

    Hi, I have this table called school, participation, and answer registration. currently i have this qry ================================================== SELECT [school].[schoolname], sum([participation].[numberofstudents]) AS totalStudent, sum([answerRegistration].[#Folders]) AS totalfolders...
  14. mk2lee1

    Hi, I have two forms. School and Pa

    Hi, I have two forms. School and Participation. Within school form, there is field called note. I would like to put this note both in school and Participation form. However, I would like note in Participation form to change automatically when I change the school form (for instance, from schoolA...
  15. mk2lee1

    textbox to Drop Down List.. Please Help~~~

    Hi, I have two forms School and Presentation. It is 1 to many relationship, so 1 school can have more than 1 Presentation. Within the Presentation, there is text box for PresentationID. I would like to change it to drop down list so that all the PresentationID within 1 School shows. And Also...
  16. mk2lee1

    recordset error Please HELP!!!

    I now have changed my code this this but I get type mismatch error at Set rst = db.OpenRecordset(SQL) Any idea? ========================================== Private Sub Form_Load() Dim db As Database Dim rst As Recordset Dim i As Integer Dim SQL As String SQL = &quot;SELECT...
  17. mk2lee1

    Getting data in sql queries using visual basic in access

    Hi, I want to retrieve data that is returned by sql query that I defined in access queries in visual basic. In order to count the rows I know we use DCount() method. What method do I use to get the actual data in the queries? Please Help me on this. Thank you.
  18. mk2lee1

    About drop down list

    Hi, I have this form named school. On the heading I have drop down list that lists all the name of the schools in the table school. And within the form school is the sub form name presentation. When I changed the drop down list, all the values of the school form and presentation changes...
  19. mk2lee1

    vba code to get sql query

    Hi, I would like to make a vba code that can query sql and later use that value to do something else. For example, I would like to find out the number of values of certain table and if its more than let's say 3, I would like to send out the message. I know how to send out the message but I am...
  20. mk2lee1

    Alert Message in Access. Urgent Pls

    How do I make a alert in the acess? For example, if user forget to update certain data, it will alert such as through pop up screen, to alert the user about this event.. Please help me on this issue.. thank you

Part and Inventory Search

Back
Top