String Problem
-
Michael Schubert wrote:
No no sir, he mustz learnz himself.
Yes the magic site will help him to learn :D You don't know about the magic site, do you?
Regards, Sandip.
Never mind - and yes, I do know Carlo's magic site.
-
Never mind - and yes, I do know Carlo's magic site.
-
Never mind - and yes, I do know Carlo's magic site.
And THHB stands for: Thread Hijacking Happy Brigade. :)
Many are stubborn in pursuit of the path they have chosen, few in pursuit of the goal - Friedrich Nietzsche .·´¯`·->Rajesh<-·´¯`·. [Microsoft MVP - Visual C++]
-
And THHB stands for: Thread Hijacking Happy Brigade. :)
Many are stubborn in pursuit of the path they have chosen, few in pursuit of the goal - Friedrich Nietzsche .·´¯`·->Rajesh<-·´¯`·. [Microsoft MVP - Visual C++]
Thanks for enlightening me! ;)
-
Thanks for enlightening me! ;)
Michael Schubert wrote:
Thanks for enlightening me!
We aim to please. :) BTW, this is just another crime of the THHB. Look how much it's been hijacked. :-\
Many are stubborn in pursuit of the path they have chosen, few in pursuit of the goal - Friedrich Nietzsche .·´¯`·->Rajesh<-·´¯`·. [Microsoft MVP - Visual C++]
-
Michael Schubert wrote:
Thanks for enlightening me!
We aim to please. :) BTW, this is just another crime of the THHB. Look how much it's been hijacked. :-\
Many are stubborn in pursuit of the path they have chosen, few in pursuit of the goal - Friedrich Nietzsche .·´¯`·->Rajesh<-·´¯`·. [Microsoft MVP - Visual C++]
Rajesh R Subramanian wrote:
Look how much it's been hijacked.
Combined efforts really pay off. :)
-
Michael Schubert wrote:
Thanks for enlightening me!
We aim to please. :) BTW, this is just another crime of the THHB. Look how much it's been hijacked. :-\
Many are stubborn in pursuit of the path they have chosen, few in pursuit of the goal - Friedrich Nietzsche .·´¯`·->Rajesh<-·´¯`·. [Microsoft MVP - Visual C++]
Hey! You and Sandip, evil guyz, are making be bouncing from this thread to my memberpage... :-D
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles] -
rdop wrote:
CString array[10]
Which will hold strings like:
array[0] = "This is string 1";
array[1] = "This is string 2";
array[2] = "This is string 3";
...
array[9] = "This is string 10";Is that really what you intended?
"Love people and use things, not love things and use people." - Unknown
"The brick walls are there for a reason...to stop the people who don't want it badly enough." - Randy Pausch
-
Hi All I have a problem to cut the string.How can i cut this string last file name. Old String
C:\abc\cd\as.txt
And i want to show New String
C:\abc\cd
Plz help me
Use
PathRemoveFileSpec()
."Love people and use things, not love things and use people." - Unknown
"The brick walls are there for a reason...to stop the people who don't want it badly enough." - Randy Pausch
-
Yes, for instance [^]. :-D
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles]Did you hear that whooshing sound? That was the sound of that link going completely over his head. However I'd like to thank everyone in this thread for contributing to my mornings entertainment. I was feeling a bit down, and this gave me more than a few chuckles. Keep up the good work gentlemen!
¡El diablo está en mis pantalones! ¡Mire, mire! Real Mentats use only 100% pure, unfooled around with Sapho Juice(tm)! SELECT * FROM User WHERE Clue > 0 0 rows returned Save an Orange - Use the VCF! VCF Blog
-
Did you hear that whooshing sound? That was the sound of that link going completely over his head. However I'd like to thank everyone in this thread for contributing to my mornings entertainment. I was feeling a bit down, and this gave me more than a few chuckles. Keep up the good work gentlemen!
¡El diablo está en mis pantalones! ¡Mire, mire! Real Mentats use only 100% pure, unfooled around with Sapho Juice(tm)! SELECT * FROM User WHERE Clue > 0 0 rows returned Save an Orange - Use the VCF! VCF Blog
Jim Crafton wrote:
However I'd like to thank everyone in this thread for contributing to my mornings entertainment. I was feeling a bit down, and this gave me more than a few chuckles.
Glad of: after all we're a happy brigade [^]. :)
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles] -
rdop wrote:
int nPos = FullPath.Find( _T('\\') );
Why do you use
Find
, instead of (suggested)ReverseFind
? :) [added] BTW since now the request is urgent, please feel free to visit www.cpallini.freeproductz.com to get theJITS
(J
ustI
nT
imeS
olution). :-D [/added]If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles]modified on Friday, October 3, 2008 7:45 AM
You've used this before. When are you going to actually register it? Saying that, maybe the bandwidth bills would be too high, as we'd all refer people there! Iain.
-
You've used this before. When are you going to actually register it? Saying that, maybe the bandwidth bills would be too high, as we'd all refer people there! Iain.
:-D
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles] -
I am useing this.
CString DirPath;
CString FullPath = _T("C:\\abc\\cd\\as.txt");int nPos = FullPath.Find( \_T('\\\\') ); if( nPos >= 0 ) { DirPath = FullPath.Mid( 0, nPos); } AfxMessageBox(DirPath);
Then i am geting out put C: But i need to C:\abc. Plz tell me what i use. Thanks in advance
Use ReverseFind() instead of Find().
CString DirPath;
CString FullPath = _T("C:\\abc\\cd\\as.txt");
int nPos = FullPath.ReverseFind( _T('\\') );
if( nPos >= 0 )
{
DirPath = FullPath.Mid( 0, nPos);
}
AfxMessageBox(DirPath);