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. davidmreid

    Navigation Pane Font Size

    Is it possible to change the font size of the Navigation Pane in Microsoft Access 2010 -- specifically the objects in the pane? Thank you.
  2. davidmreid

    Query Properties

    ]Is it possible to set the format / decimal properties of multiple fields all at once in the SQL Design View--instead of plodding through each field one at a time? I am simply trying to copy the numerical format "Standard" and "0" decimal places to multiple fields in the query--instead of...
  3. davidmreid

    Change Selected Tab

    Could you please tell me how to programmatically change the current tab on a tabstrip control?
  4. davidmreid

    Which form scrollbar was selected?

    Anyone else got a suggestion?
  5. davidmreid

    Which form scrollbar was selected?

    I am not sure how to reference the scrollbar.
  6. davidmreid

    Which form scrollbar was selected?

    I am using the code (see below for a partial listing) from Stephen Lebans that I have modified to synch the horizontal scrollbar movement of two datasheets. However, I need to skip this process when the vertical scrollbar is used to view records--as this interrupts the conditional formatting I...
  7. davidmreid

    Which form scrollbar was selected?

    Do you know how to determine which form scrollbar (horizontal vs. vertical) was selected when using a datasheet? Thank you
  8. davidmreid

    ListView to enable (multi-select) Drag-and-Drop

    I want to expand on his examples by providing Drag-and-Drop functionality.
  9. davidmreid

    ListView to enable (multi-select) Drag-and-Drop

    Help in enhancing ListView example to enable (multi-select) Drag-and-Drop functionality? Listed below is a double click event on the listview that populates a second listbox: Private Sub ListView1_DblClick() ' User Double Clicked on a Row ' If FieldList = 0 Then ' Move Selected Items from...
  10. davidmreid

    ListView Mouse Events Not Working

    I am still having a problem with the code listed below that I got from ZmrAbdulla. Private Sub listView1_MouseUp(ByVal Button As Integer, ByVal Shift As Integer, ByVal x As Long, ByVal y As Long) If Me.ListView1.ListItems.Count = 0 Then MsgBox "Right click menu available only if...
  11. davidmreid

    Not(Set Subform Recordsouce)

    I get an error message (2580: The recordsource... does not exist) that the data does not exist (it does) when I try to set a query as the recordsource for a subform in a subform on a main form. Any suggestions? Thx. 'Main form Set frm = Forms(strFORM) ' Subform1 on Mainform Set ctl1 =...
  12. davidmreid

    ListView Mouse Events Not Working

    Running the Office XP Service Pack 3 (SP3) for Access 2002 Runtime (http://office.microsoft.com/en-us/assistance/HA011525091033.aspx) is what may have saved the day. Also, I read that Adobe files will override the MSO.dll file. I use Adobe to send Logic Process Charts to the PM depicting every...
  13. davidmreid

    ListView Mouse Events Not Working

    Hi CautionMP and ZmrAbdulla, I do not know why... ButI got the procedure to work--after several unsuccessful attempts--when I simply re-keyed "cb.ShowPopup". Go figure. Thanks, again. -D. P.S. I really like the sample work done by ZmrAbdulla. Excellent! A+
  14. davidmreid

    ListView Mouse Events Not Working

    Thank you for your help. An error message occurs on the cb.ShowPop line (Compile Error: Method or Data Member not found.) Apparently, I may have a corrupt mso.dll file that supports the CommandBar. Any suggestions? Regards, Dave P.S. On a positive note, I no longer get an error message on the...
  15. davidmreid

    ListView Mouse Events Not Working

    Does anyone know how to get the Mouse events (MouseDown, MouseUp, etc...) of the ListView control (MSComctlLib.ListViewCtrl.2) to work in Access 2000/2002? I am trying to use the mouse events to perform a Drag-and-Drop from one listview control to another. I downloaded an excellent sample...
  16. davidmreid

    Parameter query as a report recordsource???

    How can I use parameter query as a report recordsource? I tried the following from Dev Ashish with no luck: Reports: Use a recordset as report's datasource A recordset has a seldom-used property, Name, that gives you the table, query or SQL string that the recordset was opened with. And this...

Part and Inventory Search

Back
Top