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. GubertDisentis

    Why do I get Input past end of file error message

    Open 761 For Input As #5 Input #5, ddd Text1.Visible = True Text1.Width = 4000 Text1.Height = 4000 Text1.Text = ddd Text1.Text = Input$(LOF(5), #5) Close #5 I wrote a text using a text box and saved it in file 761. After that I wish I could open and read the text...
  2. GubertDisentis

    How can I create TextBox array ?

    The answer is during design.
  3. GubertDisentis

    How can I create TextBox array ?

    Is it possible to create a text box array which allows to have 100 text boxes on a form and then access them by their array index ? I know I can enter them manually but I would prefer a simpler method. Thanks GubertDisentis
  4. GubertDisentis

    Print A Table Using VB6

    What is the most simple method to be able to print a table ( as shown below ) on paper ? I tried with arrays but had no success. Month Income Expenses Misc Jan 50000 14000 500 Feb 60000 13000 700 March 70000 16000 300 April 80000 5000 1000 Thanks...
  5. GubertDisentis

    Need help with a Grid

    I have an application with a MSFlexGrid. In Grid(col1) there is a name. In Grid(col2) there is .txt How can I create a col3 which combines col1 with col2 Col3 should then read name.txt I tried Grid1(Col13)= Grid1(Col1) + Grid1(Col2) After I replaced the + with & but nothing works. What is...
  6. GubertDisentis

    Eliminate Multiple Entries an an array

    Where can I find this dictionary object ?
  7. GubertDisentis

    Eliminate Multiple Entries an an array

    I have an array as follows : a(0) = "f" a(1) = "a" a(2) = "b" a(3) = "c" a(4) = "a" a(5) = "b" a(6) = "d" etc The size of the array is appr 70000 Many values are repeats ( a and b ) in the above sample. How can I create an array which would contain only f,a ( but only once ) b ( only once )...
  8. GubertDisentis

    Exit from a loop

    In order to print invoices with a maximum of 15 items I created a random access file like follows: file.item(1) = "Red Ink" file.item(2) = "Blue Ink" file.item(3) = "Green Ink" etc ( Up to 15 items ) On many invoices there are items with no entries and my particular question is how to avoid...

Part and Inventory Search

Back
Top