Click here to Skip to main content
15,884,177 members
Home / Discussions / C#
   

C#

 
GeneralRe: Need to cancel BackgroundWorker Pin
Gerry Schmitz6-Sep-16 10:25
mveGerry Schmitz6-Sep-16 10:25 
QuestionFacebook login form Pin
Launchar31-Aug-16 18:14
Launchar31-Aug-16 18:14 
AnswerRe: Facebook login form Pin
Mycroft Holmes31-Aug-16 19:38
professionalMycroft Holmes31-Aug-16 19:38 
AnswerRe: Facebook login form Pin
Nathan Minier1-Sep-16 0:59
professionalNathan Minier1-Sep-16 0:59 
QuestionPRINT DATE TIME & TEXT ON PICTUREBOX Pin
Member 1271206730-Aug-16 18:11
Member 1271206730-Aug-16 18:11 
AnswerRe: PRINT DATE TIME & TEXT ON PICTUREBOX Pin
Mycroft Holmes30-Aug-16 20:17
professionalMycroft Holmes30-Aug-16 20:17 
QuestionGet value from string and pass it to another field Pin
Member 1105143930-Aug-16 11:50
Member 1105143930-Aug-16 11:50 
AnswerRe: Get value from string and pass it to another field Pin
Simon_Whale30-Aug-16 13:11
Simon_Whale30-Aug-16 13:11 
So if I get you correctly you want to update the property Selo if the comments property has the word "Selo" or some other pre-defined variable in it or add the first value from the comments once it has been broken up.

C#
public class something
{
  public string Comments {get; private set;}
  public string Selos {get;set;}

  public void SetComments(string comment)
  {
    string[] wordsToFind = new string[] {"Selo:", "selo:", "Selos:", "selos:"};
    if(String.IsNullOrEmpty(comment) == true)
    {
      Selos = "None";
    }
    else
    {
      string[] result = comment.Split(wordsToFind, StringSplitOptions.RemoveEmptyEntries);
      Selos = resuls[0];
    }
  }
}

Every day, thousands of innocent plants are killed by vegetarians.

Help end the violence EAT BACON

AnswerRe: Get value from string and pass it to another field Pin
Dave Kreskowiak30-Aug-16 13:17
mveDave Kreskowiak30-Aug-16 13:17 
Questionobject reference not set to an instance of an object Pin
mmiklauz29-Aug-16 6:38
mmiklauz29-Aug-16 6:38 
AnswerRe: object reference not set to an instance of an object Pin
Pete O'Hanlon29-Aug-16 7:23
mvePete O'Hanlon29-Aug-16 7:23 
AnswerRe: object reference not set to an instance of an object Pin
OriginalGriff29-Aug-16 8:05
mveOriginalGriff29-Aug-16 8:05 
AnswerRe: object reference not set to an instance of an object Pin
Abhinav S29-Aug-16 18:36
Abhinav S29-Aug-16 18:36 
QuestionHow to show results based on rdo button selected without having to re-access database? Pin
kmllev29-Aug-16 5:10
kmllev29-Aug-16 5:10 
AnswerRe: How to show results based on rdo button selected without having to re-access database? Pin
Gerry Schmitz29-Aug-16 10:21
mveGerry Schmitz29-Aug-16 10:21 
GeneralRe: How to show results based on rdo button selected without having to re-access database? Pin
kmllev29-Aug-16 17:46
kmllev29-Aug-16 17:46 
Question5.5.1 Authentication Required Pin
Member 1270877429-Aug-16 0:34
Member 1270877429-Aug-16 0:34 
AnswerRe: 5.5.1 Authentication Required Pin
OriginalGriff29-Aug-16 0:45
mveOriginalGriff29-Aug-16 0:45 
QuestionHow to change background color of RadGridView? Pin
Daniyaltjm28-Aug-16 23:34
Daniyaltjm28-Aug-16 23:34 
AnswerRe: How to change background color of RadGridView? Pin
#realJSOP31-Aug-16 3:26
mve#realJSOP31-Aug-16 3:26 
GeneralRe: How to change background color of RadGridView? Pin
Daniyaltjm31-Aug-16 6:52
Daniyaltjm31-Aug-16 6:52 
Questionhow set custom paper size on printer setting? Pin
Le@rner26-Aug-16 18:34
Le@rner26-Aug-16 18:34 
AnswerRe: how set custom paper size on printer setting? Pin
Richard MacCutchan26-Aug-16 21:01
mveRichard MacCutchan26-Aug-16 21:01 
GeneralRe: how set custom paper size on printer setting? Pin
Le@rner26-Aug-16 21:31
Le@rner26-Aug-16 21:31 
GeneralRe: how set custom paper size on printer setting? Pin
Richard MacCutchan26-Aug-16 21:52
mveRichard MacCutchan26-Aug-16 21:52 

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.