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: *

  • Users: DotNetter
  • Order by date
  1. DotNetter

    Cursor changes when crossing border of non-resizable form

    Thank you - oops - I should have caught that one... Dot
  2. DotNetter

    Cursor changes when crossing border of non-resizable form

    I have a WinForm that I do not want the use to resize. I don't see a Resizable property that I can set to false. So I enforced it by setting the maximum and minimum size of the form to the same. First of all, is there a better way to do that? Secondly, I don't want the cursor changing when...
  3. DotNetter

    Displaying a mix of plain-text and hyperlinks in a WinForm

    I have a list of items to display to users in a VB.NET WinForm app. The list will be mostly plain text, with some hyperlinks sprinkled in, as well. I don't want the text to be edited. (Probably not relevent, but the text is coming from a stored procedure, one "item"/line per row of the...
  4. DotNetter

    How to remove a bunch of empty ListViewItems

    I have a ListView with several ListViewItems, each ListViewItem has an item and 4 SubItems. My ListView has a bunch of empty ListViewItems that I need to remove from the ListView. Could someone please help me with a little sub into which I could pass a ListView and it will remove all but 5...
  5. DotNetter

    Scrollbar messes up vertical position of anchored buttons

    Oh, gosh... Thanks! [blush] Dot
  6. DotNetter

    Scrollbar messes up vertical position of anchored buttons

    I have a form with two buttons in the lower-right hand corner that I've anchored with the Designer to the top-left. My form's Minimum, Maximum, and starting size are all fixed at the same size, i.e. it won't be resized. At one point in my app, there is more stuff than fits on the form...
  7. DotNetter

    Cursor prematurely flipping back to Default cursor

    The Control's cursor. No RTB's on my form at all. Just a form and a control with a ListView...
  8. DotNetter

    Cursor prematurely flipping back to Default cursor

    The processing time is about 5 seconds. Any tips how to get this to work properly? Thanks, Dot
  9. DotNetter

    Cursor prematurely flipping back to Default cursor

    I have a sub that changes the cursor using: Cursor = Cursors.WaitCursor Later in the code, I use: Cursor = Cursors.Default to change it back. But the cursor switches back to Default prematurely - before that line is actually executed (as observed when stepping through with the...
  10. DotNetter

    An admin changing a limited user's default printer

    Heh, heh, heh... Is there no way for an admin to get to the "current user hive"? [ Hoping... ] Dot
  11. DotNetter

    Event "ListView.ItemCheck" fires too early

    Big, That is terrific!!! As far as what you wrote: I don't understand why - but it's getting handled with exactly what you wrote... Thanks so much - it's great! (star) Dot
  12. DotNetter

    An admin changing a limited user's default printer

    Linney, I tried promoting the user to admin - but still was not able to change the default printers. Could you please clarify this: I looked for that by right-clicking on My Computer | Manage - but couldn't find those options. Could you please be very specific - i.e. pretend you're explaining...
  13. DotNetter

    Event "ListView.ItemCheck" fires too early

    TipGiver, Of course I tried it before replying... :-) But, as I said, if they check a ListViewItem, it actually doesn't dis/able the buttons until they move their mouse. This is a behavior that I've observed when trying your code. For some reason, however, it works just fine if they...
  14. DotNetter

    Event "ListView.ItemCheck" fires too early

    Well, I don't really think MouseUp is the right event. If a user just un/checks a checkbox, nothing happens until they move the mouse. Isn't there a way to use ItemCheck (which would seem to be the right event) to get it to do what I'd like it to do? Thanks, Dot
  15. DotNetter

    Event "ListView.ItemCheck" fires too early

    TipGiver please do explain what you mean... Thanks, Dot
  16. DotNetter

    An admin changing a limited user's default printer

    Thank you very much, Linney, that sounds like the easiest idea! (star) ! Dot
  17. DotNetter

    Event "ListView.ItemCheck" fires too early

    I have the following event handler: Private Sub lvwRequests_auth_ItemCheck(ByVal sender As Object, ByVal e As System.Windows.Forms.ItemCheckEventArgs) Handles lvwRequests_auth.ItemCheck If lvwRequests_auth.CheckedItems.Count = 0 Then btnApprove_auth.Enabled = False btnView_auth.Enabled =...
  18. DotNetter

    An admin changing a limited user's default printer

    Linney, thanks for the ideas! Regarding the first idea, will promoting and then re-demoting them possibly cause any unwanted changed - like unexpected rights to folders that I've locked them out of, or administrative rights that might linger - or should that be 100% clean? Thanks, Dot
  19. DotNetter

    An admin changing a limited user's default printer

    Not a dumb question - but I can't get it to work! (Their tech support is just awful...)
  20. DotNetter

    An admin changing a limited user's default printer

    Nope, can't get to it that way, either. Is there an easy registry change I could make?

Part and Inventory Search

Back
Top