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: rymansfla
  • Order by date
  1. rymansfla

    Accessing lables in data reports from code

    Try This: rpt.Sections("Section2").Controls("Label6").Caption = "Total" Good Luck
  2. rymansfla

    Loading a access record into a vb variable

    Do you need just one at a time or a few of the same type? How long do you need the data? Will it change? One value should be read into a simple local variable Dim sName as string sName = rs!FirstName & " " & rs!LastName Multiple Values should be in an array rs.MoveLast lNumValues =...
  3. rymansfla

    SQL, ADO and Subforms

    Documentation on SHAPE command is hard to come by. Try this KB Article http://support.microsoft.com/default.aspx?scid=kb;en-us;Q189657 Also the data form wizard in VB6 helped me in the beginning to utilize the SHAPE commands Good Luck
  4. rymansfla

    Duplicating a form X times

    If the form is to be used in multiple instances with little or no changes then set it up once and declare new uses in the code Dim fFormA as New FormA Load fFormA With fFormA .Caption = "Whatever" .Label1.Caption = "Whatever" .Show End With Each instance will be...

Part and Inventory Search

Back
Top