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 TouchToneTommy 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 RobbMN

  1. RobbMN

    Err.Raise Custom Description Replaced w/ Default for Error Number

    I'm raising an error from a DLL and when it is caught in the invoking DLL, the Err.Source is blank, and the Err.Description is not the custom message I raised. The Description is set to the default VB description for the actual Err.Number. I'm running VB 6.0, Service Pack 6, on an XP machine...
  2. RobbMN

    Struts client-side javascript validation

    Never mind, found I was using Struts 1.2, when I should have been using Struts 1.1. 1.1 supports IE5.5, 1.2 requires IE6.0+
  3. RobbMN

    Struts client-side javascript validation

    How do you tell struts the version of Internet Explorer for which client-side validation javascript should be generated? I've an application that I want to use client-side javascript validation (based on validation.xml). Struts is generating the javascript as I require, but the code generated...
  4. RobbMN

    Can a Method determine its own name

    To Diancecht I wanted the Class and Method names to be set and available so that I might use them for logging. I did not want to have to hardcode any values. Too cumbersome and error prone when you copy code from one method to another. That way I could use common header code on all my logging...
  5. RobbMN

    Can a Method determine its own name

    Thanks, it works great.
  6. RobbMN

    Can a Method determine its own name

    I know how to determine the name of the class. Is there a way for a method to determine its own name?
  7. RobbMN

    Date Difference

    Here's a simple solution. Dim datDate1 As Date Dim datDate2 As Date Dim lngSeconds As Long datDate1 = CDate("2005/10/12") datDate1 = datDate1 + TimeSerial(13, 6, 28) datDate2 = CDate("2005/10/12") datDate2 = datDate2 + TimeSerial(13, 6, 33) lngSeconds = DateDiff("s", datDate1, datDate2)
  8. RobbMN

    Datatype XMLType in Oracle ODBC Result Set in VB6

    I'm using Oracel and XMLQuery, which returns a column of datatype "XMLType". I'm looking for a method or Project Reference that allows a VB6 app to handle this datatype.
  9. RobbMN

    style.visibility='hidden'

    and If you want to process all Divs and don't know or care what their id's are, this code is generic. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <script language=javascript> function HideAll() { var allDivs = document.getElementsByTagName("div"); for (var i = 0; i...
  10. RobbMN

    html text justified off (none)

    I want to be able to present text, exactly as it is typed. i.e. I want to turn text justification off (don't want left, center or right). Is there a tag or attribute in HTML that will permit this?
  11. RobbMN

    Accessing Web Services thru WebSeal using VB and SOAP

    I'm using Microsoft Visual Basic to access a Web Service protected by Tivoli Access Manager (WebSeal). Does anyone know the SOAP Header Connector.Property("??") settings to make a Web Services request on a server behind WebSeal (Tivoli Access Manager)? Normally when we use a URL to access a...
  12. RobbMN

    How to Access Web Services thru WebSeal using SOAP?

    Does anyone know the SOAP Header Connector.Property("??") settings to make a Web Services request to a WebLogic server behind WebSeal (Tivoli Access Manager)? Normally when we use a URL to access a WebSeal protected service (thru IE) a Username and Password prompt is presented. I want to be...
  13. RobbMN

    How to thru VB6, SOAP, WebSeal (Tivoli Access Manager) and Web Service

    Does anyone know the SOAP Header Connector.Property("??") settings to make a Web Services request to a WebLogic server behind WebSeal (Tivoli Access Manager)? Normally when we use a URL to access a WebSeal protected service (thru IE) a Username and Password prompt is presented. I want to be...
  14. RobbMN

    Web Services, SOAP and WebSeal (Tivoli Access Manager)

    Does anyone know the SOAP Header Connector.Property("??") settings to make a Web Services request to a WebLogic server behind WebSeal (Tivoli Access Manager)? Normally when we use a URL to access a WebSeal protected service (thru IE) a Username and Password prompt is presented. I want to be...
  15. RobbMN

    Welblogic 8.1 File Encoding Default

    How does Weblogic 8.1 determine the default file.encoding value at instance startup? I'm seeing "file.encoding = ISO646-US" in the log. I want to change it to ISO8859-1.

Part and Inventory Search

Back
Top