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!

Recent content by ToddR

  1. ToddR

    Newbie - help me get away from M$!

    How do I: 1) Launch a script in the .gnome-desktop folder when it's double clicked instead of prompting with a dialog box? 2) Add a program to the menu? I'm trying to sell my boss on using Redhat 7.2 with OpenOffice 1.0 for some workstations, but I need to have the desktop icon and...
  2. ToddR

    SQLBase version 6.x

    We have SQLBase as the backend for a prepackaged app - as such, we don't have all the SQLBase documentation. I downloaded the dba guide off the Gupta site, but was wondering if anyone had the dba guide for version 6.x (current is 7). Thanks in advance
  3. ToddR

    Need cross browser help

    I've done a lot of intranet development for IE browsers and am trying to port some of the stuff to work on other browsers. Can someone help me? Here's an example of something I can do in IE, but don't know how to do in Netscape. I have the following (simplified) style sheet: <style...
  4. ToddR

    Help me with terminology

    I'm new to Domino. My background is in relational databases and the terminology used by Domino has been a bit confusing. Is a document equivilant to a record? In other words, in a domino &quot;database&quot;, information about a customer (Name, address, phone) is considered a document. The...
  5. ToddR

    windows NTFS security and netscape

    What security settings are you using? If you are using Integrated Windows Authentication, Netscape will not be able to connect. If you are using Digest, most recent versions of Netscape should work. With Basic, everything should work (though it is not secure unless you use SSL).
  6. ToddR

    newbie web design

    There's more than one way to skin a . . . website. There are numerous books on building sites - check out your local library. A great way to figure it out is to find a site on the net that you like and copy it. If you need help with specifics or want to bounce some ideas around, let me know -...
  7. ToddR

    ASP pages on website won't come up!!

    Sounds like a non terminating loop. I agree you need to post the code, or got through it again - potential problem areas are any objects that you are instantiating and any loops (for, do, etc).
  8. ToddR

    windows NTFS security and netscape

    If you mean that you're using NT Challenge and Response, you can give up. Netscape will not send the user info to IIS. Are you using NT challenge only or are you using Basic as well? I believe that you need to enable Basic authentication, after which non-MS users will be prompted for a user...
  9. ToddR

    How do you provide &quot;update your link&quot; page?

    How do you send the user to a page that displays for a few seconds, then reloads to a different page? These are popular for &quot;This page has moved - update your links&quot; type messages. Any info (and preferably code examples) are appreciated Thanks
  10. ToddR

    Load comma delimited string to worksheet

    I would like to pass a comma delimited string to a VB function that opens an Excel Application, adds a workbook, then loads a worksheet using the string as data. I would then save the worksheet in .xls format. Any ideas on the best way to get the comma delimited fields into the spreadsheet...
  11. ToddR

    Link to Users Home Page

    Actually, I just figured it out (IE specific): function UserHome() { window.location=&quot;about:home&quot; } Thanks to http://www.dynamicdrive.com/ for the answer
  12. ToddR

    Link to Users Home Page

    Is there a way to provide a link to the users default home page?
  13. ToddR

    Cursor question

    I figured it out. In case you're reading this because you are also new to Java, try this: JButton j = new JButton(&quot;Press me&quot;); j.setCursor(Cursor.setPredefinedCursor(Cursor.HAND_CURSOR));
  14. ToddR

    Cursor question

    I am brand spankin' new to Java. Trying to set a cursor but having no luck. import javax.swing.*; import java.awt.*; JButton j = new JButton(&quot;Press me&quot;); j.setCursor(HAND_CURSOR); Also tried: JButton j = new JButton(&quot;Hi&quot;); Cursor...
  15. ToddR

    Update disconnect RS from Linked Server

    I am pulling a disconnected recordset from a linked server using ADO 2.5. I have the following config: Cursor Location: client side Cursor Type: KeySet LockType: BatchOptimistic I'm using the oledb provider against a linked SQL7.0 server (wait, on second thought it's an MSDE db). When I...

Part and Inventory Search

Back
Top