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

  • Users: sergeiY
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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 =...
  7. 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...
  8. 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...
  9. sergeiY

    MSXML 4.0 problem

    Hi I just posted an XML question in ASP forum and then realised that I should've posted it here but now it's too late ... here is a link: thread333-589499 have a look Thank you Sergei
  10. sergeiY

    MSXML 4.0 problem

    Hi I am an XML newbe and I have this MSXML 4.0 compatibility problem... My code runs on MSXML 2.5 and 3.0 OK but when I use MSXML 4.0 it stop working (no ASP errors!) OK what I am doing I am comparaing 2 XML files that represent directory and file structure on 2 boxes and reporting any...
  11. sergeiY

    Can't get append to a text file working

    Hi I am trying to debug my app and I want to spit some info to a text file (append) but for some reason this Sub I wrote doesn't work... Can you see what am I doing wrong ? Sub DumpToFile2(strOut) '______________________ '*START* Write to file '______________________ Const ForReading = 1...
  12. sergeiY

    Best language to write Outlook app

    Hi I need to write a small app that will scan newly coming e-mails and resend them via SMS gateway ... friend of mine wrote a VBA script in Excel to read/send e-mails but I seems to me as not right choice for a task ... so my question is: what is the right choice of programming language ? is it...
  13. sergeiY

    Best language to write Outlook app

    Hi I need to write a small app that will scan newly coming e-mails and resend them via SMS gateway ... friend of mine wrote a VBA script in Excel to read/send e-mails but I seems to me as not right choice for a task ... so my question is: what is the right choice of programming language ? is it...
  14. sergeiY

    what readUnsignedByte() will return in this case ?

    Hi I am helping a friend to prepare for Java exam (uni) and threre is this question that I don't know answer for... FileInputStream fis; DataInputStream dis; int value1, value2; fis = new FileInputStream(&quot;file.dat&quot;); dis = newDataInputStream(fis); value1 = dis.readUnsignedByte()...
  15. sergeiY

    Will install of IE 5.5 will upgdare MSXML parser?

    Hi What I've read somewhere on forums that if I will install IE 5.5 it will update MSXML parser on my box is it true ? I developed an app that uses MSXML3.0 but my production boxes are all different some are Win2K some NT4.0 and most of them don't have XML installed at all (NT4.0)... and it's...
  16. sergeiY

    Bit shifting question

    Hi I am looking at some somple code that creates histogram for a color ... I do understand all but one bit here and I suspect it's a bit shifting operation. Can anybody please explain to me what is it ? Here is the code: //calculate histogram for blue //count instances each color histArray =...
  17. sergeiY

    How to abort WHS script ?

    I am ASP programmer and I need to write a simple WHS script I was told I can do it by simply replacing all Response.Write with WScript.Echo and it worked ! :) But I still have one more question is how to abort script execution ? This is my script: Dim objWSHShell Dim objPwdSplat Set...
  18. sergeiY

    Can I start out of user process thread in ASP?

    Can I start out of user process thread in ASP? I would like to be able to start new ASP thread when user hits a page... I did it in Cold Fusion 5.0 is it possible to do in ASP ? I would like to be able to start some lengthy process triggerd by user loggin to my side but I don't want to...
  19. sergeiY

    Is WSH comes with every IIS ?

    I was using WSH Shell to read windows registry assuming that it's installed on every IIS server, but somebody mention to me that it's not true and WSH is only available on Win2000 + or if you have IE 5 or IE 5.5 installed is it true ?
  20. sergeiY

    Can I execute a bat file from ASP ?

    This is related to topic of getting computerName out of the Win OS box here is a link: thread96-565498 know I can get server name via ASP Request.ServerVariables(&quot;LOCAL_ADDR&quot;) or Request.ServerVariables(&quot;SERVER_NAME&quot;) but it doesn't help me as it gets me IP of the web site...

Part and Inventory Search

Back
Top