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 Mike Lewis 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: BFP
  • Order by date
  1. BFP

    Form to XML Output PHP snippet

    Thanks southbeach! Those two pages saved my butt. Thank the PHP5 gods for coming up with something so nice to pull this off with ease. Regards, BFP
  2. BFP

    Form to XML Output PHP snippet

    Hi all. I have a very basic question: how can I take the values in a PHP/HTML form and export them to XML? For example, suppose I have index.php, which is a job submission form as follows: <form id="jobSubmit" name="jobSubmit" method="post" action=""> <label>Title <input type="text"...
  3. BFP

    Pulling data from a MS SQL Server dB into an HTML form?

    Vacunita, Thank you very much for your detailed response! This was exactly what I needed to get started. Regards, BFP
  4. BFP

    Pulling data from a MS SQL Server dB into an HTML form?

    Hi. I am using a CMS-based website that was built on top of Apache, MySQL, and PHP (i.e. Drupal) and I would like to build a bunch of form-based pages that integrate with a pre-existing Microsoft SQL Server database that contains customer data. Thus, a typical scenario might be as follows...
  5. BFP

    Language translator tool supporting HTML

    Hi all. I have a help system developed in HTML and a new requirement has been added to support French as well as English. I have been using Dreamweaver, so an add-on would be ideal. Most of the tools I have seen so far can open an HTML file, but the translation is to text, which doesn't do me...
  6. BFP

    Tool tip definition populated from glossary file

    Thanks Dan Don't know the first thing about AJAX, or how to "do this server-side before the page is delivered" but I'll give it a shot. Has anyone ever done a study to find out how many people turn off JavaScript (especially IT departments for large corporations)? Thanks, BFP
  7. BFP

    Tool tip definition populated from glossary file

    Hi all. Total hack here creating a HTML-based help system for an HTML-based tool that has hundreds of screens with similar fields (e.g. "Company Name"). Since there are so many fields that are repeated throughout the tool, I wanted to create a single glossary file with a name anchor for each...
  8. BFP

    Can not seem to override a:link behavior in CSS for a given div

    Hi All. I have a footer in my site <div id="footer"> I have set up an a:link style that just happens to almost exactly match my background image, so I attempt to override it using two techniques #footer a:link {color:fff;} or a.footer-link:link {color:fff;} with the appropriate...
  9. BFP

    Basic Update Query Question

    Yes and this started out as an Inner Join because I wanted to update Master.IMD_OWNER with new values (once, then run the query every time the dB is opened), but I take it that an Inner Join can not be done on a table that is linked? The new query creates an empty table, so I updated the...
  10. BFP

    Basic Update Query Question

    Hi PH. This is definitely closer as the error is gone now, but the behavior I am seeing is that the update query creates a new table with one column and populates it with the values already set in "IMD_Owner". The only thing I can think is that Master.FILE_NAME has a data type of "Memo". I...
  11. BFP

    Basic Update Query Question

    Hi.. Two issues remain: 1) I am now getting a message "Cannot join on Memo, OLE, or Hyperlink Object..." The data in the table Master is dumped to every night via a link to it from another dB. 2) I originally wanted to include a restriction that the update query only be run on data dumped...
  12. BFP

    Basic Update Query Question

    Hi. This did not quite work correctly as the query is prompting for X.FILE_NAME and M.FILE_NAME. FILE_NAME has a text range of 00001300.html to 00002000.html. The tables are organized as follows: Table1: Master Column 1: FILE_NAME (with range listed above) Column 4: COMMENT_DATE with format...
  13. BFP

    Basic Update Query Question

    Hi All. Our database is updated every night with new data. One of the columns in the main table that is updated nightly is called FileName and another is Date (in the format [MM/DD/YYYY HH:MM:SS AM/PM]). I would like to be able to automatically populate another column called Owner (Not part...
  14. BFP

    Automatic data assignment when dB opened

    Hi All. Our database is updated every night with new data. One of the columns in the main table that is updated nightly is called FileName. I would like to be able to automatically populate another column called Owner (Not part of data dump) based on the FileName, where Owners are assigned to...
  15. BFP

    Regular Expression to find the start and end of a javadoc comment?

    Hi. Is it possible to use a regular expression (in TextPad) to find the following? /** * Some comment * ... */ public foo(foo); That is, I want to start finding the "/**", then "*/", then ";" Is this possible with a single regular expression? Thanks in Advanced...
  16. BFP

    Update query for total occurrences of a string

    That did the trick...in fact I only needed the update query. Thanks PH.
  17. BFP

    Update query for total occurrences of a string

    Hi All. My main dB table is based on a linked Excel spreadsheet. In the table, I have a column called FILE_NAME that contains a web page file name. Each file has one or more unique IDs that identify a comment. I also have a column called "# Coms". I would like to 1) Calculate the number of...
  18. BFP

    Best event or method to make a label invisible after a short time?

    That did it...thanks. Here is the implementation: Private Sub Form_Timer() With Me.lblStatus .Visible = False End With End Sub Private Sub checkStatus(recordCount) If Me.CurrentRecord = 0 Then ... lblStatus.Visible = True Me.TimerInterval = 5000...
  19. BFP

    Listen for right-click event

    Thanks! Me.filteron in the on current event worked like a charm and saved me a few lines of code to boot. BFP
  20. BFP

    What's up with the details section?

    Thanks...having written some Visual Basic apps, it is sometimes difficult getting used to the quirky behavior of VBA (after getting used to the quirky behavior of VB) :)

Part and Inventory Search

Back
Top