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: *

  1. sergeiY

    SQL Server DB comparison utilities

    Thank you guys I will look into this red-gate tool looks promising. Thank you Sergei
  2. sergeiY

    SQL Server DB comparison utilities

    Hi I need to make a lot of content (not structure) changes to one SQL Server2000 DB. Later on I would need to push these changes to production DB. What I was thinking I would do all my changes to db contents and then will compare new db to back up and somehow script all the changes and then...
  3. sergeiY

    How to secure evaluation version of ASP application ?

    Hi I posted this question in ASP forum as well but didn't get any responses yet so I am reposting it here: I need to make a demo version of my ASP/MsAccess Application. I want to be able to give it away to people so they can install it use it for some time let's say 30 days and then it will...
  4. sergeiY

    Microsoft.XMLHTTP and local path

    shaddow thank you for your responce given tight timeline I had to abandon this solution and do it a quick way ... Sergei
  5. sergeiY

    How to secure evaluation version of ASP application ?

    Hi I need to make a demo version of my ASP/MsAccess Application. I want to be able to give it away to people so they can install it use it for some time let's say 30 days and then it will not function or will pop up a message or whatever ... My application written in classic ASP and...
  6. sergeiY

    Microsoft.XMLHTTP and local path

    Hi I am trying to do the following: Set objXml = Server.CreateObject("Microsoft.XMLHTTP") ' Opens the connection to the remote server. objXml.Open "GET", "emailOutput.asp", False ' Actually Sends the request and returns the data: objXml.Send it gives me an...
  7. sergeiY

    RegExp

    I worked it out myself :)
  8. sergeiY

    RegExp

    Is it possible to write a regular expression that will validate lenght instead of value ? I need to check that length of passed in value is greater than zero or its length equal to zero. I know how to search for a specific value but don't know if I can check for length... I need it to be a...
  9. sergeiY

    Adding dates problem

    clarkin You deserved a star for this one. I have to admit I had to face this issue for quite some time and never had an elegant solution for it. Well done! Sergei
  10. sergeiY

    Date Format & stored procedures

    clarkin you did it again :) Thank you. I should've looked at your answer in my other thread I see answer for this question :) Sergei
  11. sergeiY

    Adding dates problem

    DreXor, What did you mean by: 'Reformat dates as necessary or use Session.LCID to you needs What is Session.LCID ???
  12. sergeiY

    Adding dates problem

    clarkin your idea to use strngs for dates is really good I'll defenetly take it on board Thank you Sergei
  13. sergeiY

    Date Format & stored procedures

    Hi I have this annoying problem with ASP/SQL flipping month and day in dates... I've got a stored proc that expects 2 date params and I have an ASP page that executes it here it is: Set Cmd = Server.CreateObject("ADODB.Command") With Cmd .ActiveConnection = strConn .CommandText =...
  14. sergeiY

    Adding dates problem

    excelent ! Thank you this works NO problemos!
  15. sergeiY

    Adding dates problem

    Hi I need to generate a list of dates between 2 dates for example: 1/7/2003 2/7/2003 3/7/2003 ... 30/7/2003 it's trivial right ? here is my code and I don't know why I am getting these results: 01/07/2003 7/2/2003 2/8/2003 <% Option Explicit Dim startDate, endDate, currDate, temp...
  16. sergeiY

    Problem calling stored porecure with params

    I didn't publish what worked for me as I got side tracked with other issues Here is a code that works for me now: Set Cmd = Server.CreateObject(&quot;ADODB.Command&quot;) With Cmd .ActiveConnection = strConn .CommandText = &quot;sp_Synchronise&quot; ' name of stored procedure .CommandType...
  17. sergeiY

    Problem calling stored porecure with params

    Hi When I run my stored proc it doesn't propduse any errors but also dusn;t seems to execute... I am new to ADO can you please have a look maybe I am doing something wrong with my ASP? Set Cmd = Server.CreateObject(&quot;ADODB.Command&quot;) With Cmd .ActiveConnection = strConn...
  18. sergeiY

    MSXML 4.0 problem

    Excellent! Thank you Tarwn. You deserved a star for this one. Sergei
  19. sergeiY

    MSXML 4.0 problem

    Tarwn When I said stoped working I meant it stop matching elements ... and what I found that it will not match all elements but only top level directory and it children... I'll try to debug it one more time today... I thought I might be using some depreciated method that is no longer...
  20. sergeiY

    Can't get append to a text file working

    Ok. Thank you guys. Now I understand what I did wrong. I didn't know that calling a method I can change file opening format... intresting... Sergei

Part and Inventory Search

Back
Top