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: *

  • Users: Proy
  • Order by date
  1. Proy

    <b>Formatting in TEXT Format</b>

    Try using the chr() function in VB instead of tabbing. Use chr(9) for Tab. Proy
  2. Proy

    Returning a specific record

    Assuming your record set name to be rs, the following will print records from 5 to 10. rs.Move 5 Do while not rs.EOF and rs.RecordCount <= 10 rs.Fields(&quot;column1&quot;) rs.MoveNext Loop Replace column1 with the frist field in your record set.
  3. Proy

    Accessing wrapped control's value from ASP

    I am using a text box[I would be using a rich text box instead later on] wrapped in a user control(.ocx) in my ASP page. This control is embedded in the page using the object tag. I have defined a property called Text in my control for storing the contents of the text box. I'm able to access...

Part and Inventory Search

Back
Top