Click here to Skip to main content
15,867,330 members
Home / Discussions / Article Writing
   

Article Writing

 
QuestionInterrogating the Excel VBA 'Filters' object Pin
captaincoder215-Jul-21 16:27
captaincoder215-Jul-21 16:27 
AnswerRe: Interrogating the Excel VBA 'Filters' object Pin
Richard Deeming15-Jul-21 20:57
mveRichard Deeming15-Jul-21 20:57 
QuestionRolling back to a draft. Pin
Jon McKee11-Jul-21 12:59
professionalJon McKee11-Jul-21 12:59 
AnswerRe: Rolling back to a draft. Pin
Sean Ewington11-Jul-21 21:50
staffSean Ewington11-Jul-21 21:50 
GeneralRe: Rolling back to a draft. Pin
Jon McKee12-Jul-21 8:53
professionalJon McKee12-Jul-21 8:53 
GeneralRe: Rolling back to a draft. Pin
Sean Ewington12-Jul-21 9:32
staffSean Ewington12-Jul-21 9:32 
GeneralRe: Rolling back to a draft. Pin
Jon McKee12-Jul-21 10:02
professionalJon McKee12-Jul-21 10:02 
QuestionCode Pin
Member 152746173-Jul-21 7:48
Member 152746173-Jul-21 7: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 8:00
professionalGreg Utas3-Jul-21 8:00 
QuestionI wonder if there is a way to download all the articles submitted by myself? Pin
Dr. Song Li30-Jun-21 11:16
Dr. Song Li30-Jun-21 11:16 
AnswerRe: I wonder if there is a way to download all the articles submitted by myself? Pin
Sean Ewington2-Jul-21 3:58
staffSean Ewington2-Jul-21 3:58 
GeneralRe: I wonder if there is a way to download all the articles submitted by myself? Pin
Dr. Song Li4-Jul-21 8:17
Dr. Song Li4-Jul-21 8:17 
QuestionAuthors' names order inverted Pin
Dener Araújo28-Jun-21 2:14
professionalDener Araújo28-Jun-21 2:14 
AnswerRe: Authors' names order inverted Pin
Sean Ewington28-Jun-21 2:22
staffSean Ewington28-Jun-21 2:22 
GeneralRe: Authors' names order inverted Pin
Dener Araújo28-Jun-21 2:46
professionalDener Araújo28-Jun-21 2:46 
GeneralRe: Authors' names order inverted Pin
Dener Araújo29-Jun-21 2:54
professionalDener Araújo29-Jun-21 2:54 
GeneralRe: Authors' names order inverted Pin
Sean Ewington29-Jun-21 3:00
staffSean Ewington29-Jun-21 3:00 
QuestionObsolete article? Pin
Nelek27-Jun-21 4:55
protectorNelek27-Jun-21 4:55 
AnswerRe: Obsolete article? Pin
Richard MacCutchan27-Jun-21 5:32
mveRichard MacCutchan27-Jun-21 5:32 
GeneralRe: Obsolete article? Pin
Nelek27-Jun-21 8:54
protectorNelek27-Jun-21 8:54 
GeneralRe: Obsolete article? Pin
CodeErgoSum29-Jun-21 6:02
CodeErgoSum29-Jun-21 6:02 
GeneralRe: Obsolete article? Pin
Sean Ewington29-Jun-21 6:09
staffSean Ewington29-Jun-21 6:09 
GeneralRe: Obsolete article? Pin
CodeErgoSum29-Jun-21 6:22
CodeErgoSum29-Jun-21 6:22 
GeneralRe: Obsolete article? Pin
Sean Ewington29-Jun-21 6:25
staffSean Ewington29-Jun-21 6:25 
GeneralRe: Obsolete article? Pin
Nelek29-Jun-21 9:23
protectorNelek29-Jun-21 9: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.