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!

Recent content by abs2003

  1. abs2003

    HTTP-POST with Cookies

    I got it resolved. All I have to do is Use HTTP-GET Store cookies Get whatever parameter (hidden value) you need Use HTTP-POST If anyone need more detail or sample code posted, please let me know. Thank you everyone.
  2. abs2003

    trigger to send an email 30 days prior to a due date.

    How are you determine due date? Do you use SQL database to store employee and due date? If you do then you can query the due date where it will be 30 days up. Then you can call Stored procedure that will send out the email. Look up "xp_sendmail" in SQL Online Help. You also need to look...
  3. abs2003

    HTTP-POST with Cookies

    jebenson, Thank you. Here's my code... Dim objLoginRequest As HttpWebRequest = WebRequest.Create(strURL) objLoginRequest.CookieContainer = New CookieContainer objLoginRequest.Method = "POST" objLoginRequest.KeepAlive = True strPost =...
  4. abs2003

    HTTP-POST with Cookies

    I use HttpWebRequest and HttpWebResponse. My problem is that I get "The browser you are using is rejecting cookies". Thought I used CookieContainer to accept cookies. Can anyone help? Thanks
  5. abs2003

    Math.Floor Or else?

    Thanks guys, I solved my problem by adding .001 to the number before using floor function. example dim newNumber as integer dim oldNumber as double= 10.0 newNumber = Math.Floor(oldNumber + .001) This will return number of 10. The reason, if you call Floor function with parameter as...
  6. abs2003

    Math.Floor Or else?

    Hi everyone, How can round numbers like.. 10.1 to 10 10.4 to 10 10.5 to 10 10.7 to 10 10.0 to 10 Yes, I can use Math.Floor. But it won't work with converting 10.0 to 10. Any idea? Thank you
  7. abs2003

    Can xslt have nested loops?

    Ah ha! Thank you k5tm. A star for you.
  8. abs2003

    Can xslt have nested loops?

    I fixed my problem by making my XML file as <?xml version="1.0" ?> - <ASSORTMENT> - <FIXEDASSORTMENT> <DESCRIPTION>NACS SMALL ASSORTMENT</DESCRIPTION> <COST>0.00</COST> <ITEMNO>954469N</ITEMNO> - <ITEMS> - <ITEM> <ITEM>$4.99 JUV ASST</ITEM> </ITEM> - <ITEM> <ITEM>$6.99 FIC...
  9. abs2003

    Can xslt have nested loops?

    Hello all, I know this may be very simple but I don't know how? I have this XML file: <?xml version="1.0" ?> - <ASSORTMENT> - <FIXEDASSORTMENT> <DESCRIPTION>NACS SMALL ASSORTMENT</DESCRIPTION> <COST>0.00</COST> <ITEMNO>954469N</ITEMNO> - <ITEMS> <ITEM>$4.99...
  10. abs2003

    Ampersand in enumerations

    mimivdg2002, I use in xslt .. &#38; for &
  11. abs2003

    How to set application version

    developer155, file AssemblyInfo.vb . . . ' Version information for an assembly consists of the following four values: ' ' Major Version ' Minor Version ' Build Number ' Revision ' ' You can specify all the values or you can default the Build and Revision Numbers ' by...
  12. abs2003

    Left function for XSLT

    Never mind. My mind is somewhere's else. All I have to do is to call a function and return 10 characters.
  13. abs2003

    Left function for XSLT

    Can display just left 10 characters of information from XML using XSLT style sheet?
  14. abs2003

    Speech SAPI says &quot;Blah&quot;

    No matter what text I feed to it - plain English word, it still says blah. I'm downloading the SDK right now. I will re-install and re-try it. Application like this makes me miss my decade old Comodore 64.
  15. abs2003

    Speech SAPI says &quot;Blah&quot;

    ThatRickGuy, Thankyou. I know it should be very simple to use. I think something is wring with my Speech lib. Do you have the link to download it?

Part and Inventory Search

Back
Top