Click here to Skip to main content
15,893,487 members
Home / Discussions / C#
   

C#

 
GeneralRe: Instrumentation Pin
Dave Kreskowiak3-Nov-04 11:40
mveDave Kreskowiak3-Nov-04 11:40 
GeneralMSDN UDP Sample does not run Pin
win32wiz2-Nov-04 7:49
win32wiz2-Nov-04 7:49 
GeneralRe: MSDN UDP Sample does not run Pin
Charlie Williams2-Nov-04 8:32
Charlie Williams2-Nov-04 8:32 
QuestionClearing device with alpha? Pin
Jaran Nilsen2-Nov-04 6:48
Jaran Nilsen2-Nov-04 6:48 
QuestionHowto Instantiate a class of unknown type? Pin
Member 14185452-Nov-04 6:37
Member 14185452-Nov-04 6:37 
AnswerRe: Howto Instantiate a class of unknown type? Pin
Nick Parker2-Nov-04 8:00
protectorNick Parker2-Nov-04 8:00 
GeneralLine Break Pin
goatstudio2-Nov-04 5:58
goatstudio2-Nov-04 5:58 
GeneralRe: Line Break Pin
kayhustle2-Nov-04 10:26
kayhustle2-Nov-04 10:26 
You should use regular expressions, which are stored in System.Text.RegularExpressions namespace.
For example
<br />
string header = (Your header),match="";<br />
Regex r = new Regex("Subject:.*");<br />
Match m=r.Match(header);<br />
if(m.Success){<br />
match = m.Value;<br />
}		<br />

Now match contains the line beginning with "Subject:".
GeneralListView CheckBoxes Pin
mrlou882-Nov-04 5:42
mrlou882-Nov-04 5:42 
GeneralRe: ListView CheckBoxes Pin
mrlou882-Nov-04 6:09
mrlou882-Nov-04 6:09 
GeneralPanel doubt Pin
ee990352-Nov-04 5:32
ee990352-Nov-04 5:32 
GeneralRe: Panel doubt Pin
Michael P Butler2-Nov-04 5:52
Michael P Butler2-Nov-04 5:52 
GeneralRe: Panel doubt Pin
ee990352-Nov-04 5:56
ee990352-Nov-04 5:56 
GeneralRe: Panel doubt Pin
ee990352-Nov-04 6:59
ee990352-Nov-04 6:59 
GeneralBuild a panel class Pin
ee990352-Nov-04 4:09
ee990352-Nov-04 4:09 
GeneralRe: Build a panel class Pin
Stefan Troschuetz2-Nov-04 4:24
Stefan Troschuetz2-Nov-04 4:24 
GeneralRe: Build a panel class Pin
Luis Alonso Ramos2-Nov-04 12:22
Luis Alonso Ramos2-Nov-04 12:22 
GeneralReadonly in propertygrid with text color Pin
AlanJones2-Nov-04 3:33
AlanJones2-Nov-04 3:33 
Generalmoney data type Pin
webhay2-Nov-04 3:06
webhay2-Nov-04 3:06 
GeneralRe: money data type Pin
Luis Alonso Ramos2-Nov-04 16:32
Luis Alonso Ramos2-Nov-04 16:32 
GeneralColor region Pin
sreejith ss nair2-Nov-04 2:51
sreejith ss nair2-Nov-04 2:51 
GeneralRe: Color region Pin
yoaz2-Nov-04 3:51
yoaz2-Nov-04 3:51 
GeneralC# interface Pin
skrishnasarma2-Nov-04 2:23
skrishnasarma2-Nov-04 2:23 
GeneralRe: C# interface Pin
yoaz2-Nov-04 3:48
yoaz2-Nov-04 3:48 
GeneralRe: C# interface Pin
skrishnasarma2-Nov-04 3:53
skrishnasarma2-Nov-04 3:53 

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.