Click here to Skip to main content
15,911,785 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
GeneralRe: rtf help Pin
Christian Graus11-Jan-05 14:37
protectorChristian Graus11-Jan-05 14:37 
Generaladding to integers together... help please!!! Pin
alexy2u8-Jan-05 8:44
alexy2u8-Jan-05 8:44 
GeneralRe: adding to integers together... help please!!! Pin
Christian Graus8-Jan-05 16:00
protectorChristian Graus8-Jan-05 16:00 
GeneralRe: adding to integers together... help please!!! Pin
FayezElFar11-Jan-05 11:04
FayezElFar11-Jan-05 11:04 
GeneralRe: adding to integers together... help please!!! Pin
prophets_lie16-Jan-05 18:17
prophets_lie16-Jan-05 18:17 
GeneralRe: adding to integers together... help please!!! Pin
Anders Dalvander29-Jan-05 1:25
Anders Dalvander29-Jan-05 1:25 
Generalsetup wizard Pin
Boniolopez8-Jan-05 4:48
Boniolopez8-Jan-05 4:48 
GeneralC++ arrays Pin
Ail6-Jan-05 9:19
Ail6-Jan-05 9:19 
Im having a little trouble storing the outputs in an array. while the compiler is running i can get the correct output, but cant set up the array for using the results later on. any help would be greatfully appreciated.

What I want in the array is time_of_arrival results from the following function;

CComplexVector process_the_ray(CRay3d a_ray,int m)<br />
{ <br />
	CComplexVector result ; <br />
	double the_distance ; <br />
	int i ; <br />
	double length;<br />
<br />
<br />
	result =  inc_field( (a_ray.listnode(0)).listpoint(),(a_ray.listnode(1)).listpoint(),m ) ; <br />
	the_distance = (a_ray.listnode(1).listpoint() - a_ray.listnode(0).listpoint()).abs() ; <br />
	<br />
<br />
		for( i =  1 ; i < a_ray.non() - 1  ; i++) { <br />
			if( a_ray.listnode(i).listtype() == 1) <br />
			result = calculate_reflection(result, a_ray.listnode(i-1) , a_ray.listnode(i), a_ray.listnode(i+1) , the_distance) ; <br />
			<br />
			if( a_ray.listnode(i).listtype() == 2) <br />
			result = calculate_transmission(result, a_ray.listnode(i-1) , a_ray.listnode(i), a_ray.listnode(i+1) , the_distance) ; <br />
			<br />
		<br />
		    the_distance += (a_ray.listnode(i+1).listpoint() - a_ray.listnode(i).listpoint()).abs() ; <br />
				<br />
			} <br />
<br />
		<br />
	    	length=the_distance;<br />
			cout<< "length is:" <<length<<endl;<br />
			<br />
			time_of_arrival=(length/c);<br />
			<br />
		    cout<<"time_of_arrival:"<<time_of_arrival<<endl;<br />
			<br />
	return result; <br />
<br />
}

Generaloperator[] in 2.0 Pin
Yaakov Davis5-Jan-05 13:20
Yaakov Davis5-Jan-05 13:20 
GeneralRe: operator[] in 2.0 Pin
Bill Gafford19-Jan-05 9:46
Bill Gafford19-Jan-05 9:46 
GeneralDetecting the phone number from C++ Pin
Bharat Gidde5-Jan-05 6:20
Bharat Gidde5-Jan-05 6:20 
GeneralRe: Detecting the phone number from C++ Pin
Christian Graus5-Jan-05 11:45
protectorChristian Graus5-Jan-05 11:45 
GeneralRe: Detecting the phone number from C++ Pin
Maximilien6-Jan-05 9:42
Maximilien6-Jan-05 9:42 
GeneralMirror Text Pin
dado745-Jan-05 2:47
dado745-Jan-05 2:47 
GeneralRe: Mirror Text Pin
Christian Graus5-Jan-05 11:46
protectorChristian Graus5-Jan-05 11:46 
GeneralMCppWrapper example Pin
eusjmf4-Jan-05 7:54
eusjmf4-Jan-05 7:54 
GeneralRe: MCppWrapper example Pin
ursus zeta5-Jan-05 10:52
ursus zeta5-Jan-05 10:52 
GeneralRe: MCppWrapper example Pin
eusjmf6-Jan-05 3:53
eusjmf6-Jan-05 3:53 
Generalproblem with Application::CommonAppDataPath Pin
maos3-Jan-05 9:03
maos3-Jan-05 9:03 
GeneralNOTIFYICONDATA missing data Pin
cimnik02931-Dec-04 6:35
cimnik02931-Dec-04 6:35 
QuestionHow Create a Printer Port Monitor?? Pin
raf-sp30-Dec-04 7:39
raf-sp30-Dec-04 7:39 
GeneralHelp with MDI (VS 2003 Forms Designer) Pin
ZisisSim29-Dec-04 22:19
ZisisSim29-Dec-04 22:19 
QuestionWhat are the difference between these Main function in MC++? Pin
Link260025-Dec-04 22:42
Link260025-Dec-04 22:42 
AnswerRe: What are the difference between these Main function in MC++? Pin
Anonymous27-Dec-04 9:35
Anonymous27-Dec-04 9:35 
GeneralExecuting Application Pin
Rich Wright24-Dec-04 4:51
Rich Wright24-Dec-04 4:51 

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.