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

    Trying to add whitespace

    I created a User Control which constructs a dropdown control dynamically. I'm trying to add whitespace between 2 parts of each entry as follows: OperatorSelect.Items.Add(New ListItem(Value1 & "    " & Value2, Value3)) This gets interpreted so that "  &quot...
  2. robulator

    Object Disposal Problem

    In my code I have several objects that need a connection to SQL Server. So I have a Connection object that creates a shared connection when instantiated. Each page creates one of these objects which opens the connection. When the other objects create one of these connection objects, the...
  3. robulator

    CSS and Printing Problem

    I have a web page, most of which doesn't use CSS. But I have one portion which is a grid with a plotted point. I use CSS to plot the point. It looks great when displayed in the browser (IE or Netscape), but when I print it, the point prints in the wrong place. It seems that style.top and...
  4. robulator

    ORDER BY Multiple Columns

    I have a program that constructs a query based on user input that includes several datetime fields (this in SQL Server). I would like to sort the results based on the most recent date of all of the date fields (some of the entries may be Null). You can only use one field in the Max function so...
  5. robulator

    Element Positions w/o CSS Positioning

    Is there a way to determine the position of an element that isn't positioned using CSS? getElementById.style.position only works if you have set the position of the element using a style sheet. This only needs to work in version 5+ browsers. Thanks in advance, Rob
  6. robulator

    Blinking Tooltips

    I constructed a web page that behaves fine and every machine I've viewed it on, except for one which is running IE 6. On that one machine, the tooltips that I placed on the page (using the TITLE attribute) blink repeatedly on and off so that you can't read them. Does anyone know if there is...
  7. robulator

    ORDER BY Prevents Updateable Query

    It seems that when I open a recordset where the query (SELECT statement) contains an ORDER BY clause, the resulting recodset is not updatable regardless of how I try to set CurserType and LockType. Does anyone know a way around this? Thanks, Rob
  8. robulator

    Problem with Netscape 6 Events

    I'm using Netscape 6.1 and it seems that the onMouseOver and onMouseOut events for a <SPAN> tag don't fire. Does anyone have any insite into this? Thanks, Rob
  9. robulator

    Can't Install IIS

    I'm trying to install IIS in Windows XP Professional. Shortly after the installation begins, I get a message indicating that a file named admxprox.dll cannot be located. It can't even located it on the Windows installation disk. I've searched for it and can't find it. Any suggestions out...
  10. robulator

    Dump MSN Explorer

    I am very new to XP having just installed it last night. I really don't like MSN Explorer and prefer to use just IE, but MSN Explorer is the default browser and it comes up no matter what. Anyone know how to set IE as the default and be rid of MSN Explorer forever? Thanks, Rob
  11. robulator

    How to get SELECT value with getElementById

    I'm trying to extract the selected value from a SELECT element using getElementById() so that it will be compatible with IE and NS 6. It works fine in NS 6, but not in IE 5.5. No value is returned in IE. Does anyone know if it can be made to work in both browsers? By the way...
  12. robulator

    Trying To Prevent Line Wrap

    I'm trying to display some text that I don't want to wrap to the next line, regardless of the size of the browser window. This line is not in a table. Is there a CSS solution? Robopino
  13. robulator

    Problem with #include and Homesite

    I'm trying to #include a file into an ASP page. When I view the page with Homesite, the included text is not there, but when I view it with IE externally, it is visible. Does Homesite need to be configured to #include files? Any suggestions would be appreciated. Rob
  14. robulator

    #include Not Working

    I'm trying to #include a file into an ASP page. When I view it in Homesite, the file does not appear to be included, but when I view the page through an external browser, it is there. Is there something that must be configured in Homesite before it will include a file? Any suggestions would...
  15. robulator

    Can't &lt;LINK&gt; a CSS file

    I'm trying to use the LINK tag to link a CSS file to an HTML page, but it doesn't work. The tag, which is within the HEAD element, is: <LINK REL=&quot;stylesheet&quot; TYPE=&quot;text/css&quot; HREF=&quot;Styles.css&quot;> and Styles.css consists of: <STYLE> .Caption {color: White...
  16. robulator

    Can't Copy a DBF

    I have a large DBF with a large associated DBT. I would like to do a COPY TO so I can shrink the DBT, but whenever I do it the resulting DBT becomes so big that it consumes my hard drive. Obviously abnormal. I've tried it in dBase III +, dBase 4 and with Clipper. Same thing. I can access...
  17. robulator

    DBT File Too Large

    I have a DBT file that is approaching 32 meg and the Clipper application that accesses it is starting to go bonkers. I've tried doing a COPY TO, but I get only minimal reduction in the DBT. There are many records in the DBF that have been deleted and packed over the years. Is there a utility...
  18. robulator

    ADO AddNew not working

    I'm trying to add a new record to a database using the AddNew method of a recordset within an asp page. The browser error message that I get says &quot;Object or provider is not capable of performing requested operation.&quot; I can establish a connection with the database (I've tried both...
  19. robulator

    Can I Really Export an Access Form to ASP?

    THe MS Access 2000 Developer's Guide says that you can export a form to an ASP page. But when I try it with the simplest forms, it doesn't work as advertised. What does this mean for more complex forms with VBA behind them? Any thoughts would be appreciated. Rob

Part and Inventory Search

Back
Top