I want it to NOT bump down to the next line, I want it to run off the end of the textbox so that if you want to read it you have to put the cursor in the line then arrow right, just like if you have a long name, caption, color or text etc in the properties window of the VB development...
Does anyone know how to make a text box not word wrap without using a horizontal scollbar? It must be possible because that's what the properties window does.
Thanks,
Gav.
I found the answer to this problem.
Tools>Database Utilities>Repair Database &
Tools>Database Utilities>Compact Database
Which clears any dead or malfunctioning records from the database.
I was using this code successfully to move to the last recordset in an Access table
Set rsStudents = dbSJS1.OpenRecordset("Students", dbOpenTable)
rsStudents.MoveLast
txtIDNumber = rsStudents("ID Number") + 1
(to display what the current record will be numbered, once...
Thanks MrMoocow,
I needed the same help. I was using
"string" & vbCrLf & _ but it still wasn't working and I thought whaa??
P.S. mhall,
use
& vbCrLf
if you want to force a carriage return with code and
& vbCrLf & _
"...
Goatlover,
To open a raf - Open "filename" [For Random](not needed as it is the default) As [#]filenumber [Len = recordlength] (default is 128)
eg.
Open "C:\AddressBook.txt" as #5 Len = 25
If the file doesn't exist it is created
to write to the file
Put...
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.