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

  • Users: Anthony1312002
  • Order by date
  1. Anthony1312002

    Need a few pointers

    Thanks Johnwm, I made the changes but I'm getting a Permission denied error on the message box line. Is this a Java script error? How can I fix it?
  2. Anthony1312002

    Need a few pointers

    Sorry, It might help to see everything I'm trying to do. Here is the code along with the recordset that I'm trying to convert. Recordset Do Until RSData1.EOF Dim CashC1, Cash1Legal CashC1 = CashC1 + RSData1("CashAmount1") AccountOne = RSData1("AccountNumber") Group1 = RSData1("Custgroups")...
  3. Anthony1312002

    Need a few pointers

    Sheco, thanks for the response. I changed all the end functions to exit functions and now there are no more error messages. Just one more question? How do I display the results? I know it should be simple but I'm missing it somehow.
  4. Anthony1312002

    Need a few pointers

    Thanks for the quick response. I made the needed change but I'm getting a Expected Statement error at the last line 267 which is the End Function line. What's wrong?
  5. Anthony1312002

    Need a few pointers

    I was directed to this script that converts numerical amounts into words using Visual Basic. I'm trying to make some changes to it so that I can use it in ASP/VBScript but with no success. The variable I'm trying to convert and display is CashC1. I'm unfamiliar with functions such as ParsChunk...
  6. Anthony1312002

    Converting a number into text

    Thanks for the great response Tarwin. I've got it working and it converts all dollar amounts to the corresponding english word. But how do I get it to recognize the cents For example. Getting $120.45 to convert to One Hundred Twenty dollars and forty five cents? Here is what I have Dim...
  7. Anthony1312002

    Eliminating Page footer and header

    Does anyone remeber how to remove the page header and footer in a page so that when I print a report you don't see Page 1 of 2 at the head of the page and the name of the page at the bottom? Example http://172 etc.
  8. Anthony1312002

    HELP! Converting Numeric Value to Text in ASP

    I hope someone can help me. I was directed to a script that converts a numeric amount to text. As you can see it's in VB. I want to convert the SQL variable called CashAmount to text. Is there anyone out there that could give me a hand in changing the script so that I can use it in ASP? set...
  9. Anthony1312002

    Converting a number into text

    Say I have a page that displays the number $456.28. Is there a script that will allow me to convert this to Four Hundred Fifty Six Dollars and Twenty Eight cents? Has anyone seen anything like that?
  10. Anthony1312002

    Posting to a checkbox field

    Does anyone remember how to post to a checkbox field? In Access the field value is Yes/No. I've tried using Request.Form instead of CleanInput but with no success. Here is how I'm trying to do it but I'm getting a datatype mismatch in criteria error: Option Explicit Function...
  11. Anthony1312002

    Controlling how a page prints

    Is there a way to control print settings on the home server for a web page so that when someone on another PC brings my page up and trys to print it the entire page will be set to fit to page?
  12. Anthony1312002

    Flattening the edges of a text box in a form.

    Does anyone remember how to flatten the edges of a text box so that they don't appear to be raised? I'm trying to make it that the box doesn't stand out so much on a form. <input type="text" name="txtBoxNumber_n" size="8" maxlength="7"></td>
  13. Anthony1312002

    Check Box & Form submission Question

    Is this to occur after you have submitted the form?
  14. Anthony1312002

    Using application/vnd.ms-excel

    I'm able to use the function: application/vnd.ms-excel to open excel on a Windows 2000 machine but on an XP machine it brings up excel but displays no data. Is there a different script for XP?
  15. Anthony1312002

    Formatting text a text file

    That's okay. Just one thought. I get a undetermined string error when I try to use Dim as when using VB Script. Say for example when I use Dim fso as FileSystemObject, the error occurs. Is there a way to get around that?
  16. Anthony1312002

    Formatting text a text file

    pkailas, thanks for the reply. How would this look in ASP?
  17. Anthony1312002

    Formatting text a text file

    Thanks for being patient. What I want to do is make the file look like this. 96022 Singles: 12/13/2004 97 20,177 90 20,267 4,281,989.21 20,177 90 20,267 4,281,989.21 17,608 2,569 96022 Multiples: 12/13/2004 14 603 2 605 638,054.48 966 4 970 638,054.48 785 181 96022 Checks Only: 12/13/2004 26...
  18. Anthony1312002

    Formatting text a text file

    What I posted is what the file looks like after it write it back to the browser. Here is what it looks like before that happens. I must warn you. It's a mess. Formatted File Singles: 97 20,177 90 20,267 4,281,989.21 20,177 90 20,267 4,281,989.21 17,608...
  19. Anthony1312002

    Formatting text a text file

    As you can see below I have a text file that I'm trying to import. What I want to do is rip the customer's box number from the botton line, say 96022 as shown in the text file, and put it at the beginning of each line item for that customer and so on. Below the text file is the script I'm using...

Part and Inventory Search

Back
Top