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 dencom 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: mikemedia
  • Content: Threads
  • Order by date
  1. mikemedia

    list menu to change text field

    I've done it before, but now I'm bumbling. Need to change text field based on option selected in list menu. What have I done wrong? Please, need quick answer! <script language="JavaScript" type="text/javascript"> function whichTest() { if(document.getElementById('rank').option.selected.value =...
  2. mikemedia

    Alternate to Visual Calendar Extension

    I’ve recently purchased the Dreamweaver Extension, Visual Calendar http://www.topdreamweaverextensions.com/dreamweaver-visual-calendar After employing it in my website, I was informed by my SysAdmin that PHP was not permitted on the server. I particularly need a simple UI for user...
  3. mikemedia

    JavaScript function to post form... And more

    Real basic multiple choice quiz in a <form> I have a button: type="button" which works well calling my function sumScore() and filling results into text fields. I also have the standard form "submit" button for the <form method="post" action="doscore.asp"> I want to combine the two into one...
  4. mikemedia

    Recordset NavBar VBscript error

    My application works. However, upon placing the Dreamweaver MX 2004 Recordset NavBar on the page I get the error below. There is no instance of JavaScript in the code. Line 5 (the first program line) references the database object: var objRS_total = objRS.RecordCount; Thank you for your...
  5. mikemedia

    setting properties of Response.Write objRS()

    I've done this in javaScript: Change text color based on value e.g., if (parseFloat(document.getElementById(f_delta_1st).value) > 0){ document.getElementById(f_delta_1st).style.color="green"; } ======== Now my ASP is reading these "number" datatypes and I would like to color them red or...
  6. mikemedia

    Must values be in a text field to be written to dbase?

    My form data is saved to a database. Within the form is a table. A named table cell <td> contains a JS document.write of today's date which is to be the time stamp. Unfortunately I now realize that the contents of even 'named' cells aren't written to the dbase. So I'm making a readonly text...
  7. mikemedia

    text field's initial value is a variable

    My form data is saved to a database. Within the form is a table. A named table cell <td> contains a JS document.write of today's date which is to be the time stamp. Unfortunately I now realize that the contents of even 'named' cells aren't written to the dbase. So I'm making a readonly text...
  8. mikemedia

    Placement of script with HTML

    I've got vbScript between the <head> and <body> BLAH BLAH BLAH... DIM recCount 'objRS.MoveLast 'IF Not objRS.EOF THEN recCount = 0 'Do UNTIL objRS.EOF if objRS.RecordCount>0 then Then within numerous <td>'s I have: <td><% Response.Write "f_req_1st = " & objRS("f_req_1st") %></td> <% I've...
  9. mikemedia

    Placement of ASP into HTML tag

    A friend of mine created a do write.asp file to display recorded mdb data. Unforunately for me it's straight ASP without any html tag formatting except for <br>. Conceptually I want to have his lines such as: Response.Write "DateTime = " & objRS("DateTime")&"<br>" placed into specified cells...
  10. mikemedia

    Entering ASPcommands into the format of HTML

    A friend of mine created a do write.asp file to display recorded mdb data. Unforunately for me it's straight ASP without any html tag formatting except for <br>. Conceptually I want to have his lines such as: Response.Write "DateTime = " & objRS("DateTime")&"<br>" placed into specified cells...
  11. mikemedia

    Please in real BASIC terms, what's SharePoint?

    Okay, maybe not that basic. I know what document collaboration, distribution and tasks, calendars, etc. I'm read so much I'm gonna puke. I've got to report to my boss tomorow and explain it to him. He thinks we'll run down to Office Depot and buy a shrink-wrapped box for $99.95 Here's what...
  12. mikemedia

    Store, write, then read PHP variables

    Sorry for asking what be a standard question on this forum, but the forum's "Search" is down. PHP is displaying the values of variables just fine. But I need the values to stay and be available for many users and sessions. Each value must be displayed in a unique cell of a table until the...
  13. mikemedia

    Really, really new to XML

    I have read and read but I guess I'm just stoopid. How do you script your html to display your xml? That's all! Now, if you're still reading... I ultimately want to create an XForm: User fills in the blanks - clicks a button (or link) Browser display a subsequent webpage with resultant...
  14. mikemedia

    Web Gallery Horizontal Slideshow

    Photoshop CS v.8 Web Gallery / Horizontal Slideshow Result of automated script produces a slideshow that displays only the images numbered: 1(once), 5,9,3,5,9,3 repeatedly. Selection of any thumbnail other than 5, 9, or 3 does not display the large image. The metadata, description, has been...
  15. mikemedia

    Dynamic removal of SWF

    I have a short intro SWF embeded within a <div>. Once played, I want it to go away. I'm trying a javascript getElementbyID and remove, but as usual am thwarted by my poor syntax skills. var vanish = document.getElementById('intro.swf'); vanish.remove Assistance appreciated.
  16. mikemedia

    Loading a Weather Channel XML

    Am trying the SDK that The Weather Channel offers, but I can't seem to even access the URL other than in a browser. Suggestions? Here's what I've done so far within the <head>: <script type="text/javascript"> var xmlDoc = new ActiveXobject ("Microsoft.XMLDOM"); xmlDoc.async="false"...
  17. mikemedia

    Using &quot;onclick&quot; within external JS file

    I am creating a dynamic menu using CSS pseudo elements, and an external js file. My problem is creating an “onclick” event. I am using the js file in order to keep my menu independent of individual pages, thus enabling me to effect any future edits site-wide. My initial attempt was...
  18. mikemedia

    A convoluted src within a src

    I'm writing a dynamic menu using an external js file. The js function begins the script. I've then used "document.write" to display the html tags. However, I cannot make an event coded within a html <div> tag exectute the js function. document.write(<'dt class="style1"...

Part and Inventory Search

Back
Top