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

    DoCmd.GoToRecord , , acNewRec seems to be replacing records in table

    I'm not an Access Developer, but I've been asked to figure out what the problem is with our little homegrown Access app. When a user clicks on a button to add a person to a table, it looks as if the existing record in the table is getting updated, instead of appending the record to the table...
  2. drdexter33

    Version control for Microsoft Access development

    I recently saw this post that shows a script that is supposed to decompose a MS Access application into its constituent parts (VBA Scripts, et cetera): http://stackoverflow.com/questions/187506/how-do-you-use-version-control-with-access-development Using this article, I wrote a .vbs script...
  3. drdexter33

    Sharepoint Newbie

    Hi there.. I have a SharePoint page my boss has asked me to write. It kind of looks like I might need to develop it starting with creating a small database that has a couple of relational tables, and then binding that data to something like an ASP.Net GridView object that may have a...
  4. drdexter33

    Tool Tip Help

    Hi there, Does anyone know where I can get my hands on any tutorials regarding developing tool-tips for mouseover events? Strangely, I haven't been able to find a good one... Thanks. Doug
  5. drdexter33

    Creating an image map

    Hi there... I have a blueprint of home lots that I need to produce an image map for in asp.net 2.0 They're not square lots, in other words they're all irregular shapes. What is the best way to do this? Thanks Doug
  6. drdexter33

    Scrolling a Select object to a desired value

    Is there a way to scoll a HTML SELECT Object using JavaScript? <select id="cboNames" multiple="true" class="cboMultiple" style="width: 197px; height: 250px"> </select> I am using the cboNames.options.selectedIndex property but it isn't working. thanks. doug
  7. drdexter33

    Tutorials on Creating XML with JavaScript

    I've been Googling this morning for a tutorial on creating XML in JavaScript on the client-side using either MSXML.DOMDocument or Microsoft.XMLDOM without much success. Anyone know where I can find one? Thanks! Doug
  8. drdexter33

    getElementById

    Say i have a table, and I get a reference to it like this: -------------------------------------------------------- var table = document.getElementById('table'); -------------------------------------------------------- And then say I have a row and I get a reference to it like this...
  9. drdexter33

    accessing DOM HTML Elements in a dynamically built table.

    I have a question: Say I am building an HTML table, and as an example, I'll use this sample taken from the Mozilla Developer Center website: START CODE *********************************************************** <head> <title>Sample code - Traversing an HTML Table with JavaScript and DOM...
  10. drdexter33

    Using Javascript in XSL

    I need to pass a value from my XSL file to a JavaScript function and can't quite figure it out. Example: -------------------------------------------------------------- <xsl:for-each select="NewDataSet/Cases"> <tr> //CELL ONE <td> <xsl:value-of select="ViewDetails" /> <a...
  11. drdexter33

    Finding a checkbox control in a table

    Hello. who can tell me how to interate through an HTML table and find a checkbox control? Here's what I have so far: for(var i=1;i<document.all.htmlTable.rows.length;i++) { for(var j=0;j<document.all.htmlTable.rows[i].cells.length;j++) { } } The checkbox is always in cell[0]...

Part and Inventory Search

Back
Top