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

    I suppose the simplest way to explain it would be that we want to develop a small app in SharePoint to allow CRUDL functionality to a list of company wide applications, servers, OS's etc. I'd ideally do this in ASP.Net but I think management wants it in a portal type environment like SharePoint...
  4. 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...
  5. 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
  6. 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
  7. 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
  8. 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
  9. drdexter33

    getElementById

    Thanks all! Doug
  10. 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...
  11. drdexter33

    accessing DOM HTML Elements in a dynamically built table.

    yes.. thanks everyone.. my javascript skills are a little wanting... learned some new things today.. Mainly: Use a DOM explorer to see source code... www.dubbledam.com http://www.microsoft.com/downloads/details.aspx?FamilyID=e59c3964-672d-4511-bb3e-2d5e1db91038&DisplayLang=en Thanks...
  12. drdexter33

    accessing DOM HTML Elements in a dynamically built table.

    Hi Dan. Thanks for your reply. Well, shouldn't the HTML code, written by the start() function, be visible when I right click(in IE6)and select View Source? Thanks again! Doug
  13. 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...
  14. drdexter33

    Using Javascript in XSL

    Hey everyone. Thanks for your replies I probably should've prefaced what I was attempting to do in my original post. What I am attempting to do is utilize the ClientCallback functionality in the ASP.Net 2.0 framework to minimize postbacks. In doing this, of course there is the idea of...
  15. 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...
  16. 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]...
  17. drdexter33

    Configuration problem!

    This solution worked for me, however, what effect does turing off the Indexing Services have? Thanks

Part and Inventory Search

Back
Top