Click here to Skip to main content
15,892,797 members
Home / Discussions / C#
   

C#

 
QuestionColor a row in a Datagrid, is there a solution that works with DataView? Pin
Cesa3717-Jan-06 2:28
Cesa3717-Jan-06 2:28 
AnswerRe: Color a row in a Datagrid, is there a solution that works with DataView? Pin
Robert Rohde17-Jan-06 5:01
Robert Rohde17-Jan-06 5:01 
AnswerRe: Color a row in a Datagrid, is there a solution that works with DataView? Pin
Cesa3717-Jan-06 6:46
Cesa3717-Jan-06 6:46 
Questionerror: key already exists Pin
dhol17-Jan-06 2:20
dhol17-Jan-06 2:20 
QuestionIs it possible to create a dialog represent .NET JIT dialog when application error? Pin
god4k17-Jan-06 2:06
god4k17-Jan-06 2:06 
AnswerRe: Is it possible to create a dialog represent .NET JIT dialog when application error? Pin
Judah Gabriel Himango17-Jan-06 5:02
sponsorJudah Gabriel Himango17-Jan-06 5:02 
QuestionConversion to xml Pin
bidisha_tina17-Jan-06 2:03
bidisha_tina17-Jan-06 2:03 
AnswerRe: Conversion to xml Pin
exhaulted17-Jan-06 2:24
exhaulted17-Jan-06 2:24 
if everything is going to be space delimited then it's definately possible.
string s = "abc=100 bc c=50 def=20"
string[] strings = s.Split(" ");

This will give you an array of xml elements split at each space " ". Then you've just gotta go through each one and work out whether or not it has an operator and create your xml file. Just make sure that the only spaces in the string are between elements, if you need spaces elsewhere then use a different character like a comma.
string s = "abc=100,bc,c=50,def=20"
string[] strings = s.Split(",");

Cheers


Kev
AnswerRe: Conversion to xml Pin
User 665817-Jan-06 4:38
User 665817-Jan-06 4:38 
QuestionCapture Icons Pin
Sabry190517-Jan-06 1:16
Sabry190517-Jan-06 1:16 
AnswerRe: Capture Icons Pin
Judah Gabriel Himango17-Jan-06 5:04
sponsorJudah Gabriel Himango17-Jan-06 5:04 
QuestionIterate through linked images in resource file Pin
Tommymo8117-Jan-06 1:10
Tommymo8117-Jan-06 1:10 
AnswerRe: Iterate through linked images in resource file Pin
CWIZO17-Jan-06 1:23
CWIZO17-Jan-06 1:23 
GeneralRe: Iterate through linked images in resource file Pin
Tommymo8117-Jan-06 1:50
Tommymo8117-Jan-06 1:50 
Questionedit the keyboard input stream Pin
Miromann17-Jan-06 1:01
Miromann17-Jan-06 1:01 
AnswerRe: edit the keyboard input stream Pin
DigitalKing17-Jan-06 5:01
DigitalKing17-Jan-06 5:01 
QuestionHow To Prevent Datagrid Row Deletion Pin
Anupbala17-Jan-06 0:54
Anupbala17-Jan-06 0:54 
AnswerRe: How To Prevent Datagrid Row Deletion Pin
Glaxalg17-Jan-06 5:37
Glaxalg17-Jan-06 5:37 
GeneralRe: How To Prevent Datagrid Row Deletion Pin
Anupbala19-Jan-06 3:00
Anupbala19-Jan-06 3:00 
GeneralRe: How To Prevent Datagrid Row Deletion Pin
Glaxalg19-Jan-06 4:57
Glaxalg19-Jan-06 4:57 
QuestionMy WinService refuses to startup .... Pin
MaWeRic17-Jan-06 0:39
MaWeRic17-Jan-06 0:39 
AnswerRe: My WinService refuses to startup .... Pin
Dave Kreskowiak17-Jan-06 6:30
mveDave Kreskowiak17-Jan-06 6:30 
GeneralRe: My WinService refuses to startup .... Pin
MaWeRic17-Jan-06 12:34
MaWeRic17-Jan-06 12:34 
Question[Message Deleted] Pin
bidisha_tina17-Jan-06 0:34
bidisha_tina17-Jan-06 0:34 
GeneralRe: Conversion of a string to xml Pin
CWIZO17-Jan-06 1:24
CWIZO17-Jan-06 1:24 

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.