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 Chris Miller 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. FerakIII

    If I have a query: sql = "SE

    In my understanding, you can set the RecordSource of any ADO recordset to an SQL statement. so something lik Dim Db As Database, Rs As Recordset Set Db = Workspaces(0).OpenDatabase("Music.mdb") Set Rs = Db.OpenRecordset("SELECT Record.Rnr, Sname, SLength FROM Record, Song...
  2. FerakIII

    opening a form modally

    There is a property on each form called StartUpPosition. If you set this to 1 - CenterOwner, then your modal form will automatically center itself on the parent form. Hope This Helps
  3. FerakIII

    How do I display row labels on a MSChart

    I have looked all round for a propety but can't find one... is it just me? All i want is "Mon", "Tues", etc below my bars in a Bar Graph. Cheers
  4. FerakIII

    MSFlexGrid question

    If you are trying to select a whole row when the user clicks on it, then you can just set one of the properties in the flexgrid. In the properties page there is a property SelectionMode, set it to "1 By Row" and it should select rows automatically. The only problem I have with it is...
  5. FerakIII

    VB, Bugs, Modal Forms and the Evil Mouse Wheel

    Im having a problem with modal forms and the mouse wheel. When I show a modal form in VB6, then subsequently rotate the mouse wheel over any other form in my program, I have a very nasty crash. It only happens when I rotate the wheel, clicking it or the other buttons do not make it crash...

Part and Inventory Search

Back
Top