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 strongm 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
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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 =...
  7. DotNetter

    An admin changing a limited user's default printer

    I am on an admin on my home PC and my kids have a "limited user" account. I've used "1st Security Agent" (http://www.softheap.com/newadmin.html) to further limit their damaging abilities :-) Somehow, however, their default printer got set to "Fax" instead of our actual printer and they have no...
  8. DotNetter

    Event fired in loop only getting handled once

    I am firing an event from within a loop: Private Sub btnCompleted_impl_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCompleted_impl.Click btnCompleted_impl.Enabled = False Cursor = Cursors.WaitCursor Dim lvi As ListViewItem For Each lvi In...
  9. DotNetter

    Having a VB.NET desktop app restart itself

    How can I have my VB.NET desktop app restart itself. In other words, when the user clicks on "Restart the wizard" button, it should relaunch itself. (I have the EXE runnable from a URL, if that helps anything...) Thanks, Dot
  10. DotNetter

    Watch value <> Command (Immediate) Window value

    This really disturbs me. I have a value that unexplainably and surprisingly changed in front of my eyes in the Watch window. It made no sense to me. Without advancing execution, I checked the same exact (trust me - it was exactly the same) value in the Command (Immediate) window - and it was...
  11. DotNetter

    My IF condition executes inconsistently - DESPERATELY NEED HELP :-(

    I've spent hours and hours on this and would be most grateful if someone could help me get some sleep. I've got the following two subs: Private Sub EraseAllAccountRelatedControls() Dim x As String 'dummy value Dim ctl As Control For Each ctl In Controls If ctl Is Nothing = False...
  12. DotNetter

    Selected ListViewItem is the wrong color (grey instead of blue)

    I have a ListView with FullRowSelect=True. When I select an row (i.e. a ListViewItem) the selected row turns blue, as I'd expect. Here's the problem: I need to set HideSelection=False. When I do that, the selected ListViewItem no longer is highlighted in blue, but rather in grey. This bugs...
  13. DotNetter

    Prevent user from moving column-headers on ListView

    Is there a way to prevent a user from moving column-headers in a ListView? I don't want to disable the control, because the colors (and my ListViewItem images) get all grayed-out. Thanks! Dot
  14. DotNetter

    First fire of 'SelectedIndexChanged' event works, but not on 2nd fire

    I have this line in my SelectedIndexChanged event: Dim SelectedClassID As Integer = CType(lvwRequestSummary.SelectedItems(0).Tag, Integer) The tag is set to a valid integer. That does not seem to be the problem. On the first fire of this event, this line works and the variable is properly...
  15. DotNetter

    ListView only displays the first 259 characters of each item

    When you add long strings to a ListView control, all of the string is added to the items collection, but the control only displays the first 259 characters of each item. I've seen the KB article at http://support.microsoft.com/default.aspx?scid=kb;en-us;321104 - but their brilliant "resolution"...
  16. DotNetter

    Putting Focus on a textbox and having the Enter key 'click' a button

    I have a textbox (along with a "submit" command-button and a couple other controls) in a UserControl which, in turn, sits on a form. I am trying to give the textbox Focus when the UserControl loads. In the constructor of the UserControl, I do a txtFilter.Focus() but it doesn't work. (In case...
  17. DotNetter

    Changing JUST the font size of a label

    How do I simply change the size and boldness of a font of a label without changing the font-family? lblClassName.Font = New System.Drawing.Font("Times New Roman", 14, System.Drawing.FontStyle.Bold) ...is more than I want - I don't want to change the font-family. Thanks, Dot
  18. DotNetter

    Seeking freeware to set users' allowed login times

    Does anyone know of any freeware (or even cheapware :-)) that easily allows a PC admin to regulate when the users on that PC are allowed to login to Windows? Thanks very much! Dot
  19. DotNetter

    Exception 'bubbles-up' too much

    I have some code that looks something like this: Try code block 1 Try code-block 2 (exception thrown here) Catch process exception to my heart's content End Try code block 1 - continued Catch End Try I want to fully process the exception in...
  20. DotNetter

    Will two SQLDataAdapters.Fill() on one SQLConnection work?

    Can you have the Fill() function of two different SQLDataAdapters objects executing simultaneously using the same one SQLConnection? Thanks, Dot

Part and Inventory Search

Back
Top