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...
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
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...
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...
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 )...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.