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

  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?
  16. mcm103

    Excel Macro

    I have a spreadsheet with Option Buttons. The user can click on the buttons to determine the status of a specific task. I want to write a macro that will reset all of the tasks' options buttons to the intial setting. I have been unable to target the value property of the option buttons. Any...
  17. mcm103

    I have created a worksheet with Opt

    I have created a worksheet with Option buttons. A user can click on the buttons to indicate the status of the item he/she is working on. I want to create a macro that will reset the worksheet by changing the options buttons to the inital setting. I have been unable to target an indiviual...
  18. mcm103

    Worksheet Names

    Thats it, Thanks
  19. mcm103

    Worksheet Names

    I am working with two Excel workbooks which have the same worksheet names. I want to dynamically capture the name of the active worksheet and use that name to open the cooresponding worksheet on the other workbook. Workbook.ActiveSheet returns an Object Sheets accepts a String Any suggestions?
  20. mcm103

    Dynamic Email

    I need to code an Excel macro than will automatically send and email to someone within our company. How do I populate the To: field using Microsoft Outlook?

Part and Inventory Search

Back
Top