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 Mike Lewis 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. ddbbgg

    Treeview Control Problem

    VBSlammer, I will try putting the treeview on a subform. thanks for your help!! I am a little concerned though. i thought my treeview expand logic would stop the inappropriate reloading of the tree. Do i have something missing/incorrect with this logic? Private Sub objTreeview1_Expand(ByVal...
  2. ddbbgg

    Treeview Control Problem

    I am using SP4. through further debugging i have narrowed the problem down to the treeview expand event. try this on the sample you created? for debugging purposes put simple msgboxes in the form load, open, activate, tree expand, and tab change envents. The msgbox should identify the...
  3. ddbbgg

    Treeview Control Problem

    I am having a treeview control problem in access 2000. the treeview is located on the first page of a tab control and works fine as long as i remain on that page. as soon as i change to another page on the tab control, and come back, the nodes of the treeview are garbled. the next click i...
  4. ddbbgg

    Active X Calendar control

    DK77 Sorry, i gave you the wrong code. try this on the from_open event: Private Sub Form_Open(Cancel As Integer) Me.ActiveXCtlCalendar.SetFocus Me.ActiveXCtlCalendar = Format(Now(), "Short Date") Me.Refresh End Sub
  5. ddbbgg

    Active X Calendar control

    DK77 The calendar control 9.0 does seem different in access 2000. i solved the problem by using the now() function with the Got_Focus and Form_Open Events. here is the code (i named my activeX control ActiveXCtlCalendar): Private Sub Form_Open(Cancel As Integer) Me.ActiveXCtlCalendar.SetFocus...

Part and Inventory Search

Back
Top