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 Chriss 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. HowdeeDoodee

    VBA Word: Need to find, select, and tag groups of blue words

    I have a library of e-documents I need to convert to another format. In each of the documents I have words in blue font. The groups of blue words can be any length, from 1 word up to 100 words or more. I need a way to loop a vba word macro so the macro selects the groups of blue words and puts a...
  2. HowdeeDoodee

    How to make recorded macros in Word STOP

    OK, after much experimentation I need help on making this modified recorded macro stop executing when the macro reaches the bottom of the Word file. Currently, the macro runs continuously without stopping. Thank you in advance for any replies. Sub FindSpaceDashSpace2Bold() ' '...
  3. HowdeeDoodee

    How to make recorded macros in Word loop

    I want to make the following MS Word macros loop and stop at either the top of the file or the bottom of the file. Thank you in advance for your replies. ----------------------------------- Macro 1 ' 'This macro does not stop when the bottom of file is reached. I want this macro to stop...
  4. HowdeeDoodee

    How can I iterate using a For loop in an onclick event?

    How can I iterate through the variables below and display only one sentence on the screen at a time, using a button onclick event to trigger the display of the sentence. As the code is written now, all four sentences display on the screen at one time and there is no button. Thank you in advance...
  5. HowdeeDoodee

    Can you debug this LOCATE statement?

    I am getting a MySql syntax error message when this statement is used. I cannot find the error. The statement is searching for two parts of a text string with the first part of the string ending with a colon and the second part of the string containing a dash. The field name is References...
  6. HowdeeDoodee

    Need freeware php script to add, delete, edit, etc MySql db

    I have been trying to us phpAdmin to browse, add, delete, edit, and view records and I can't take it anymore!!! I need something more functional that displays the records in table or spreadsheet format. I am poor so I need some good freeware. Any helpful input would be appreciated.
  7. HowdeeDoodee

    Need select statement to search 1 to 5 conditions with 5 sub condt

    I need to build a select statement to search one to five conditions and each of those one to five conditions has 5 sub conditions. I have been playing with the script but unless all five strings in the SELECT statement are full I get an error message about the empty strings when less than five...
  8. HowdeeDoodee

    File Name Hell!!!!! Need Input

    Totally blown away by the following problem. I have a php file named TestFile4. This file or script works when uploaded. However, when I change the file name to TestFile4_1 or TestFile5 or some other name, even names different than TestFile4, I get error messages from MySql or from php. Here...
  9. HowdeeDoodee

    How do I combine onclick drop down event and check box value

    I am using the following code which works fine. <select name="values" onChange="if(this.options[this.selectedIndex].value) window.location.href=this.options[this.selectedIndex].value;"> <option>FIND TOPICS STARTING WITH "A"</option> <option...
  10. HowdeeDoodee

    How Do I Pass More Than One Value With Drop Down Box?

    I need to pass more than one value from within a drop down box. The following code is not working because the first option value statement is not correct. How do I pass three values at one time when only one option is selected by the user? <form action=""> <br> What source do you want to...
  11. HowdeeDoodee

    [HTML] Need to combine on-click drop down and check boxes

    I need to combine the input from checkboxes with a hyperlink embedded in an on-click drop down box. At the present time I do not have any checkboxes in my htlm drop down code. This means the user only goes to the following link based upon what is in the link below. However, I do not want this...
  12. HowdeeDoodee

    Change one lowercase letter to an UPPERCASE in MySql

    I have a MySql table and I need to change all lowercase letters preceded by a left parens to uppercase in one field. I want to change (cATS) to (CATS), (dOGS) to (DOGS), and so on in this one field. The following REPLACE query does not do the job. UPDATE `TableTest` SET `Sub2` = REPLACE...
  13. HowdeeDoodee

    Can you mass replace characters with mySql?

    I want to mass replace three htlm character sets in one field in all records in my db. The field name is Subtopic and the db name is ViewTest. I want to replace <br><br><br> with <br><br> in all records. Is there a way to to this?
  14. HowdeeDoodee

    Need php search script to search MySql database

    I've been trying to find a search script that would give my users AND OR NOT search capability. Do any of you know of a source on the web where I can find a php search script to search a MySql database? Thank you in advance.
  15. HowdeeDoodee

    How Do I Append A SELECT Statement With AND/OR Variables?

    I need to append my SELECT statement with checkbox value combinations. The user can select one or all of the six checkboxes. The checkbox values do not appear in the db at the same time so I would want the SELECT statement to pull up different values separated by the OR operator not the AND...
  16. HowdeeDoodee

    How Do I Add Constant Values To Pagination Script?

    Here is a pagination script that works great with only one input variable sent to the script via a form. However, I now have more input variables being sent to the form. The script grabs all the new input variables one time and the script runs fine on page one. The problem is the new input...
  17. HowdeeDoodee

    Display indents and paragraphs within MySql db

    I want to display an outline with indentations and with paragraphs below some of the outline headings. I have the file set up in Word and can convert to Excel and then to a csv file to be transfered into MySql. Paragraph marks in a csv file indicate a new record which I do not want. I want...
  18. HowdeeDoodee

    Is There A Way To Store Results Page Contents To Clipboard?

    Is there a way I can put a hyperlink or button in every cell in a column on a pagination results page so the user can click on the hyperlink or button and store the contents of the cell to the clipboard? Clicking on the button or hyperlink would have the same effect as selecting and copying the...
  19. HowdeeDoodee

    Passing Large Number Of Variables, Is This Possible?

    This is my first post. I have a number of spreadsheets in Excell I will be converting to csv to then input into a MySql db using phpMyAdmin. Every record in the MySql db has a field called References with index names and numbers. Some records in the db have over sixty of these index names and...

Part and Inventory Search

Back
Top