Click here to Skip to main content
15,887,135 members
Home / Discussions / Article Writing
   

Article Writing

 
Questionway too many edits for me Pin
Nelek26-Jul-21 21:18
protectorNelek26-Jul-21 21:18 
AnswerRe: way too many edits for me Pin
Greg Utas27-Jul-21 0:55
professionalGreg Utas27-Jul-21 0:55 
GeneralRe: way too many edits for me Pin
Nelek27-Jul-21 2:08
protectorNelek27-Jul-21 2:08 
AnswerRe: way too many edits for me Pin
Sean Ewington27-Jul-21 2:18
staffSean Ewington27-Jul-21 2:18 
QuestionArticle added seems removed- Pin
Sreejith Kizhakkedath21-Jul-21 4:23
Sreejith Kizhakkedath21-Jul-21 4:23 
AnswerRe: Article added seems removed- Pin
Richard MacCutchan21-Jul-21 5:35
mveRichard MacCutchan21-Jul-21 5:35 
GeneralRe: Article added seems removed- Pin
Greg Utas21-Jul-21 6:54
professionalGreg Utas21-Jul-21 6:54 
GeneralRe: Article added seems removed- Pin
Richard MacCutchan21-Jul-21 9:02
mveRichard MacCutchan21-Jul-21 9:02 
Questionanother lemon from the same tree ? Pin
BillWoodruff19-Jul-21 10:55
professionalBillWoodruff19-Jul-21 10:55 
AnswerRe: another lemon from the same tree ? Pin
Sean Ewington20-Jul-21 1:16
staffSean Ewington20-Jul-21 1:16 
Questionnot an article ? Pin
BillWoodruff19-Jul-21 10:25
professionalBillWoodruff19-Jul-21 10:25 
AnswerRe: not an article ? Pin
Nelek19-Jul-21 10:35
protectorNelek19-Jul-21 10:35 
GeneralRe: not an article ? Pin
BillWoodruff19-Jul-21 10:58
professionalBillWoodruff19-Jul-21 10:58 
GeneralRe: not an article ? Pin
Nelek20-Jul-21 3:22
protectorNelek20-Jul-21 3:22 
AnswerRe: not an article ? Pin
Sean Ewington20-Jul-21 1:05
staffSean Ewington20-Jul-21 1:05 
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 

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.