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 strongm 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. TribeMan

    Jmail error message "jmail.SMTPMail error '8000ffff' The message was undeliverable..."

    My mailing code has been working perfectly for 2 years. Last week I started getting the message: "jmail.SMTPMail error '8000ffff' The message was undeliverable. All servers failed to receive the message" I have not made any changes to my code, and the hosting company has not made any changes...
  2. TribeMan

    Insert Request.QueryString into SQL statement

    Hmmn.. I now have the code working with slightly different syntax: "WHERE listing.listing_ID =" & recordNo & " "&_ "AND country.country_ID = listing.country_ID "&_ And thanks, I'll look up SQL injection.
  3. TribeMan

    Insert Request.QueryString into SQL statement

    Having problem with inserting a numeric value returned from a URL: dim recordNo recordNo = Request.QueryString("record") Here is the relevent part of the SQL statement: "FROM listing, country, kind, condition "&_ "WHERE listing.listing_ID = recordNo "&_ "AND country.country_ID =...
  4. TribeMan

    Hyperlinking to a second PDF file bookmark

    I'm dealing with about 30 'magazines' each comprising 50 to 60 pages.
  5. TribeMan

    Hyperlinking to a second PDF file bookmark

    I can't do that... I am dealing with several large files already (some with 40 to 50 pages). That's why I want to use several (smaller) files and cross-reference them with bookmarks.
  6. TribeMan

    Hyperlinking to a second PDF file bookmark

    I have two documents created with WORD: 1) 'Document_A.doc' has hyperlink 'hyperlink_A' 2) 'Document_B.doc' has hyperlink 'hyperlink_B' and 'bookmark_B' Using WORD, I can access 'bookmark_B' by one of these methods: 1) click 'hyperlink_B' (which calls #bookmark_B) 2) click 'hyperlink_A'...
  7. TribeMan

    Can one get data from 2 ACCESS tables using WORD mailmerge?

    I have an ACCESS DB with two tables: a) personalInfo; and b) accountInfo. I want to use mailmerge (WORD 2007) to call data fields from both tables. Can this be done??
  8. TribeMan

    ASP / Jmail generating gibberish instead of Hebrew

    Found the problem... The form page had the <META> tag: <META HTTP-EQUIV="Content-Type" content="text/html; charset=windows-1255"> However, the processing page (with code as shown in my original posting) did not. I simply added the <META> tag to the above code, and voilá! Thanks anyway.
  9. TribeMan

    ASP / Jmail generating gibberish instead of Hebrew

    The code below takes form variables (lines 3-12), runs some validation routines (lines 14-48), and then uses Jmail to send a response (lines 50-81). If the user enters English in the form, then everything works fine: I receive an email in English. However, if the user enters Hebrew characters...
  10. TribeMan

    How to activate a webpage between certain dates?

    I'm looking to make a certain webpage active between 2 specific dates. For example, in my default webpage I could have some ASP code saying something like: ------------------ startDate = 12/10/2010 'I'm not sure of the format endDate = 12/25/2010 IF date is between startDate and endDate...
  11. TribeMan

    Replace selectBox with different SelectBox

    My apologies. I should have been more explicit. Basically the code works... even with the 'commented-out' tags removed. However, what I want is only ONE selectbox displayed at a time, not the 3 different select boxes in 3 different table cells of the table. I initially want the citySelect to...
  12. TribeMan

    Replace selectBox with different SelectBox

    My code begins with a citySelectBox e.g., <option value="">-- select city -- <option value="-1">[-- change country --] <option value="1">Washington <option value="2">New York <option value="3">Baltimore <option value="4">Denver etc I have a problem if user clicks [-- change country --]. What...
  13. TribeMan

    Problem with style=&quot;display:none;&quot;

    I want a hyperlink titled "change location'. On click, I want it to be replaced with a select box. My problems are: a) onclick doesn't hide the original text b) the select box appears adjacent to (not in the same place as) the original text. Any help will be appreciated. <a...
  14. TribeMan

    Populating country/city select boxes

    Oops! Left out this part of the City code: Function list_CityOptionsForCountry(ByVal SelectedID, ByVal intCountryID, ByVal intLanguageID) Dim tempRS Dim strOptions, strListItems strOptions = "" ''refresh application value? Call list_CityListsForCountry(intCountryID, intLanguageID, _...
  15. TribeMan

    Populating country/city select boxes

    I have a mySQL table with a list of countries, and a second table with a list with cities. To display the countries, I call the following code: <% Function list_CountryOptions(ByVal intSelectedCountry) Dim tempRS intSelectedCountry = Trim(intSelectedCountry) If Not...
  16. TribeMan

    Toggling 3 select boxes

    Here's the relevent HTML code: <select name="selCountry" id="selCountry"> <option value="">--Select country--</option> <option value="0">All countries</option> <%=list_CountryOptions(forumAdd_Country)%> </select> <select name="selCity" id="selCity"> <option value="">--Select...
  17. TribeMan

    Toggling 3 select boxes

    I have 3 select boxes: selCountry, selCity and selSuburb. If no selection is made in selCountry, then the remaining 2 select boxes should be inactive. If selection is made in selCountry, then selCity should be active and selSuburb inactive. If selection is made in selCountry and selCity, then...
  18. TribeMan

    Incorrect rendering in FireFox, but OK in IE7 and Chrome

    Problem solved. I simply removed the css: 'display:table-cell;' Now everything works fine in FireFox, IE7 and Chrome. BTW, I used FireBug to de-bug this one.
  19. TribeMan

    Incorrect rendering in FireFox, but OK in IE7 and Chrome

    From a new kid on the block... I have the code below which renders perfectly in Chrome and IE7, but looks ghastly in FireFox. Can anyone either tell me what I'm doing wrong, or else point me to a site that shows such incompatibility issues. Thanks ===================== <style>...
  20. TribeMan

    dynamic arrows on menu accordion

    Thanks! You just made my day!

Part and Inventory Search

Back
Top