Click here to Skip to main content
16,016,527 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
QuestionDatabase Connectivity with VC++.net1.1 Pin
pankajgarg1224-Mar-06 21:39
pankajgarg1224-Mar-06 21:39 
QuestionDeployment in vc++.net1.1 Pin
pankajgarg1224-Mar-06 21:32
pankajgarg1224-Mar-06 21:32 
QuestionGetting an error with interactions between dialogs Pin
alia12323-Mar-06 23:38
alia12323-Mar-06 23:38 
Questionvc++.net(1.1) Treeview Pin
pankajgarg1223-Mar-06 19:55
pankajgarg1223-Mar-06 19:55 
QuestionGetting an error Pin
Shamnar23-Mar-06 19:19
Shamnar23-Mar-06 19:19 
AnswerRe: Getting an error Pin
2bee 23-Mar-06 20:56
2bee 23-Mar-06 20:56 
GeneralRe: Getting an error Pin
Shamnar23-Mar-06 23:49
Shamnar23-Mar-06 23:49 
GeneralRe: Getting an error Pin
Shamnar26-Mar-06 18:53
Shamnar26-Mar-06 18:53 
Sniff | :^)
sir
this time i met with another problem.
that is
if my input to the fn is "thisa" "is" then i am getting o/p "thisa" instead of "tha"
please help me.
now i am sending the code along with this mail
#include <conio.h>
#include <stdio.h>
#include <string.h>
char* rmstr(char *whstr, char *strm)
{
char *ptr,*rem="";
char temp[10];
clrscr();
int k=0;
do
{
ptr=strstr(whstr,strm);
if (ptr==NULL)
{
break;
}
for (int i=0;i<ptr-whstr;i++)
{
temp[k++]=whstr[i];
}
ptr=ptr+strlen(strm);
strcpy(rem,whstr);
rem=rem+strlen(strm);
strcpy(whstr,ptr);
}while(1);
temp[k]='\0';
strcat(temp,rem);
return(temp);
}


void main()
{
char *temp;
stcpy(temp,rmstr("thisa","is"));
cout<<temp;
}

shamnar
GeneralRe: Getting an error Pin
2bee 26-Mar-06 19:56
2bee 26-Mar-06 19:56 
GeneralRe: Getting an error Pin
Shamnar26-Mar-06 21:32
Shamnar26-Mar-06 21:32 
GeneralRe: Getting an error Pin
2bee 27-Mar-06 0:41
2bee 27-Mar-06 0:41 
GeneralGetting an error Pin
Shamnar27-Mar-06 22:58
Shamnar27-Mar-06 22:58 
QuestionNested class; accessing non-static members from the enclosing class Pin
Douglas Dean23-Mar-06 6:34
Douglas Dean23-Mar-06 6:34 
AnswerRe: Nested class; accessing non-static members from the enclosing class Pin
Douglas Dean23-Mar-06 6:37
Douglas Dean23-Mar-06 6:37 
GeneralRe: Nested class; accessing non-static members from the enclosing class Pin
2bee 23-Mar-06 8:48
2bee 23-Mar-06 8:48 
GeneralRe: Nested class; accessing non-static members from the enclosing class Pin
Douglas Dean23-Mar-06 10:03
Douglas Dean23-Mar-06 10:03 
GeneralRe: Nested class; accessing non-static members from the enclosing class Pin
Douglas Dean23-Mar-06 10:04
Douglas Dean23-Mar-06 10:04 
QuestionC# Controls in Managed C++ WindowsForms app Pin
ziofabri22-Mar-06 21:46
ziofabri22-Mar-06 21:46 
JokeRe: C# Controls in Managed C++ WindowsForms app Pin
ziofabri22-Mar-06 22:22
ziofabri22-Mar-06 22:22 
GeneralRe: C# Controls in Managed C++ WindowsForms app Pin
Sebastian Schneider22-Mar-06 22:32
Sebastian Schneider22-Mar-06 22:32 
Questionvc++.net(1.1) Pin
pankajgarg1222-Mar-06 4:17
pankajgarg1222-Mar-06 4:17 
QuestionLnk1104 error "Cannot open file MSVCIRT.lib" Pin
laksshminarasiman22-Mar-06 0:13
laksshminarasiman22-Mar-06 0:13 
AnswerRe: Lnk1104 error "Cannot open file MSVCIRT.lib" Pin
toxcct22-Mar-06 0:44
toxcct22-Mar-06 0:44 
GeneralRe: Lnk1104 error "Cannot open file MSVCIRT.lib" Pin
laksshminarasiman22-Mar-06 17:05
laksshminarasiman22-Mar-06 17:05 
QuestionCommand line error D2016 : '/RTC1' and '/clr:initialappdomain' command-line options are incompatible Pin
giftsana21-Mar-06 21:34
giftsana21-Mar-06 21:34 

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.