Click here to Skip to main content
15,881,812 members
Home / Discussions / Spam and Abuse Watch
   

Spam and Abuse Watch

This board allows members to report the accounts of spammers and others who abuse the forums in order to give other members the chance to vote to close the offending account.

 
GeneralSpam article: Content Spotlight by Somnath Roy 2021 Pin
Richard MacCutchan4-Jun-21 21:36
mveRichard MacCutchan4-Jun-21 21:36 
Generalreportable article Pin
Nelek5-Jun-21 3:56
protectorNelek5-Jun-21 3:56 
GeneralRe: Spam article: Content Spotlight by Somnath Roy 2021 - Gone Pin
jeron17-Jun-21 2:05
jeron17-Jun-21 2:05 
GeneralTroll from moderation?: Member 15231489 Pin
OriginalGriff4-Jun-21 18:51
mveOriginalGriff4-Jun-21 18:51 
GeneralRe: Troll from moderation?: Member 15231489 - gone Pin
Greg Utas6-Jun-21 0:19
professionalGreg Utas6-Jun-21 0:19 
GeneralSpammer from moderation queue (yang xiaobai) Pin
OriginalGriff4-Jun-21 18:48
mveOriginalGriff4-Jun-21 18:48 
GeneralRe: Spammer from moderation queue (yang xiaobai) - Gone Pin
jeron17-Jun-21 2:06
jeron17-Jun-21 2:06 
GeneralPlagiarism in QA Pin
Richard Deeming4-Jun-21 6:57
mveRichard Deeming4-Jun-21 6:57 
Fadao - Professional Profile[^]
Member questions & answers[^] - specifically populate the dropdown list with time interval in C#[^], solution #6

Resurrecting a solved question from 2014 to post code which is practically identical to that from solution #3.

Solution 3:
C#
DateTime start = DateTime.ParseExact(txtStart.Text,"HH:mm tt", null);
DateTime end = DateTime.ParseExact(txtEnd.Text, "HH:mm tt", null);

int interval = 30;
List<string> lstTimeIntervals = new List<string>();
for (DateTime i = start; i < end; i =i.AddMinutes(interval))
   lstTimeIntervals.Add(i.ToString("HH:mm tt"));

dropdownList.DataSource = lstTimeIntervals;
dropdownList.DataBind();
Solution 6:
C#
protected void Page_Load(object sender, EventArgs e)
 {
   if (!Page.IsPostBack)
    {             
        PopulateTime();
   }

}

public void PopulateTime()
{

    DateTime start = DateTime.Parse("08:00");
    DateTime end = DateTime.Parse("18:00");

    int interval = 30;
    List<string> lstTimeIntervals = new List<string>();
    for (DateTime i = start; i < end; i = i.AddMinutes(interval))
    lstTimeIntervals.Add(i.ToString("HH:mm tt"));
    
//Assign the data source and bind dropdown       
    cb_Time.DataSource = lstTimeIntervals;
    cb_Time.DataBind();            

}
Aside from the pointless comment and changing the name of the control, the highlighted section is identical to the previous solution.



"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer

GeneralRe: Plagiarism in QA - Gone Pin
jeron17-Jun-21 2:06
jeron17-Jun-21 2:06 
GeneralSpammer from moderation queue (Jean Beaumont) Pin
OriginalGriff4-Jun-21 5:28
mveOriginalGriff4-Jun-21 5:28 
GeneralRe: Spammer from moderation queue (Jean Beaumont) - gone Pin
Greg Utas5-Jun-21 8:46
professionalGreg Utas5-Jun-21 8:46 
GeneralSpammer from moderation: JakeClarke - gone Pin
Richard MacCutchan4-Jun-21 3:21
mveRichard MacCutchan4-Jun-21 3:21 
GeneralSpammer from moderation queue (Jimmydavid24) - gone Pin
OriginalGriff4-Jun-21 2:27
mveOriginalGriff4-Jun-21 2:27 
GeneralTroll in Q&A: bicol spotted Pin
Richard MacCutchan4-Jun-21 1:44
mveRichard MacCutchan4-Jun-21 1:44 
GeneralRe: Troll in Q&A: bicol spotted - gone Pin
Greg Utas6-Jun-21 14:29
professionalGreg Utas6-Jun-21 14:29 
GeneralSpammer from moderation queue (A[DELETED] Plastics) Pin
OriginalGriff4-Jun-21 1:42
mveOriginalGriff4-Jun-21 1:42 
GeneralRe: Spammer from moderation queue (A[DELETED] Plastics) - gone Pin
Greg Utas4-Jun-21 3:15
professionalGreg Utas4-Jun-21 3:15 
GeneralSpammer from moderation: Member 15230713 - gone Pin
Richard MacCutchan4-Jun-21 1:01
mveRichard MacCutchan4-Jun-21 1:01 
GeneralSpam article (Up... | Cloud Based ERP ...) Pin
Wendelius3-Jun-21 23:15
mentorWendelius3-Jun-21 23:15 
GeneralRe: Spam article (Up... | Cloud Based ERP ...) - gone Pin
Greg Utas4-Jun-21 3:14
professionalGreg Utas4-Jun-21 3:14 
GeneralSpammer from moderation queue (H[DELETED] Hammer Siding, Windows &amp; Roofing) Pin
OriginalGriff3-Jun-21 23:08
mveOriginalGriff3-Jun-21 23:08 
GeneralRe: Spammer from moderation queue (H[DELETED] Hammer Siding, Windows &amp; Roofing) - gone Pin
Greg Utas4-Jun-21 3:14
professionalGreg Utas4-Jun-21 3:14 
GeneralSpam would be article ("Ra[DLETED]ses Poker Poker Online", eva agustina) Pin
OriginalGriff3-Jun-21 23:07
mveOriginalGriff3-Jun-21 23:07 
GeneralRe: Spam would be article ("Ra[DLETED]ses Poker Poker Online", eva agustina) - gone Pin
Greg Utas4-Jun-21 3:14
professionalGreg Utas4-Jun-21 3:14 
GeneralSpam in Q&A (how to send boolean values ...) Pin
Ralf Meier3-Jun-21 21:33
mveRalf Meier3-Jun-21 21:33 

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.