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

Search:

Type: Posts; User: tim8w123

Search: Search took 0.03 seconds.

  1. Re: C#.Net Excel Interop Autofilter Range

    Turns out I left out an important piece of information. The Worksheet that the Range is working on was created by doing a Worksheet.Copy(). I did a little research and found the following quote which...
  2. [RESOLVED] C#.Net Excel Interop Autofilter Range

    I need the following filter to work in C#.

    Here is the working Macro in Excel VBA:


    ActiveSheet.Range("$A$1:$XFC$13214").AutoFilter Field:=6, Criteria1:= ">=1/1/2024", Operator:=xlAnd,...
  3. Replies
    1
    Views
    2,391

    Adding a BackgroundImage to a TreeView

    Hi,

    I am trying to add a BackgroundImage to a TreeView. It looks like the only way this will work is to Inherit from TreeView and override OnPaintBackground(System.Windows.Forms.PaintEventArgs...
  4. Re: Inserting Text to the beginning of a RichTextBox maintaining colors

    Looks like it works if I change the order a bit:



    txtStatusLog.SelectionStart = 0
    txtStatusLog.SelectionLength = 0
    txtStatusLog.SelectionColor = Color.Red
    txtStatusLog.SelectedText =...
  5. Inserting Text to the beginning of a RichTextBox maintaining colors

    I have the following code:


    txtStatusLog.SelectionStart = 0
    txtStatusLog.SelectionLength = 0
    txtStatusLog.SelectedText = ("ERROR: " & MyUpdate & "(" & Now & ")" & vbCrLf)...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured