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

    Multiple Rows in each "row" of datagrid

    I am trying to layout my datagrid so that the details of the record span 4 columns of the rest of the data. So I want to have: column | column | column | column span column details written out across here column | column | column | column span column details written out...
  2. JuanitaC

    Page Inheritance

    We are beginning a project to recode our application in ASP.NET, and are just trying to sort out our architecture. We have a PageTemplate class that has our interface elements, and that is inherited by our base product. This all works great, having the PageTemplate use the Control collection...
  3. JuanitaC

    Start/Stop timer

    Hello. I have a timer script that pops up a confirm box after a while to inform the user that there has not been any activity (mousemove or keypress) in quite a while and would they like to remain, or log out. That part works great. The tricky part is that some of my pages launch pop-up...
  4. JuanitaC

    fancy table borders

    My boss wants me to make some tables on a webpage that look like Windows components or Access forms... specifically, he wants the table heading overtop of the table border: Page heading here --- heading here --------------- | | | table contents in...
  5. JuanitaC

    Maximum length of string in textarea?

    Does anyone know the maximum length of string that can be put into and retrieved from an HTML textarea? My page gets a string from the database with a length of 2617 characters. When I go to save that page - without changing anything on the page, the length of string returned to the program...
  6. JuanitaC

    Regular expression question

    I have written this small regular expression, but it isn't working. I have these three characters that I use to delimit a string. Before I write the string to the screen, I want to ensure that all the delimiters are removed. I can't remove them individually, in case they appear in the string...
  7. JuanitaC

    window.opener madness

    I have been searching the this forum trying to find the solution to my problem. This thread thread216-84313 seems to be the same problem, but doesn't give a solution. To start, I am using IE 5.5 on a Windows 2000 machine. Here is the problem: I have two pop-up windows opened from another...
  8. JuanitaC

    Netscape and button size

    I have some buttons in a page with long displays on them. I want to be able to control the width of each button individually... what I have currently works for IE (style=&quot;width:x&quot;), but not for Netscape. <input type=&quot;button&quot; style=&quot;width:120px&quot; value=&quot;Load...
  9. JuanitaC

    Select Statement Help request

    Sorry for the long description, but here goes: I have four tables: Opportunity --------------------- OppID ProjectID --------------------- 1 44 2 45 Project --------------------- ProjID Title --------------------- 44 Project1 45 Project2 ProjectDealers...
  10. JuanitaC

    Recordset DTC and setSQLText

    Here is my situation: I have a recordset object that does not auto open on page load. I call the rs.open() method, and in the rs_onbeforeopen() method I set the sql for the recordset: function window_onload(){ ... rs.open() if(rs.isOpen(){ alert(rs.getCount()) } } function...
  11. JuanitaC

    Can't read XML File in ASP

    I have an XML file called test.xml in the same folder as my test.asp. The ASP file can't read the xml file for some reason when I do this (I don't get an error, just nothing prints out like it does in the second example): set xmlDoc = Server.CreateObject(&quot;Microsoft.XMLDOM&quot;) If Err<>0...
  12. JuanitaC

    Understanding triggers/cursors and select

    I am creating a trigger based on an existing trigger written by a co-worker. He declares a cursor for the trigger with this syntax: DECLARE psCursor SCROLL CURSOR FOR SELECT id FROM inserted WHERE id IN (SELECT id FROM inserted) I am confused by the syntax of the select statement. I...

Part and Inventory Search

Back
Top