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 TouchToneTommy 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 codenovice

  1. codenovice

    HELP ME !!!!!!! PLEASEEEEE

    Hello!!!! I would like to read 8 lines from a text file that has 8 lines. I would later split the lines into corresponding values. Kindly provide me with the code. Thanks
  2. codenovice

    How to Read Characters

    Hi!!! I have a list of characters in afile but I need to read line by line 12 11 02 0.000067D-07-1.2345677 0.0000000001 I would like to read the entire line comprising 12 11 02 ... The problem is that I have it in a text file. I have couple of more lines below this line. So I need to read...
  3. codenovice

    Reading Values

    No, some of them are some are NOT.I have no other option than to read like this. Thanks for the prompt response
  4. codenovice

    Reading Values

    I have the values, in a .txtfile,some seperated by a space some NOT. For example 6 01 11 1 19 59 44.0-9.103678166866D-07-1.136868377216D-13 In this 6 is one value, 01 is another, -9.103678166866D-07 is another. NOT all values are space delimited. These values use hexa decimal values and the...
  5. codenovice

    Reading characters

    I am using an Input box to get a number in the form 91234.43567 After I get this I need to make this calc: 9 + 12/60 + 34/3600 + 43567 Please help me and how do I restrict the input i.e I need 5 inputs from the user and after that the focus shoul;d shift to calculate button and if the user...
  6. codenovice

    Where to Define the Foll: Function

    Declare Function ATAN2 lib "IFL16" (ByVal dX1 As Double, ByVal dX2 As Double) As Double this function calculates atan2(x,y) but when I am declaring in the general decleration it is giving me an error Please help Thanks
  7. codenovice

    Declareing Functions

    I have two functions one to calculate remainder and other arc tangent. I DO KNOW the functions. All I need to know is to know the exact location to DECLARE them. i.e Should I declare in General Declerations or at the end of a procedure like command_click() It is very urgent and your advice is...
  8. codenovice

    Help With Input File

    I need to open a .txt file that has values both +ve and Negative and are doubles. Below is the code that Jon has provided me. Thanks ************************************************************ How about reading all the values into an array ? Dim intCount as integer Dim dblMyVar as double...
  9. codenovice

    Help With Input File

    I have a file which is delimited by a space like 1 2 3 4 5 6 7 8 9 10 11 . . Now I need to pick elements say 1, 5, 12, 35 etc.. and I am using array with reard to help from Jon. However, I could not sove it. I need help in using the values and one more thaing it gives me Input error 62 &quot...
  10. codenovice

    Input Past End of File!! Please Help

    Hi!! Jon, That was agreat help!! I was looking for this kinda help. But it is giving me a Filepath error. I have used DialogBox to Open Files and the code for it is dlgCommon.Filter = "Text Files(*.txt)|*.txt|All Files (*.*)|*.*" dlgCommon.FileName = " " dlgCommon.ShowOpen...
  11. codenovice

    Input Past End of File!! Please Help

    Dear jon, now I made it to 35 items removing the 18, still its giving me the same error. I dont need all the 35 values, infact I need only 17 values which are scattered in it. i.e I nee like 1,3,7,9.11,15,16 ... so on and out of these I need 17 values for my calc: Can U help me Laks

Part and Inventory Search

Back
Top