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 SkipVought 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: ToddR
  • Order by date
  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...
  16. ToddR

    Update disconnected 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...
  17. ToddR

    I don't know how to use the single and two dimensional arrays

    Is this for a class or an actual business? Whether you use a udt or array will probably depend on the types of data you're passing. Tell me again, your inputs are a part number (integer? long?) and a Brand (string?). Not sure I understand what info you are getting from the user, but with...
  18. ToddR

    Basic VBA Help - Looping &amp; Calling

    Three things: 1) Nice work for a beginner 2) You are calling ReadData with three parameters, but the function takes 4. Try calling ReadData as: ReadData(strName, dHits, dAtBats, dAverage(dHits, dAtaBats)) 3) If this is a simple text file, you'll probably have a much easier time using the...
  19. ToddR

    Can maxLength be set in , Inputbox ?

    You could also test the return value, and if it exceeds 3 characters, throw the inputbox back up with a more descriptive message, ie &quot;Please enter a numeric value of up to 3 digits&quot; Just a thought
  20. ToddR

    TotalSpace code modification

    Though it's not really consistant with the rest of your code, the FileSystemObject exposes a Drive object that has a TotalSize Property. If you decide to go this route instead of using API's, you'll also find the FreeSpace property useful. If you have any questions on using the...

Part and Inventory Search

Back
Top