Search results

  1. rockman

    "Filter For:" on custom menu bar?

    Unfortunately I never found an answer for this problem. Jeff
  2. rockman

    TreeView of directory

    The code is still awesome 2 years later. Treeview with icons! Very cool. Thanks!
  3. rockman

    Formheader in Northwind 2007

    Microsoft uses an imbedded picture that you don't have access to. Next best thing: use this screen captured image of the header. Assign this bmp as the form picture.
  4. rockman

    Global Variable Question

    Duly noted Pat. I bumped up your reputation (1 vote of 1,234,239 I'm sure! :D)
  5. rockman

    Global Variable Question

    Spot on answers. Good work!
  6. rockman

    Datasheet view Column Header

    twosides, I'm looking for your solution to this thread. Can you elaborate? Thanks, Jeff
  7. rockman

    caption height in datasheet view

    By my knowledge, you can't do what you want with a datasheet. If you really want the look you can create a continuous form subform (as RuralGuy suggests) that looks like a datasheet view. Create labels of your field names in the header and have them appear in whatever format you desire. HTH, Jeff
  8. rockman

    Bug: Treeview loses check marks on a tab control

    Addendum: Forget the "work around". If you hide the control and then make it visible again, the check boxes all reset to False! Grrrrr.
  9. rockman

    Bug: Treeview loses check marks on a tab control

    If anyone wants to test this out to verify its a true bug it would be helpful: Create a tab control. Place a treeview control (with checkboxes = Yes) on one of the pages. Populate the treeview. Check some boxes. Move to the next page of the tab control. Return to the page with the treeview...
  10. rockman

    Drag-and-Drop Treeview changes

    Hi all, I used the MS KB example to add Drag-and-Drop functionality to a treeview control that I have. It works pretty slick. But (and there always seems to be a but), when I drag a node to a different location the Index property doesn't change. Quick Example...
  11. rockman

    "Filter For:" on custom menu bar?

    Thanks anyway.
  12. rockman

    "Filter For:" on custom menu bar?

    When I right-click a textbox a shortcut menu pops-up with a multitude of options including "Filter For:". Hope you have some insight on this ghudson.
  13. rockman

    "Filter For:" on custom menu bar?

    I'm not sure if anyone has come across this but here goes: I'm creating a custom shortcut menu in which I'd like to maintain some of the filter functionality that comes with the standard Access shortcut menu. The customize menu window allows me options for "Filter By Selection", "Filter...
  14. rockman

    Disable Tool-Bar Menu - 'Delete Record'

    Carol - To the point of your first question, the correct syntax for menu item manipulation is this: CommandBars("Menu Bar").Controls("Edit").Controls("Delete Record").Visible = False But I agree with ghudson, creating your own menus and toolbars is a better option. I'm not positive, but I...
  15. rockman

    Split Window View

    Access 12 will have a "split" window view where by the user sees both a datasheet view and single form view simultaneously (see attached picture). Has anyone ventured to create a similar beast in Access 2003? I'm running into great difficulty updating one view as the other is editted.
  16. rockman

    copy and paste

    This may sound like a silly (circular) question but, when you attempt to paste the text into the "Paste Text Here" textbox, does the text appear in that box? Your chain of events occurs to me when I place the cursor in the "Paste Text Here" textbox, DON'T paste anything, and press the Enter...
  17. rockman

    copy and paste

    I just tried the database on my computer and the text gets put into all the right places. To work the demo: You need to select all the text in the textbox to the right, copy that text (ctrl-c), and then move your cursor to the textbox on the left, and paste (ctrl-v). The data should then...
  18. rockman

    copy and paste

    I fully understand the point that you are making ghudson, but the original question states "the information is always the same". Certainly, you can't guarantee that the information will be perfect and hence my earlier comment: But what guarantees are you looking for. I have a simple text box...
  19. rockman

    copy and paste

    Try this: Samzie, I hope the attached DB makes it more clear. Jeff
  20. rockman

    copy and paste

    Samzie, I don't think that you are "asking for the impossible." Your initial question is succinctly stated and certainly doable. Create textboxes for the name, DOB, consultant, ward fields. Create an unbound textbox on the form called txtRawText and attach the following code: Private Sub...
Top Bottom