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. KellyHero

    Iframe and positioning

    I have a Flash movie that I want to display in a DHTML layer and to position it at the top center of the page. Like so: <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0" ID=logo WIDTH=450 HEIGHT=241...
  2. KellyHero

    How do I escape apostrophes in textareas?

    Hi again: I ran a test for this error by creating a new record containing apostrophes in the text. Then I checked the db and the &quot;\&quot;s are not showing up. I then pulled the new record up for editing and the &quot;\&quot;s did not show up there either. I guess the problem was created by...
  3. KellyHero

    How do I escape apostrophes in textareas?

    Sorry, I didn't make it very clear what's happening. When I look at the data in the SQL database, there is an &quot;\&quot; in front of every apostrophe. For example, if the text contains the word chef's, it looks like chef\'s in the database. When the text is retrieved from the db into the form...
  4. KellyHero

    How do I escape apostrophes in textareas?

    Hi all: I recently converted an Access db to an SQL db and now I'm getting the following errors when trying to update a record: Microsoft OLE DB Provider for ODBC Drivers error '80040e14' [MySQL][ODBC 3.51 Driver][mysqld-4.0.13-nt]You have an error in your SQL syntax. Check the manual that...
  5. KellyHero

    Pulling Results from Two Fields

    Worked perfectly! Thank you!
  6. KellyHero

    Pulling Results from Two Fields

    Hi all: I need some assistance please. I'm developing an ASP search page for a website and I'm having problems writing an SQL query statement that returns the results accurately. Here is what I currently have: MSQL = &quot;SELECT * FROM properties WHERE act = 'Active' &quot; If Not...
  7. KellyHero

    How To Select a Random Item From a Recordset?

    Ahhhhhhh...now I see what you were doing! Thanks for clearing that up. And thanks for clearing up the issue with the CursorType. I will give the NewID method a try and get back to you.
  8. KellyHero

    How To Select a Random Item From a Recordset?

    OK, I checked out Tarwn's solution and I think it's a bit much for what I need. I only want to select one record at random at a time. I found this code that I think will do what I am trying to do: dim intRandomNumber,intTotalRecords,i intTotalRecords = recordset.RecordCount Randomize()...
  9. KellyHero

    How To Select a Random Item From a Recordset?

    Hi, I am building a real estate rentals website and would like to have a &quot;Featured Property&quot; on the homepage which would be a single record pulled at random from the properties table in the database so that each time someone visits the page, a different property is displayed. Any...
  10. KellyHero

    Fatal error: Call to undefined function

    Thanks for your help.
  11. KellyHero

    Fatal error: Call to undefined function

    Hi all: I am getting the following error: Fatal error: Call to undefined function: curl_init() in c:\users\xxxxxxxxxxxxxx\weather\current_weather.php on line 20 (xxxxxxxxx is my domain name) Here is the code from current_weather.php that it refers to: $ch = curl_init(); curl_setopt ($ch...
  12. KellyHero

    Popup windows and Frames

    I have a client who has an online store, which was developed in frames (not by my choice - I hate frames!). What we would like to do is advertise a new product in a popup window that opens automatically from the frames page. Once the user clicks an &quot;Order&quot; button or link in the popup...
  13. KellyHero

    How should I create this Recordset? - URGENT!

    Thanks for the help Chopstick! That was ONE of the problems! I also created a sub routine for the second SQL statement and called it where needed. Works like a charm! Well, almost...now I realize that when someone bids on an item, a new row is added to the bids table instead of updating the...

Part and Inventory Search

Back
Top