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: Eytch
  • Order by date
  1. Eytch

    I am attempting to define a 2 dimen

    I am attempting to define a 2 dimensional, variable array (in terms of size). The number of items given in response to an inputbox will determine the size. For each item I would like to enter a price and volume, compute the price per volume (perform a division) and return the coordinate pair and...
  2. Eytch

    Case Statement Or Syntax

    From Eytch, I am trying to establish several "Cases" here where MyValue falls within certain ranges of values. That is why I thought using select case statements would be appropriate. Thanks Again.
  3. Eytch

    Case Statement Or Syntax

    I want to express the "Case" where MyValue is greater than or equal to 0.5 or less than 5. Why wouldn't this work? Select Case MyValue Case 0.5 >= MyValue < 5 Thanks to All, Eytch
  4. Eytch

    Case Statement Or Syntax

    Select Case MyValue Case >= 0.5 0r < 5 Could someone tell me why my Or statement doesn't work? Thanks, Eytch
  5. Eytch

    excel date font color change based on system time

    Hello, I would like to write a routine that allows entry of the system time and date in a cell and then after an elapsed period of time of the users discretion add to an adjacent cell the system time and date in a different color font. Any Suggestions? Thanks, Eytch
  6. Eytch

    Excel - protecting VBA code, &quot;.exe&quot;?

    I have long since forgotten how to make an excel file executable. I can't find what I'm after in "help". Any suggestions for the best way to protect my excel VBA code from viewing or editing? Would saving it as an executable file do the trick? Thanks, Eytch
  7. Eytch

    Disk Not Formatted

    I created files on my computer several months ago (within a year) and saved them to a 3.5 inch disk in the A drive. Now, when I try to access them I get a message that the disk has not been formatted. Can you tell me why this is occurring and how I can access the files I know exist on the disks...
  8. Eytch

    Multiple conditions: DoWhile Loop

    Do Do . . . Loop While E9 = E12 Loop While E10 = E11 Working in Excel how would I incorporate both conditions into one DoWhile Loop? What is the proper syntax to get something such as the following to work: Do . . . Loop While E9 = E12, E10 = E11 Thanks, Eytch
  9. Eytch

    java.sql.SQLException...Syntax error in FROM clause.

    I get the following message when I run my program, any suggestions why? java.sql.SQLException[Microsoft][ODBC Microsoft Access Driver]Syntax error in FROM clause. Thanks, Eytch
  10. Eytch

    Recompile with -Xlint:unchecked for details

    When I compile my tester program I receive the following: Note: Recompile with -Xlint:unchecked for details. Tool completed successfully Can anyone tell me how to set this unchecked for details? Thanks, Eytch
  11. Eytch

    Excel: Save Output as new file without macro

    How do you copy the output generated by an Excel macro to a new file without including the macro that generated the output? Thanks, Lakefish
  12. Eytch

    Macro code unavailable in copies

    fumei, The macro I wish to make unavailable was created in Excel. Could you give give an example or reference to having the code write output to a new file? Thanks, Lakefish
  13. Eytch

    Macro code unavailable in copies

    I don't want my code available to users only the output generated by virtue of executing the macro. What is the easiest means of disseminating the output without passing on the macro code that generated it? Thanks, Lakefish
  14. Eytch

    FillAcrossSheets Unspecified Range

    I want to copy a selected range of cells to other sheets using the FillAcrossSheets method. What I have tried below in my macro does not work. I know the FillAcrossSheets method has a defined range in the help example, .Range("A5,B9") as the suffix. How do I get it to work when I want the...
  15. Eytch

    Inputbox: Date Type?

    I want to have the user enter a date to an input box in the format "01/01/05". Set myDate = Application.InputBox(prompt:="Enter the first day of the Month, mm/01/yy", Type:=0 + 1 + 2) Can anyone tell me the Type setting to use so that I may assign the value input to a cell as the myDate...
  16. Eytch

    Autofill dates

    I used a selection statement to define a range using cells. Now that I have the column of cells comprising the area selected I want to format the first cell a date and autofill the remaining cells with successive days of the month. The area was defined using cells in the range statement...
  17. Eytch

    Closing Applet via click exit button

    Can anyone tell me the code to use to close an applet by clicking an exit button within the applet. System.exit(0); does end the program. Thanks, Tripoli
  18. Eytch

    Right Justified

    I want to right justify the data in an integer field and also in a double field. My program is from the command prompt. It is not an applet. I know it is possible if these were strings by way of setting the length to a given value but I am using integer and double here. Any suggestions...
  19. Eytch

    Field Size/Justificaton

    I would like to set all data in a field right-justified. Is there a way of defining the field size in Java or right-justify the data in the fields of a report? Thanks, Tripoli
  20. Eytch

    Modify Array Values

    I want to be able to replace any array value specified by user input with a replacement value also specified by user input. How do you compare the keyboard input of a character to the literal value occupying an array position? If array[1]= '2' how do I first find all instances of positions with...

Part and Inventory Search

Back
Top