Click here to Skip to main content
15,890,336 members
Home / Discussions / C#
   

C#

 
GeneralRe: Show MDI child as not maximized Pin
eggsovereasy13-Dec-07 10:20
eggsovereasy13-Dec-07 10:20 
QuestionWays to re-establish connection between client and server on remoting? Pin
kumar.bs13-Dec-07 8:00
kumar.bs13-Dec-07 8:00 
AnswerRe: Ways to re-establish connection between client and server on remoting? Pin
mav.northwind14-Dec-07 1:22
mav.northwind14-Dec-07 1:22 
QuestionIn console App can i bound an area for user entry? Pin
dipak.dipak13-Dec-07 7:11
dipak.dipak13-Dec-07 7:11 
GeneralRe: In console App can i bound an area for user entry? Pin
Skippums13-Dec-07 7:53
Skippums13-Dec-07 7:53 
Generalextracting a certain text from a string before and after a comma Pin
jimmy2shoes13-Dec-07 7:08
jimmy2shoes13-Dec-07 7:08 
GeneralRe: extracting a certain text from a string before and after a comma Pin
Skippums13-Dec-07 7:35
Skippums13-Dec-07 7:35 
AnswerRe: extracting a certain text from a string before and after a comma Pin
dipak.dipak13-Dec-07 7:43
dipak.dipak13-Dec-07 7:43 
Hello, This is the sample code i have prepired for you now.


public void fnCutText()
{ //Code By Dipak (dipak.dipak@gmail.com)
String strMyString = "abcd,efgh,ijkl,mnop,qrst";
String strTemp = "";
String[] strStrings = new String[100]; int i;
for (i = 0; strMyString.Length > 0; i++)
{
if (strMyString.Contains(","))
{
strTemp = strMyString.Substring(0, strMyString.IndexOf(","));
strStrings[i] = strTemp;
strMyString = strMyString.Substring(strMyString.IndexOf(",") + 1);
}
else
{
strStrings[i] = strMyString;
strMyString = "";
}
}
}

I think u can continue your work.
Best of Luck. Smile | :)
Good Night. Cry | :((
Dipak

GeneralRe: extracting a certain text from a string before and after a comma Pin
Nouman Bhatti13-Dec-07 19:54
Nouman Bhatti13-Dec-07 19:54 
QuestionInconsistency with connection to the web server!! Pin
Jedidah13-Dec-07 4:03
Jedidah13-Dec-07 4:03 
GeneralRe: Inconsistency with connection to the web server!! Pin
Paul Conrad23-Dec-07 9:54
professionalPaul Conrad23-Dec-07 9:54 
QuestionRe: Inconsistency with connection to the web server!! Pin
Jedidah24-Dec-07 2:16
Jedidah24-Dec-07 2:16 
Generalusing reflection on generics Pin
Bekjong13-Dec-07 2:56
Bekjong13-Dec-07 2:56 
GeneralRe: using reflection on generics [modified] Pin
Mr. Candyman13-Dec-07 4:59
Mr. Candyman13-Dec-07 4:59 
GeneralRe: using reflection on generics Pin
Bekjong13-Dec-07 5:15
Bekjong13-Dec-07 5:15 
GeneralImage scaling Pin
N a v a n e e t h13-Dec-07 2:49
N a v a n e e t h13-Dec-07 2:49 
GeneralRe: Image scaling Pin
m@u13-Dec-07 3:49
m@u13-Dec-07 3:49 
GeneralRe: Image scaling Pin
Ajay.k_Singh13-Dec-07 3:50
Ajay.k_Singh13-Dec-07 3:50 
AnswerRe: Image scaling Pin
Guffa13-Dec-07 4:47
Guffa13-Dec-07 4:47 
GeneralRe: Image scaling Pin
N a v a n e e t h13-Dec-07 18:28
N a v a n e e t h13-Dec-07 18:28 
GeneralCatching Event Pin
Sabry190513-Dec-07 2:22
Sabry190513-Dec-07 2:22 
GeneralRe: Catching Event Pin
Anthony Mushrow13-Dec-07 2:37
professionalAnthony Mushrow13-Dec-07 2:37 
Generalreading into an array Pin
jimmy2shoes13-Dec-07 1:43
jimmy2shoes13-Dec-07 1:43 
GeneralRe: reading into an array Pin
ChrisKo13-Dec-07 6:39
ChrisKo13-Dec-07 6:39 
Generalpointers in c# Pin
chanzeb13-Dec-07 1:38
chanzeb13-Dec-07 1:38 

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.