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 strongm 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. ignoreme

    ASP good enough for this one?

    I agree with Tarwin. Based on the stated (loose) requirements, that is the easier thing to implement. "I think there is a world market for maybe five computers." --Thomas Watson, chairman of IBM, 1943
  2. ignoreme

    EXCEL, SQL, and ASP

    Or you could write some VBA code underneath the spreadsheet that will write to the database. I have done that before. And, you just place an event button on the spreadsheet surface or create a macro that will just run everything you want to the database. Of course, you will have to design the...
  3. ignoreme

    getting Mapped Network Drives

    Would it because a mapped drive is not physically on your machine? FSO can only see what is physical. Mapped drive links are just pointers to other locations on other machines (via network). "I think there is a world market for maybe five computers." --Thomas Watson, chairman of IBM, 1943
  4. ignoreme

    Search with Indexing Recommendations

    Or you could use Indexing Service (if that is an option...depending on your web server OS). I have used it and it has performed very efficiently and quickly. "I think there is a world market for maybe five computers." --Thomas Watson, chairman of IBM, 1943
  5. ignoreme

    Need help with ASP and Store proc

    Why do have two parameters in the Stored Proc? And if they are required, the ASP code does not appear to pass any values to the proc. In addition, from I can recall from SQL procs you initialized the parameters to empty strings...if that is the case then the first conditions will always be...
  6. ignoreme

    Force table height NOT to stretch to 100%

    I think the suggestion of coordinates is best. Modify the image with all of the city locations and their icons. Then, take the XY coordinates from the OnClick event and compare them to a known coordinate for results. And, to make it easier to the user to not have to put the mouse exactly...
  7. ignoreme

    How to link two sql servers

    Look at Replication. There are plenty of wizards inside MSSQL. SQL Server has the ability to publish data between two servers. You can setup the rules, triggers, and so forth. Good luck!
  8. ignoreme

    Multiple Form Action Submit

    Actually, someone already asked a similiar question. I think the answers would be benificial for this person. thread333-908912
  9. ignoreme

    Help with cint mismatch

    Have you tried: strSQL2 = "Select * from tblSubmenuLink where SubmenuLinkID= " & ssi.item("SubmenuLinkID") or if that does not work, try: strSQL2 = "Select * from tblSubmenuLink where SubmenuLinkID= '" & ssi.item("SubmenuLinkID") & "'" See if that works. I think it is your quotes and...
  10. ignoreme

    Posting information to a asp page without going to it

    I agree. Using the Microsoft.XMLHTTP option is the best for what is described above. I thought the MS XMLHTTP object was part of the WIN2k or XP Professional server packages? (I assumed that one of the two servers is being used.)
  11. ignoreme

    Need help in error handlingq

    What kind of class is lordoftherings123 taking?
  12. ignoreme

    Help with cint mismatch

    Why are you using CInt in a SQL string? strSQL = "Delete from tblPageContent where MainMenuLinkID=" & cInt(ssi.item("mainID")) & " and MenuLinkID=" & cint(ssi.item("menuID")) & " and SubmenuLinkID=" & cint(ssi.item("subID")) You should not need to worry about type casting when dealing with SQL...
  13. ignoreme

    Variable doesn't hold it's value

    I assume you are using JScript within ASP (based on the curly braces and semicolons. If you put the response.write outside the while loop and you use the same variables, don't you clobber the previous value in each variable after each iteration. Thus, when the while loop finishes, the...
  14. ignoreme

    Type mismatch

    Have you tried running the SQL script by itself (to make sure you are not getting errors)?
  15. ignoreme

    For Each objFile in objFolder.Files

    I would write them to a recordset, then sort them however you wanted. Here is an old example of one I did. I created a sub and passed to it: Sub FillRS(ByVal objFolderContents, ByRef objRS) ' Start at the beginning objRS.CursorLocation = adUseClient ' Create...
  16. ignoreme

    Error with call to stored procedure....

    or try this: set cmdProj = server.CreateObject("ADODB.Command") with cmdProj .ActiveConnection = db_connstring .CommandText = "usp_UpdateRptGrpPrimDeltest" .CommandType = adCmdStoredProc .Parameters.Refresh .Parameters("@lngRptGrpID")= lngRptGrpID .Parameters("@cbo_PrimDel") =...
  17. ignoreme

    Refreshing Crystal Report 8.5 from browser (IIS 5)

    Well, no. When you call the call the report, you should pass it some parameters that will be needed by the stored procedures. The report takes those parameters and uses them to call the stored procedures. However, the report does not retain the values from the parameters, thus you need to...
  18. ignoreme

    Easy problem with function

    Ok, first the function requires a value 'theForm' yet I do not see where it is referenced inside the function. I suggestion when calling the function you pass a reference to it and use that reference within the function. Before checking to see if a box is checked, determine if there is a...
  19. ignoreme

    ASP jscript string function?

    Review javascript String attributes: http://www.devguru.com/Technologies/ecmascript/quickref/string.html
  20. ignoreme

    Refreshing Crystal Report 8.5 from browser (IIS 5)

    Are you using the ActiveXviewer.asp, HTMLviewer.asp, etc.? From my experience with using ActiveXviewer, we could not use the refresh button because it would require a refresh of the data id which it could not. The report was static and had to be recreated again if the data changed. Do you...

Part and Inventory Search

Back
Top