Click here to Skip to main content
15,797,721 members
Home / Discussions / Article Writing
   

Article Writing

 
QuestionInterrogating the Excel VBA 'Filters' object Pin
captaincoder215-Jul-21 17:27
captaincoder215-Jul-21 17:27 
AnswerRe: Interrogating the Excel VBA 'Filters' object Pin
Richard Deeming15-Jul-21 21:57
mveRichard Deeming15-Jul-21 21:57 
QuestionRolling back to a draft. Pin
Jon McKee11-Jul-21 13:59
professionalJon McKee11-Jul-21 13:59 
AnswerRe: Rolling back to a draft. Pin
Sean Ewington11-Jul-21 22:50
staffSean Ewington11-Jul-21 22:50 
GeneralRe: Rolling back to a draft. Pin
Jon McKee12-Jul-21 9:53
professionalJon McKee12-Jul-21 9:53 
GeneralRe: Rolling back to a draft. Pin
Sean Ewington12-Jul-21 10:32
staffSean Ewington12-Jul-21 10:32 
GeneralRe: Rolling back to a draft. Pin
Jon McKee12-Jul-21 11:02
professionalJon McKee12-Jul-21 11:02 
QuestionCode Pin
Member 152746173-Jul-21 8:48
Member 152746173-Jul-21 8:48 
Where do i put this code or what app to use to put in this code:
<pre>Friend ThreadResults As New List(Of Thread_History_Class)()

    Public Class Thread_History_Class

    Private _FrequencyID As Int64 = 0
    Private _Port As Int32 = 0
    Private _ResultTxt As String = ""
    Private _Success As Boolean = False

    Friend Sub New()
' do nothing

    End Sub

    Friend Sub New(ByVal FrequencyID As Int64,
                   ByVal Port As Int32,
                   ByVal ResultTxt As String,
                   ByVal Success As Boolean)

  Friend Property Success() As Boolean
        Get
            Return _Success
        End Get
        Set(value As Boolean)
            _Success = value
        End Set
    End Property

        Friend Property ResultTxt() As String
        Get
            Return _ResultTxt
        End Get
        Set(value As String)
            _ResultTxt = value
        End Set
    End Property

    Friend Property Port() As Int32
        Get
            Return _Port
        End Get
        Set(value As Int32)
            _Port = value
        End Set
    End Property

    Friend Property FrequencyID() As Int64
        Get
            Return _FrequencyID
        End Get
        Set(value As Int64)
            _FrequencyID = value
        End Set
    End Property

End Class

AnswerRe: Code Pin
Greg Utas3-Jul-21 9:00
mveGreg Utas3-Jul-21 9:00 
QuestionI wonder if there is a way to download all the articles submitted by myself? Pin
Dr. Song Li30-Jun-21 12:16
Dr. Song Li30-Jun-21 12:16 
AnswerRe: I wonder if there is a way to download all the articles submitted by myself? Pin
Sean Ewington2-Jul-21 4:58
staffSean Ewington2-Jul-21 4:58 
GeneralRe: I wonder if there is a way to download all the articles submitted by myself? Pin
Dr. Song Li4-Jul-21 9:17
Dr. Song Li4-Jul-21 9:17 
QuestionAuthors' names order inverted Pin
Dener Araújo28-Jun-21 3:14
professionalDener Araújo28-Jun-21 3:14 
AnswerRe: Authors' names order inverted Pin
Sean Ewington28-Jun-21 3:22
staffSean Ewington28-Jun-21 3:22 
GeneralRe: Authors' names order inverted Pin
Dener Araújo28-Jun-21 3:46
professionalDener Araújo28-Jun-21 3:46 
GeneralRe: Authors' names order inverted Pin
Dener Araújo29-Jun-21 3:54
professionalDener Araújo29-Jun-21 3:54 
GeneralRe: Authors' names order inverted Pin
Sean Ewington29-Jun-21 4:00
staffSean Ewington29-Jun-21 4:00 
QuestionObsolete article? Pin
Nelek27-Jun-21 5:55
protectorNelek27-Jun-21 5:55 
AnswerRe: Obsolete article? Pin
Richard MacCutchan27-Jun-21 6:32
mveRichard MacCutchan27-Jun-21 6:32 
GeneralRe: Obsolete article? Pin
Nelek27-Jun-21 9:54
protectorNelek27-Jun-21 9:54 
GeneralRe: Obsolete article? Pin
CodeErgoSum29-Jun-21 7:02
CodeErgoSum29-Jun-21 7:02 
GeneralRe: Obsolete article? Pin
Sean Ewington29-Jun-21 7:09
staffSean Ewington29-Jun-21 7:09 
GeneralRe: Obsolete article? Pin
CodeErgoSum29-Jun-21 7:22
CodeErgoSum29-Jun-21 7:22 
GeneralRe: Obsolete article? Pin
Sean Ewington29-Jun-21 7:25
staffSean Ewington29-Jun-21 7:25 
GeneralRe: Obsolete article? Pin
Nelek29-Jun-21 10:23
protectorNelek29-Jun-21 10:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.