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 strongm 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. 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
  16. DaProgrammer

    Image Map Captions?

    Ok, but two things: 1. How do i add more items in different positions? 2. By declaring a designated position, won't it change when in different screen resolutions? Thanks
  17. DaProgrammer

    Image Map Captions?

    http://ysw.port5.com/text1.htm I will eventually need several temperature inputs all over the map in their respective position.
  18. DaProgrammer

    Image Map Captions?

    OK! Scratch that last one as i have figured it out partially. I can get the caption on the image, but if i put the Span statement after the image it is nolonger in it. So, it has to be before. In that case, however, I am unable to adjust the text, without adjusting the image. Help...
  19. DaProgrammer

    Image Map Captions?

    I am unfamiliar with CSS. Could you give me a bit more of an idea or an alternative? THANKS MUCH, DaProgrammer
  20. DaProgrammer

    Image Map Captions?

    Dear All, Im sure that this can be done, but I am wanting to make an image and on certain coordinates, input data from an XML file across the web. I know how to insert the XML data into anywhere on the page, but i do not know how do this over an image at designated coordinates. PLEASE...

Part and Inventory Search

Back
Top