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

  1. peebatron10k

    SQL result from table to textbox - simple but need help.

    Specify the following query and save it: SELECT Lastrun.Username, LastRun.Date FROM Lastrun ORDER BY LastRun.Date Desc; then use DFirst on this query instead of the table: =DFirst("[Username] & ' on ' & [Date]","NewQuery") perhaps, alternatively use DAO :D
  2. peebatron10k

    problems with CreateControl inside Class

    As it turns out the x, y, width and height parameters for the CreateControl function, although all optional are nested so if ... Application.CreateControl initFrm, acLabel, acDetail, , , , 56 + (X * 226), , 223 becomes... Application.CreateControl initFrm, acLabel, acDetail, , , 0, 56 + (X *...
  3. peebatron10k

    problems with CreateControl inside Class

    I am trying to write a class module which will create a series on controls on any given form with the end result being a menu. the class is called on the load event of a form: Private Sub Class_Initialize() Dim initFrm As String Dim X As Integer Dim p(1 To 17) As Control...

Part and Inventory Search

Back
Top