Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: modemer
  • Content: Threads
  • Order by date
  1. modemer

    mystr.append("abcd" + ss) bug

    Anybody could explain this: On Sun 10, CC version is Sun C++ 5.7 2005/01/07 I have this code: string mystr("ABC"), ss("123"); mystr.append("XYZ" + ss); The compiler doesn't print any warning on append() line, but indeed this is a bug I am currently suffering, could anybody know how the Sun's...
  2. modemer

    How to disable colored text on xterm screen

    Hello, Anyone knows how to disable colored text displayed on xterm window screen? I hate that color making me hard to read when front and background color are similar. For example, when I run "ls" shell command, the color for directory is dark blue, but my background color is black, it's...
  3. modemer

    How to paste code in "code" box?

    as subject
  4. modemer

    Question about f(MyClass *& mc) and f(new MyClass)

    compile following code is OK: <code> class MyClass { public: int i; }; void f(MyClass *& mc) {;} int main() { f(new MyClass); return 0; } </code> but the following is not OK, why? <code> class MyClass { public: int i; }; void f(MyClass *& mc) {;} int main() { MyClass m...
  5. modemer

    Where symbol .__vec__delete2 comes from?

    I don't know where symbol .__vec__delete2 comes from, when I link, linker complains this symbol can't be found. Which lib should be included?
  6. modemer

    What's the C++ STL library name on AIX

    Question as subject, any help would be appreciated.
  7. modemer

    Highlight shell prompt

    Currently I am working on AIX/SUN/HP with tcsh, set prompt = "%{\033[7m>>\033[m%} " it will highlight the prompt, but there is a side effect on SUN, when I edit command line with cursor keys and backspace key, the command line is massed up. Anyone has a good solution? Thanks
  8. modemer

    tcsh: escape sequence

    does tcsh support "escape sequence" on Solaris and Aix? I've tested the following on Solaris and Aix, didn't work: Function: change xterm's title: >> echo "\033]0;TITLE\007" \033]0;TITLE\007 >> echo "\e]0;TITLE\007" \e]0;TITLE\007 >> echo "^e]0;TITLE\007" ^e]0;TITLE\007 >> echo " >> echo...

Part and Inventory Search

Back
Top