Hi when i run my app sometimes the treeview is covered up by a glitch
i have attached a example of this to expalin any ideas ???
Printable View
Hi when i run my app sometimes the treeview is covered up by a glitch
i have attached a example of this to expalin any ideas ???
You'll probably need to post the project and give us more information on when the problem happens.
i dont really want to post the project cos its a important college project isnt there a drawing setting for treeviews and or forms
o i forgot to mention if you drag the form off the screen and back on its fine
i normally happens when the form loses focus and another form/ application sits ontop of where it is on the screen
Would you like to email it to me?
I prefer not to use the server and I get a missing dll when I try to open the client project so I won't be able to actually run the project but you could try the following in frmClient (which I assume is the problem form).
VB Code:
Private Sub Form_Activate() Me.Refresh End Sub
thanks for that but now its hides it all does refresh reset the settings to form load ?
like if it was visable = false on form load then it is change
it false again when it is refreshed
No, it doesn't do that. Try
Private Sub Form_Activate()
TVPeople.Refresh
End Sub
thanks marty thats fixed it :)