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 DaProgrammer

  1. DaProgrammer

    Image Map Captions?

    Dear All: Problem solved. Here's an interesting (yet simple) method to do what I was wanting. Take a table and fill it with cells. You can merge where needed to expand data area. Then simply put the image you want as a background. I hadn't thought of that until recently. Thank you though...
  2. DaProgrammer

    Input Past end of file error when not

    As posted from earlier: DaProgrammer (Programmer) Jul 28, 2004 Negative, using VB 4.0 with updated service packs. I am trying this forum b/c there was no reply in the vb 4 forum. Also, alot of the VB5 and 4 are very closely related. -Eric Thanks anyway though :-( Eric
  3. DaProgrammer

    Input Past end of file error when not

    john- I'm a private programmer. -eric
  4. DaProgrammer

    Input Past end of file error when not

    same thing -eric
  5. DaProgrammer

    Input Past end of file error when not

    ....VB has too many error codes..... new error! Open "A:\clientraw.txt" For Input As #1 Do Until EOF(1) Line Input #1, InputData aryInput = Split(InputData, " ") For i = LBound(aryInput) To UBound(aryInput) ' Displays all array entries MsgBox aryInput(i) Next Loop Close #1 aryInput...
  6. DaProgrammer

    Input Past end of file error when not

    By doing what johnwm said to do, I now get... Open "A:\clientraw.txt" For Input As #1 Do Until EOF(1) Line Input #1, InputData aryInput = Split(InputData, " ") For i = LBound(aryInput) To UBound(aryInput) ' Displays all array entries MsgBox aryInput(i) Next Loop Close #1 It highlights...
  7. DaProgrammer

    Input Past end of file error when not

    It just highlights the = sign after String and says 'Expected: list separator or )' -Eric
  8. DaProgrammer

    Input Past end of file error when not

    Swi- I went to that link and all works except the first part... Function Split(ByVal Text As String, Optional ByVal Delimiter As String = " ",Optional ByVal Limit As Long = -1, Optional CompareMethod As VbCompareMethod = vbBinaryCompare) As Variant It highlights the the = " " after String...
  9. DaProgrammer

    Problem with CommPort Property

    Do you need higher? Windows typically doesnt use over 9 com ports, why would you need 16?.... just wondering.
  10. DaProgrammer

    Input Past end of file error when not

    Negative, using VB 4.0 with updated service packs. I am trying this forum b/c there was no reply in the vb 4 forum. Also, alot of the VB5 and 4 are very closely related. -Eric
  11. DaProgrammer

    Input Past end of file error when not

    Whenever I try to do this, I get a "Sub or Function Not Defined' error and it highlights 'Split'. -Eric
  12. DaProgrammer

    Input Past end of file error when not

    could you give a scaled down example, im not familiar with the split function. -Eric
  13. DaProgrammer

    Tools you can't live without

    vb5prgrmr, you get a star for the best creativity!
  14. DaProgrammer

    Input Past end of file error when not

    Dear all: For a weather program i am making, I have to input data from clientraw.txt (if you want to see the file goto http://lpwn.port5.com/clientraw.txt) into sequential variables a to z, then aa to zz, then aaa to zzz, and so on. Here is my code that when I put anymore variables than...
  15. DaProgrammer

    Math

    This may seem like a simple question to some of you, but how do you do simple math in HTML. For example.... I have 3 xml files with temperatures in them. I want when html file loads, it to average the 3 of them. Thanks Much, Eric

Part and Inventory Search

Back
Top