CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: 957

Page 1 of 7 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    763

    Re: Can't find Recurrence pattern class

    If someone could point me in the right direction to create a recurrence pattern, that would also be sufficient.
  2. Replies
    1
    Views
    763

    Can't find Recurrence pattern class

    I've been searching on Google for a recurrence pattern class for awhile now. I need a class I can use to schedule daily, weekly, monthly, and yearly recurrences of messages. I've found references to...
  3. Replies
    5
    Views
    637

    Re: Disappearing controls

    Wow, that was simple! Thank, GremlinSA.

    HanneSThEGreaT, I was disappearing completely. The second control's location Y is increased by the height of the first one so I suspected that the first one...
  4. Replies
    5
    Views
    637

    Disappearing controls

    Private Sub btnMonSet_Click(sender As System.Object, e As System.EventArgs) Handles btnMonSet.Click
    My.Settings.tweetMon = tbMon.Text

    If tbddOccurrence.Text = "Just Once" Then
    ...
  5. Replies
    3
    Views
    1,209

    Re: Custom setting to save multiple instances

    Anyone have any ideas?
  6. Replies
    5
    Views
    4,190

    Re: Listview auto-scroll vertically

    I tried that to no avail. What I need to do is convert the horizontal lines that are drawn into to vertical ones.
  7. Replies
    3
    Views
    1,209

    Custom setting to save multiple instances

    I have this code for custom settings:


    Imports System.Configuration

    Public Class setLV
    Inherits ApplicationSettingsBase

    Private fpListViewItems As List(Of ListViewItem)
  8. Replies
    5
    Views
    4,190

    Re: Listview auto-scroll vertically

    Yes, it won't move.
  9. Replies
    5
    Views
    4,190

    Listview auto-scroll vertically

    I have this code:

    Private Sub DragDropListView_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseMove

    If KeyItem Is Nothing Then
    ...
  10. Replies
    3
    Views
    873

    Re: Listview imagelist mismatch

    Oooooooooohhhhhh!



    Thanks! That's all I needed!
  11. Replies
    3
    Views
    873

    Re: Listview imagelist mismatch

    Oops... Her is my code now:


    For i = 0 To Form1.Lv2.Items.Count - 1
    Form1.IL.Images.Clear()
    Form1.IL.Images.Add(Icon.ExtractAssociatedIcon(Me.Items(i).SubItems(1).Text))...
  12. Replies
    3
    Views
    873

    [RESOLVED] Listview imagelist mismatch

    Long time, no see!

    I have a listview with auto-scrolling and an imagelist for the items' icons. When I drag and drop the listview items, the icons cease to match up properly.

    Here is the code I...
  13. Replies
    8
    Views
    1,892

    Re: Drag n' Drop between controls to switch values.

    I had a breakthrough and will show my results but first, I need to get something to work in order to do that.

    Buttons cannot have the itemdrag event which is needed to use this code:
    ...
  14. Replies
    8
    Views
    1,892

    Re: Drag n' Drop between controls to switch values.

    Okay, I understand what you are saying but I do not know which two controls the user will select.
    How can I refer to a control with knowing its name in advance?
  15. Replies
    8
    Views
    1,892

    Re: Drag n' Drop between controls to switch values.

    I am still struggling with this. All I need to know is how to switch two control's locations.
  16. Replies
    8
    Views
    1,892

    Re: Drag n' Drop between controls to switch values.

    Thanks GremilnSA. Your post inspired many ideas.

    I decided to instead move controls around in runtime with this

    Private Sub ProBtn_MouseDown(ByVal sender As Object, ByVal e As...
  17. Replies
    8
    Views
    1,892

    Drag n' Drop between controls to switch values.

    Long time no see. I have been feeling out other languages like perl, python, French, Russian, and c sharp.

    Anyway, I have this code.


    Imports System.Windows.Forms.Button

    Public Class ProBtn...
  18. Replies
    5
    Views
    1,050

    Re: retrieve image from open program

    Here's a picture, http://img827.imageshack.us/img827/1082/unledsge.png.
  19. Replies
    5
    Views
    1,050

    Re: retrieve image from open program

    I made progress with his


    Private Sub btnRefresh_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnRefresh.Click
    lstMain.Items.Clear()
    For Each op As...
  20. Replies
    5
    Views
    1,050

    Re: retrieve image from open program

    Thanks han but I still get a problem, "illegal characters in path"

    Here's what I have


    Private Sub btnRefresh_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
  21. Replies
    5
    Views
    1,050

    Re: retrieve image from open program

    I do not understand how to retrieve the file path of the open program either; I believe that would solve my problem here.
  22. Replies
    5
    Views
    1,050

    retrieve image from open program

    I am using this code to create a list of open windows. How do I extract an icon from the open program so I can add it to an imagelist?


    Private Sub btnRefresh_Click(ByVal sender As System.Object,...
  23. Imagelist in listview. Don't want to reuse icons.

    Okay, I have this code


    Public Class Form1

    Dim IIa As Integer
    Dim IIg As Integer
    Dim x As Integer
    Dim Del As Integer
    Dim WT As Integer
  24. Replies
    4
    Views
    3,767

    Re: Listview issue

    Thanks dglienna & HanneSThEGreaT!

    HanneSThEGreaT, your suggestion worked perfectly!
  25. Replies
    4
    Views
    3,767

    [RESOLVED] Listview issue

    I have this code


    Private Sub LVmain_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles LVmain.SelectedIndexChanged
    Label1.Text =...
Results 1 to 25 of 159
Page 1 of 7 1 2 3 4





Click Here to Expand Forum to Full Width

Featured