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 SkipVought 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: 2dogs
  • Order by date
  1. 2dogs

    vb and access table

    The easiest and simplest way to do this would be to: 1 place a DataControl on your form. 2 Set its DataBaseName property to your DataBase. 3 Set its recordsource property to your desired table. 4 In code: assuming table with at least two fields data1.recordset.movefirst...
  2. 2dogs

    MsFlexGrid sorting on a column

    Try setting msflexgrid1.col to the desired column.<br>Or if the user clicks in the column then presses a button with your code in it's click event&nbsp;&nbsp;the sort will take place.<br><br><br>good luck<br><br>bob <p>Robert L Norton<br><a...
  3. 2dogs

    Need help with making a label using variables

    In the list1 click event place code ie:<br><br>label1.caption = list1.text<br><br><br>hope this helps<br><br>bob<br> <p>Robert L Norton<br><a href=mailto:2dogs@webace.com.au>2dogs@webace.com.au</a><br><a href= > </a><br>
  4. 2dogs

    Database problem..

    If I understand your problem correctly the two Items below might help.<br><br>1.&nbsp;&nbsp;If you use the DataGrid bound to an adodc your changes will be saved when your user moves to another column or row.<br><br>2.&nbsp;&nbsp;You can use a message box in the forms QueryUnload proceedure to...
  5. 2dogs

    Problem with Combo-Box connecting to my database

    Try setting the RowSource to the AoDc and the ListField property to the desired Field. The BoundColumn may be set to another field in your table if desired.<br><br>The style property may now be set to either 0 or 2.<br><br>I hope this helps.&nbsp;&nbsp;It works for me.<br><br>good...
  6. 2dogs

    Visual Basic 3.0: Is it possible to make an Exe file?

    When you have Written your code go to File Menu and select <br> 'Make EXE File'.<br> <br> Good Luck,<br> Bob<br> <br> <br> <br> <p>Robert L Norton<br><a href=mailto:2dogs@webace.com.au>2dogs@webace.com.au</a><br><a href= > </a><br>
  7. 2dogs

    currency

    Try something like this:<br> <br> <br> Dim amount As Single<br> amount = 7.952<br> Text1.Text = Format(amount, &quot;currency&quot;)<br> <br> <br> <br> hope this helps<br> Bob <p>Robert L Norton<br><a href=mailto:2dogs@webace.com.au>2dogs@webace.com.au</a><br><a href= > </a><br>

Part and Inventory Search

Back
Top