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: firsttube
  • Order by date
  1. firsttube

    Browse for File - return path and filename

    I got this working: Dim fDialog As Office.FileDialog Dim varFile As Variant ' Set up the File Dialog. Set fDialog = Application.FileDialog(msoFileDialogFilePicker) With fDialog ' Allow user to make multiple selections in dialog box...
  2. firsttube

    Browse for File - return path and filename

    I need a file browser window to open, and the user to pick a file from the browser, and have the file path and file name returned as a string. I have this code: Function PickFolder(strStartDir As Variant) As String Dim SA As Object, F As Object Set SA =...
  3. firsttube

    Confirm box not functioning

    is there any way to detect whether they have javascript enabled or not? Information is not Knowledge, Knowledge is not Wisdom, Wisdom is not Truth, Truth is not Beauty, Beauty is not Love, Love is not Music, Music is the best.
  4. firsttube

    Confirm box not functioning

    I have a web page that when it loads a confirm box opens likes this: var agree = confirm("This is the confirm text."); if (agree) { return true; } else { window.location.href = "http://www.google.com"; } The problem is, that on one person's computer, when the page loads the...
  5. firsttube

    SQL Security - Windows network through ASP pages

    I gave the identity for the application access rights to the server and to the sql database and I still have the same error on the asp page. Any thoughts? I really want to be able to use windows accounts to control the permissions through the asp page using SQL server user access. Information...
  6. firsttube

    SQL Security - Windows network through ASP pages

    that makes sense. But if I use a specific user name and password that I set up on SQL Server, and give that user update rights to a table it works from the asp page, without giving the identity access rights. It seems it is only when I try to use a specific user account that is a windows login...
  7. firsttube

    SQL Security - Windows network through ASP pages

    I found the identity of the application pool that is running in IIS that the asp page is part of. Should this identity be allowed access to the SQL Server? Information is not Knowledge, Knowledge is not Wisdom, Wisdom is not Truth, Truth is not Beauty, Beauty is not Love, Love is not Music...
  8. firsttube

    SQL Security - Windows network through ASP pages

    Thanks for the suggestion. I tried usine Trusted_Connection=Yes, but got this error: Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON' any thoughts? Information is not Knowledge, Knowledge is not Wisdom, Wisdom is not Truth, Truth is not Beauty, Beauty is not Love, Love is not Music...
  9. firsttube

    SQL Security - Windows network through ASP pages

    I have a web application in ASP that updates a table in a SQL Server database. We have a windows network here. Is there any connection string for ADO using OLEDB that will persist the windows login information through to SQL Server? This does not seem to work, even though the user is...
  10. firsttube

    onclick with hyperlink causes error

    you win :-) Information is not Knowledge, Knowledge is not Wisdom, Wisdom is not Truth, Truth is not Beauty, Beauty is not Love, Love is not Music, Music is the best.
  11. firsttube

    onclick with hyperlink causes error

    actually, I changed the function name to "setOrderBy" and all is fine. Is orderBy a reserved word? Information is not Knowledge, Knowledge is not Wisdom, Wisdom is not Truth, Truth is not Beauty, Beauty is not Love, Love is not Music, Music is the best.
  12. firsttube

    onclick with hyperlink causes error

    I have an html hyperlink like this: <a href="#" onclick="orderBy('ID');">ID</a> right now the function is just this: function orderBy(theField) { } When I click the hyperlink in IE I get this error: Object doesn't support this property or method. on the line with the hyperlink. Why...
  13. firsttube

    Opening a tif image file using Picture and Fax Viewer

    got it: <script language="vbscript" type="text/vbscript"> Dim objWShell, strPath strPath = "c:\mypath\myimage.tif" Set objWShell = CreateObject("WScript.Shell") objWShell.Run "rundll32.exe C:\WINDOWS\System32\shimgvw.dll,ImageView_Fullscreen " & strPath set objWShell = nothing </script>...
  14. firsttube

    Opening a tif image file using Picture and Fax Viewer

    Yes, it is an internal only application. All users have standardized computers so it should work for everyone inside. I have actually done this before using vb script and "WScript.Shell", but I cannot find my old scripts. Information is not Knowledge, Knowledge is not Wisdom, Wisdom is not...
  15. firsttube

    Opening a tif image file using Picture and Fax Viewer

    I want to open a tif image file using Windows Picture and Fax Viewer over the web via a hyperlink. However, I get prompted to save or open the file. Can this be done using vbscript and wscript.shell? Dim objWShell Set objWShell = CreateObject("WScript.Shell")...
  16. firsttube

    Session Variable not carrying over in Xml Http request

    monksnake, thanks for the info. I did change it so the url contains the variable I need in the receiving page. It works fine. I have done some checking on the web and it seems that the server perceives the request to the receiving asp page as a new session. So it makes sense that the session...
  17. firsttube

    Session Variable not carrying over in Xml Http request

    I'm thinking that the server looks at each xml http request as a separate session. Is this correct? Information is not Knowledge, Knowledge is not Wisdom, Wisdom is not Truth, Truth is not Beauty, Beauty is not Love, Love is not Music, Music is the best.
  18. firsttube

    Session Variable not carrying over in Xml Http request

    I have an asp page that sends an xml http request to another asp page which sends back some data. In the page sending the request, there is a session variable. The page receiveing the request uses that session variable. However, the page receiving the request is somehow not "getting" the...
  19. firsttube

    pdf not opening from link

    no this linke works: <a href="\\myserver\the pdf file.pdf"> this does not: <a href="\\myserver\the pdf file.pdf" target="_blank"> a browser window opens with the correct path, but no pdf file. If I copy and paste the address into a new browser then the pdf file loads. Information is not...
  20. firsttube

    pdf not opening from link

    another thing is that it is not a webserver, it is a location on the network. Information is not Knowledge, Knowledge is not Wisdom, Wisdom is not Truth, Truth is not Beauty, Beauty is not Love, Love is not Music, Music is the best.

Part and Inventory Search

Back
Top