Click here to Skip to main content
15,922,630 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralCopying files to debug at build time (VS 2005) Pin
Vodstok11-Dec-07 7:19
Vodstok11-Dec-07 7:19 
AnswerRe: Copying files to debug at build time (VS 2005) Pin
TJoe11-Dec-07 7:34
TJoe11-Dec-07 7:34 
GeneralRe: Copying files to debug at build time (VS 2005) Pin
Vodstok11-Dec-07 7:46
Vodstok11-Dec-07 7:46 
GeneralMaskedTextBox Question Pin
DotNetWWW11-Dec-07 2:51
DotNetWWW11-Dec-07 2:51 
GeneralRe: MaskedTextBox Question Pin
DotNetWWW12-Dec-07 22:22
DotNetWWW12-Dec-07 22:22 
QuestionProblem with Mutiple nested splitter containers Pin
uribraun11-Dec-07 2:33
uribraun11-Dec-07 2:33 
GeneralRe: Problem with Mutiple nested splitter containers Pin
Paul Conrad19-Jan-08 12:20
professionalPaul Conrad19-Jan-08 12:20 
Generalproblem convert from char to stream Pin
david bagaturia10-Dec-07 21:09
david bagaturia10-Dec-07 21:09 
Hi all.

it is my first program on Framework
sow I need little help.
<br />
<br />
	char Name[255]={0};<br />
				char *p    = GetCommandLineA();<br />
				bool start = false;<br />
				int from   = 0;<br />
<br />
				for(size_t i=0; i < strlen(p); i++)<br />
				{<br />
					if(p[i] == '|'){<br />
						start = true;<br />
						from = i;<br />
						continue;<br />
					}<br />
<br />
					if(start)<br />
						Name[i-from] = p[i];					<br />
				}<br />
<br />
				if(strcmp(Name,"") == 0)<br />
					exit(1);					<br />
				 <br />
				StreamReader reader(Name, System::Text::Encoding::Default);<br />
                                XmlDocument doc;				<br />
                                doc.LoadXml(reader.ReadToEnd()); <br />
                                XmlNode^ myNode = doc.SelectSingleNode("Subject"); <br />
				cz_sintesupport::insertCase t;				                <br />
				bool resulte = t.InsertCaseXml("testuser", "test123", myNode);                <br />
<br />
				if(resulte)<br />
					exit(0);<br />
				 else<br />
					exit(1);<br />

this code dont compile, but if I write StreamReader reader("C:\\test.xml", System::Text::Encoding::Default);
it works.
if you can tel me abut differents between StreamReader reader("C:\\test.xml", System::Text::Encoding::Default);
and StreamReader reader(Name, System::Text::Encoding::Default); if Name is string type value

thanks
GeneralRe: problem convert from char to stream Pin
Colin Angus Mackay10-Dec-07 22:45
Colin Angus Mackay10-Dec-07 22:45 
Generalproblem with two dimensional array Pin
Meenge10-Dec-07 20:42
Meenge10-Dec-07 20:42 
GeneralRe: problem with two dimensional array Pin
ayiteyashley10-Dec-07 22:35
ayiteyashley10-Dec-07 22:35 
GeneralRe: problem with two dimensional array Pin
Meenge11-Dec-07 15:55
Meenge11-Dec-07 15:55 
GeneralSystem.Transactions for .Net 2.0 Pin
ayiteyashley10-Dec-07 5:16
ayiteyashley10-Dec-07 5:16 
QuestionNunit sql server database connectivity - it gives error - system.data.sqlclient.sqlexception - SQl server does not eexists or access denied [modified] Pin
ritika10-Dec-07 1:54
ritika10-Dec-07 1:54 
GeneralRe: Nunit sql server database connectivity - it gives error - system.data.sqlclient.sqlexception - SQl server does not eexists or access denied Pin
Paddy Boyd10-Dec-07 2:35
Paddy Boyd10-Dec-07 2:35 
GeneralRe: Nunit sql server database connectivity - it gives error - system.data.sqlclient.sqlexception - SQl server does not eexists or access denied Pin
DigiOz Multimedia10-Dec-07 4:42
DigiOz Multimedia10-Dec-07 4:42 
GeneralSQL Server 2005 by default is not visible from outside Pin
Luis Alonso Ramos11-Dec-07 15:00
Luis Alonso Ramos11-Dec-07 15:00 
GeneralGUI upgrade Pin
epitalon8-Dec-07 6:08
epitalon8-Dec-07 6:08 
GeneralRe: GUI upgrade Pin
TJoe10-Dec-07 17:27
TJoe10-Dec-07 17:27 
GeneralRe: GUI upgrade Pin
epitalon211-Dec-07 7:11
epitalon211-Dec-07 7:11 
GeneralRe: GUI upgrade Pin
TJoe11-Dec-07 7:29
TJoe11-Dec-07 7:29 
GeneralRe: GUI upgrade Pin
epitalon18-Dec-07 3:19
epitalon18-Dec-07 3:19 
General/nostdlib + value type mismatch Pin
Klaus8-Dec-07 4:16
Klaus8-Dec-07 4:16 
General.NET Languages and Namespaces Pin
.NET- India 7-Dec-07 23:30
.NET- India 7-Dec-07 23:30 
GeneralRe: .NET Languages and Namespaces Pin
pmarfleet8-Dec-07 0:01
pmarfleet8-Dec-07 0:01 

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.