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 wOOdy-Soft 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 mcm103

  1. mcm103

    Copying a File using Scripting.FileSytemObject

    I am creating an ASP page that will allow a user to upload a file from their local drive and copy it to a subfolder on a webserver. I am running into problems when the parent folder's name contain a space ie(My Documents). My code is: Set FileObject =...
  2. mcm103

    Anchor Navigation

    Is there a way to jump from Anchor to anchor using Javascript without using <a href=&quot;#Anchorname&quot;></a>?
  3. mcm103

    String Validation

    Did that. Still get an error.
  4. mcm103

    String Validation

    My problem is not with the syntax of the replace function. It is using the replace function to replace a quotation mark.
  5. mcm103

    String Validation

    I am trying to replace all quotation marks in a given string and replace it with a descriptive value so I can submit the string into a database without having part of the string cut off. I am using the replace function. replace(string, FindString, ReplaceWithstring) When the FindString equals...
  6. mcm103

    ADO Recordset Error

    tablenames could be Hardware1 and Software
  7. mcm103

    ADO Recordset Error

    I tried that method as well and got the same error.
  8. mcm103

    ADO Recordset Error

    I am trying to customize a Microsoft Outlook Form. It uses VBScript to handle the customization. I am trying to ADO to connect to a SQL Server Database. I am connecting fine the problem is with the RecordSet. My Code is as follows: Set conn =...
  9. mcm103

    Default Package

    My class have the following import statment. import Order; I realize techincally I should not need to import this class because it should be part of the default package. However I am getting cannot resolve symbol errors when I try to compile my code. OrderEntry1.java:146: cannot resolve...
  10. mcm103

    Default Package

    I have a servlet calling methods from a user-definded class. The java file and its related class file are in the same folder as my servlet. When I try to create new objects MyClass NewObject = new MyClass(); I receive an error that it cannot resolve symbol. I just started to code again in...
  11. mcm103

    switch statement

    This is what I tried and for some reason the switch will not execute. I have but the same range logic in IF/ElseIf statements and it works. I am very confused.
  12. mcm103

    switch statement

    I need help with the syntax of a switch statement. I have a variable that contains a calculated value. Based on that value I want something to happen. between 0 and 1: x happens between 1 and 2: y happens etc. I am having trouble coding the case for a range.
  13. mcm103

    Outlook - sending a reply via VBScript

    Instead of MyItem.Send have you tried MyItem.Reply?
  14. mcm103

    # of nested &quot;IF's&quot; in Excel 97???

    Try using a Select Case. Select Case yourVariable Case Value(What you are looking for) code you want to execute Case Value2 Case Value3 . . . Case Value17 End Select
  15. mcm103

    Customizing Outlook 2000 Forms

    Is there a way to switch to a different mailbox to read a mailitem in its Inbox folder?

Part and Inventory Search

Back
Top