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

Managed C++/CLI

 
GeneralRe: serial port, threads, events Pin
jeff rhodes 1240020411-Jan-19 16:51
jeff rhodes 1240020411-Jan-19 16:51 
GeneralPlease Upvote: C++/CLI: std::move causes std::unique_ptr parameter to be destructed before function call Pin
John Schroedl3-Jan-19 2:13
professionalJohn Schroedl3-Jan-19 2:13 
GeneralRe: Please Upvote: C++/CLI: std::move causes std::unique_ptr parameter to be destructed before function call Pin
Richard MacCutchan3-Jan-19 2:23
mveRichard MacCutchan3-Jan-19 2:23 
GeneralRe: Please Upvote: C++/CLI: std::move causes std::unique_ptr parameter to be destructed before function call Pin
John Schroedl3-Jan-19 2:28
professionalJohn Schroedl3-Jan-19 2:28 
QuestionHow to catch exception caused by third party dll in c++? Pin
Sampath5797-Dec-18 0:22
Sampath5797-Dec-18 0:22 
AnswerRe: How to catch exception caused by third party dll in c++? Pin
Richard MacCutchan7-Dec-18 2:39
mveRichard MacCutchan7-Dec-18 2:39 
GeneralRe: How to catch exception caused by third party dll in c++? Pin
Sampath5797-Dec-18 2:58
Sampath5797-Dec-18 2:58 
GeneralRe: How to catch exception caused by third party dll in c++? Pin
Richard MacCutchan7-Dec-18 3:25
mveRichard MacCutchan7-Dec-18 3:25 
GeneralRe: How to catch exception caused by third party dll in c++? Pin
sameer.p.deshmukh9-Jan-19 1:02
sameer.p.deshmukh9-Jan-19 1:02 
QuestionHow to trace an unhandled exception in C++ using Visual Studio 2017 Pin
Dominick Marciano31-Oct-18 23:03
professionalDominick Marciano31-Oct-18 23:03 
AnswerRe: How to trace an unhandled exception in C++ using Visual Studio 2017 Pin
Richard MacCutchan31-Oct-18 23:55
mveRichard MacCutchan31-Oct-18 23:55 
GeneralRe: How to trace an unhandled exception in C++ using Visual Studio 2017 Pin
AndreyAksenov7-Dec-18 2:38
AndreyAksenov7-Dec-18 2:38 
GeneralRe: How to trace an unhandled exception in C++ using Visual Studio 2017 Pin
Richard MacCutchan7-Dec-18 3:22
mveRichard MacCutchan7-Dec-18 3:22 
AnswerRe: How to trace an unhandled exception in C++ using Visual Studio 2017 Pin
John Schroedl5-Nov-18 5:13
professionalJohn Schroedl5-Nov-18 5:13 
Questionmeaing of below code Pin
Member 139765087-Sep-18 22:01
Member 139765087-Sep-18 22:01 
AnswerRe: meaing of below code Pin
Richard MacCutchan7-Sep-18 22:32
mveRichard MacCutchan7-Sep-18 22:32 
AnswerRe: meaing of below code Pin
Victor Nijegorodov8-Sep-18 1:07
Victor Nijegorodov8-Sep-18 1:07 
Questionc++ sms send dll Pin
Member 139765087-Sep-18 1:07
Member 139765087-Sep-18 1:07 
AnswerRe: c++ sms send dll Pin
Richard MacCutchan7-Sep-18 2:38
mveRichard MacCutchan7-Sep-18 2:38 
AnswerRe: c++ sms send dll Pin
Victor Nijegorodov8-Sep-18 1:04
Victor Nijegorodov8-Sep-18 1:04 
AnswerRe: c++ sms send dll Pin
vidhya 360 com14-Oct-18 20:38
vidhya 360 com14-Oct-18 20:38 
QuestionSharpen filter of bmp image Pin
Jakub Bartczak27-Aug-18 21:21
Jakub Bartczak27-Aug-18 21:21 
AnswerRe: Sharpen filter of bmp image Pin
Jochen Arndt27-Aug-18 22:56
professionalJochen Arndt27-Aug-18 22:56 
Questionplease explain this lines of code Pin
Hiếu Ngô2-Aug-18 18:18
Hiếu Ngô2-Aug-18 18:18 
Dear friends,

I don't understand the below codes, please explain for me:
case 3:
				{
					system("cls");
					do
					{
						found = 0;
						printf("\n\n\t..Contact Search\n\t=================================\n\t...Name of Contact to search: ");
						fflush(stdin);
						scanf("%[^\n]",&querry);
						l=strlen(querry);
						fp=fopen("Contact.dll","r");
						system("cls");
						printf("\n\n::Search result for: 's'\n====================================\n", querry);
						while(fread(&list,sizeof(list),1,fp)==1)
						{
							for(i=0;i<=l;i++)
							{
								name[i]=list.name[i];
								name[1]='\0';
							}
						}
						if (stricmp(name,querry)==0)
						{
							printf("\n..::Name\t: %s\n..::Phone\t: %ld\n....::Address\t %s\n.....::Email\t:%s\n", list.name,list.ph,list.add,list.email);
							found++;
							if(found%4==0)
							{
								printf("Press any key to continue..");
								getch();
							}
						}
						if(found==0)
						{
							printf("\n..:No match found");
						}
						else
						{
							printf("\n....match(s) found!",found);
						}https://www.codeproject.com/script/Forums/Edit.aspx?fid=3785&floc=/Forums/3785/Managed-Cplusplus-CLI.aspx#
						fclose(fp);
						printf("\n.......Try again ? \n\n\t[1]  Yes\t\t[0]  No\n\t");
						scanf("%d",&ch);
					}
				
				while (ch==1);
			}
				break;


----------------------------------------------

while(fread....) --> what does this mean ?

if (stricmp(name,q
.... --> what does it mean ?

Please explain for me , thank you very much!

Hieu
AnswerRe: please explain this lines of code Pin
Richard MacCutchan2-Aug-18 21:47
mveRichard MacCutchan2-Aug-18 21:47 

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.