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!

Search results for query: *

  1. stephenk

    Resuming Execution from a Catch block

    Waiting, no. But I did get my alerts that someone had responded. At least we know the system works...
  2. stephenk

    RedirectFromLoginPage does not redirect

    Ive emailed the code to a mentor in the US (I am in Australia), and he is looking at the issue overnight. Maybe shed some light on it...
  3. stephenk

    RedirectFromLoginPage does not redirect

    Using <credentials> is an obviously valid method of authenticating users but defeats the purpose of having a Login Form and the ability for users to add their own account ( i.e. registration for a service ). Regardless of the fact that my solution uses an XML file to validate the user, the...
  4. stephenk

    RedirectFromLoginPage does not redirect

    Web.Config as follows: <?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?> <configuration> <system.web> <compilation defaultLanguage=&quot;c#&quot; debug=&quot;true&quot; /> <customErrors mode=&quot;RemoteOnly&quot;/> <authentication mode=&quot;Forms&quot;> <forms...
  5. stephenk

    RedirectFromLoginPage does not redirect

    I dont think there is a permissions issue. Just to clarify, I am running XP Professional as my development machine, when I run the project from within Visual Studio, things work fine. If I go to another machine on the network and direct IE to my machine (and run the same project/application), it...
  6. stephenk

    RedirectFromLoginPage does not redirect

    I am raising an issue which has been posted before but had no responses. I am trying to use Forms Authentication in its most basic form, using an XML File to authenticate users. When I run Project on my development machine, everything works fine i.e. 1. I request the UserInfo.aspx page 2. I...
  7. stephenk

    RedirectFromLoginPage Sometimes works...

    I am having problems too. The RedirectFromLoginPage works when run on my development machine, but when I test it from another location, teh RedirectFromLoginPage seems to have no effect i.e. I just stay on the login page. Did you ever work this one out? Stephen
  8. stephenk

    Multiple References with the Same Name

    I want to add a reference to both the Microsoft Word 9.0 Object Library and the Microsoft Word 10.0 Object Library. When I try to add the second reference I am informed that I must remove the 'Word' reference before I can add the new one i.e. they have the same name. How can I add a reference...
  9. stephenk

    Resuming Execution from a Catch block

    In VB6, you could handle specific exceptions and then resume at the line of code that caused the problem to 'try again'. In VB.net, I cannot see how this might be possible in a Try...Catch routine If I can trap a specific exception that I know how to resolve, how can I return (resume) to the...
  10. stephenk

    Access XML via ODBC/OLEDB

    This post has also been made in the ODBC forum: Is it possible to access XML Data via ODBC or OLEDB. I dont want to convert it to any other format, nor do I want to write it away to a database. e.g. Is there a ODBC XML Driver of sorts (preferably Free!).
  11. stephenk

    Access XML via ODBC/OLEDB

    This post has also been made in XML and OLE DB Forums: Is it possible to access XML Data via ODBC or OLEDB. I dont want to convert it to any other format, nor do I want to write it away to a database. e.g. Is there a ODBC XML Driver of sorts (preferably Free!).
  12. stephenk

    XSLT for unknown Element Names

    Like I said - so close, yet so far! Thanks for your effort. It's amazing how easy things are when someone knows what they are doing!
  13. stephenk

    XSLT for unknown Element Names

    I use XMLSpy but when it pasted, there appears to be an additional ';' at the end of the namespave closing tag. Being my first attempt at transforming, I am not aware of why or why not this works except that i created the XML and the XSLT using this software. Regardless of the XSLT above, is...
  14. stephenk

    XSLT for unknown Element Names

    In my latest XSLT incarnation I have found node() to be somewhat apprppriate. As it goes: <?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?> <xsl:stylesheet version=&quot;1.0&quot; xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot;> <xsl:output method=&quot;text&quot;/>...
  15. stephenk

    XSLT for unknown Element Names

    I want to transform an XML document into RTF. The RTF side is no problem, but the XML document varies constantly in respect of the element names. For example: <REQUEST> <REQUEST_DETAIL> <REQ_TYPE>P</REQ_TYPE> <DOC_NAME>TEST</DOC_NAME> <DOC_PATH>C:\PRINTDOC\TEST.DOC</DOC_PATH>...
  16. stephenk

    Duplicate Values in DataCombo

    I am using a DataCombo (DropDownList & ExtendedMatching)which is populated via an ADO Data Control. When the form loads, there are three values to choose from in the list e.g. A, B & C. If I select B (or Type B) the value is set correctly and I can Tab to the next control. The problem is that...
  17. stephenk

    Moving the Scrollbar to the bottom in a Listview

    I am using a Listview in Report Mode and due to the number of List Items, the automatic scrollbar appears. By default, the scrollbar is at the top of the listview. How do I force the scrollbar to the bottom of the listview as I want to display the last few items when the form is loaded.
  18. stephenk

    Automating Lotus Notes

    I want to automate Lotus Notes from within a VB Application. In all cases the user will have a Lotus Notes Session Active so how do I initiate the Active Lotus Notes Session as an Object, and then set the focus to Lotus Notes after I have automated what I want? Most other examples seem to create...
  19. stephenk

    Trapping Mail Merge Errors

    I have an application which automates the merge of Word documents and data. I want to check errors before running the merge and one error in particular sometimes occurs as follows: It is possible for somebody to remove a particular field from the header source and not remove references to that...
  20. stephenk

    Disabling the Read Only Check Box in Explorer Properties

    If I set a file to read only, a user can go to explorer and within the properties dialog box, un-check the read only property. Is there any way using VB, that I can disable the ability to change this property on particular files? i.e. disable the Read Only Check Box for one specific file.

Part and Inventory Search

Back
Top