| CODE |
| Set cursorX 1 Set cursorY 1 Set blah%cursorx%%cursory% success msgbox %blah{cursorx}{cursory}% |
| CODE |
| Set cursorX 1 Set blah%cursorx% success msgbox %blah{cursorx}% |
| QUOTE |
Set cursorx 1 Set cursory 1 SET XY %cursorx%_%cursory% SET ARRAY1_1 success msgbox %ARRAY{XY}% |
| QUOTE (koldfuzion @ Jun 1 2004, 11:02 PM) |
| im still an idiot. updated sample to BJ's recommendation. |
| QUOTE |
| CStdString GetTrueEnvName( LPCTSTR szVar, TMapStrings * pLocal ) { ... iPos = sReturn.Find( _T('{') ); tcEndChar = _T('}'); } if ( iPos > -1 ) { // OK, find end bracket... int iEndPos = sReturn.ReverseFind( tcEndChar ); |