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

  • Users: PCBrandon
  • Order by date
  1. PCBrandon

    Order Form

    Hello, I have an order form with ten rows of five fields in a form (so 50 fields). Is there any other way to efficiently enter the data from these fields into a database without having to individually go through each field manually? Thanks!
  2. PCBrandon

    Total Cost

    FYI, it should be document.frmPurReq.TotalCost.value = money(sum); I changed that to try to troubleshoot. Without using the money function it'll just display each item's total cost as a long string in the grand total box (e.g, item 1 total cost: 5.50, item 2 total cost: 6.50, grand total would...
  3. PCBrandon

    Total Cost

    Hi all, I have the following code: <script language="JavaScript"> <!-- function rowTotal(index){ quant = document.frmPurReq.ItemQuan[--index].value; cost = document.frmPurReq.ItemCost[index].value; document.frmPurReq.ItemTotal[index].value = money(quant * cost)...
  4. PCBrandon

    Cannot use parentheses when calling a Sub

    Fixed it, I had to change it to: Call oShell.Run("%SYSTEMROOT%\system32\cmd.exe /c echo y| cacls " & sHomeDir & " /t /c /g Administrators:F " & sUser & ":F")
  5. PCBrandon

    Cannot use parentheses when calling a Sub

    That was the problem tsuji, thank you! I'm now finding that my command doesn't work. It doesn't set the permissions at all. If I remove the Echo Y part, it'll work, but I have the press Y to confirm for each user. How can I get it to either not ask me to confirm or echo Y to the screen without...
  6. PCBrandon

    Cannot use parentheses when calling a Sub

    After trying both of your suggestions I get the error: Line: 24 Char: 4 Error: Object doesn't support this property or method: 'Wscript.Shell' Code: 800A01B6 Source: Microsoft VBScript runtime error Any thoughts?
  7. PCBrandon

    Cannot use parentheses when calling a Sub

    Hello, I have a small script that pulls usernames from an excel sheet and creates a folder/sets permissions for each user. I'm getting the following error when running it: Line: 26 Char: 110 Error: Cannot use parentheses when calling a Sub Code: 800A0414 Source: Microsoft VBScript compilation...
  8. PCBrandon

    Access website

    Hello, Our internal domain name is mckeelacademy.com. We have a website hosted at the public domain mckeelacademy.com, with an A record registered with a public DNS registrar. Accessing the website at mckeelacademy.com works for external clients, however, when accessing it from our internal...
  9. PCBrandon

    Pull first character from a cell?

    Played around with it some more, never realized how awesome Excel is: =B1&Left(A1, 1)
  10. PCBrandon

    Pull first character from a cell?

    Hi all, I know how I can combine the text values of two cells into one using a formula, but now I need to combine the text value of one cell with the first character of a text value in another cell. I'll try to show you what I mean: A B C 1...
  11. PCBrandon

    Dynamic Navigation?

    Oops! Nevermind! I didn't know you could use relative paths in HTML links.
  12. PCBrandon

    Dynamic Navigation?

    Hi all, I need to be able to create dynamic navigation links. For example, I have a include file that contains my navigation menu. Unfortunately, once I go into a new directory, that navigational menu doesn't work. http://mydomain.com/ may have links to: test/index.asp Then once I get into...
  13. PCBrandon

    Create a configuration file

    So I could create a loop and use the FSO to go through the text file, create an item with the tag in the text file as the key and the response as the value? Would simply looping through each line of the text file and add any line that doesn't start with a # to the dictionary be a good way of...
  14. PCBrandon

    Create a configuration file

    Hello, I am looking into creating a text file that normal people can read and change the values of in English. Then my ASP can parse the configuration file and apply the settings... Example: config.txt {APPLICATION} Enabled = True Name = My App Access = Everyone {LAYOUT} TextColor = White...
  15. PCBrandon

    Migration

    Thanks again. A few questions: 1. Does the temporary exchange server have to be on the domain to join the exchange administrative group (and perform the actions listed in that article)? I'll be rebuilding both domain controllers so having the temporary exchange server on the domain would pose...
  16. PCBrandon

    Migration

    Thanks for the help. Unfortunately we are a school so we don't have the funds to purchase a lot of servers. We've been running Exchange and ISA on domain controllers for years now, and haven't had many problems. I've read up on some of the posts here and additional articles. This is what I...
  17. PCBrandon

    Migration

    Hi all, First, a short description of my current setup: -Two Windows 2000 Advanced Server domain controllers -One Exchange 2000 Server, installed on one of the domain controllers -An ISA 2000 array, consisting of both domain controllers In the near future I'll be upgrading this setup to...

Part and Inventory Search

Back
Top