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 bkrike 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 GavC

  1. GavC

    I need to make a text box not word wrap without using a scollbar

    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...
  2. GavC

    I need to make a text box not word wrap without using a scollbar

    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.
  3. GavC

    Problem with a MoveLast command

    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.
  4. GavC

    Problem with a MoveLast command

    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...
  5. GavC

    command button color won't change

    Yes that worked, Thank You Chaz.
  6. GavC

    command button color won't change

    Even though I've changed the backcolor property, the command button color won't change. Does anyone know why this would be? Thanks, Gav.
  7. GavC

    Multi line text in text field

    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 & _ &quot...
  8. GavC

    Please help w/ RANDOM ACCESS FILES

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

Part and Inventory Search

Back
Top