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 Mike Lewis 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: crach
  • Order by date
  1. crach

    Invoking a DOS Executable from C++

    For win32 console try this (it's case sensitive) ShellExecute (NULL,"open","c:\\test app\\notebad.exe",NULL,NULL,SW_SHOWNORMAL); --------------------- Silver crach@jutukas.com icq: 97505332
  2. crach

    Invoking a DOS Executable from C++

    try this: WinExec("c:\\test app\\notepad.exe", SW_SHOW); --------------------- Silver crach@jutukas.com icq: 97505332
  3. crach

    howto run win-application on linux

    This will help you: http://www.winehq.com/ --------------------- Silver crach@jutukas.com icq: 97505332
  4. crach

    How do I change my screen size (resolution) in gnome?

    Try to press control + ,or control - , if this does not to work you have to change it by modifing xfree config fail, /etc/X11/XF86Config-4 (that if you have X version 4.*, if 3.* then /etc/X11/XF86Config ) and change it frome there. --------------------- Silver crach@jutukas.com icq: 97505332
  5. crach

    How do I Delete a Folder..

    RemoveDirectory work just fine like this: RemoveDirectory("//yourLANcomputer//c$//foldertodelete"); Silver crach@jutukas.com
  6. crach

    writing a fail (CFile ) and setting a variable ?

    The file is being created, but the text is in 1 line, but i want that in 2line,it should be inside the fail test.txt like this: here is a example text this would be the second line but it is in 1 line like this: here is a example text this would be the second line Silver crach@jutukas.com
  7. crach

    writing a fail (CFile ) and setting a variable ?

    Hello, I have two problems, firt i'd like to know how to change the line when im writing into a fail, \n seems not to work (maybe im doing something wrong!). The second problem is that,how can i make that work when the program writes a text into fail test.txt,after that a messagebox will be...
  8. crach

    problems with switch/ case

    Thank you, it worked :) Silver crach@jutukas.com
  9. crach

    problems with switch/ case

    well,i did a code like this: void CProgramDlg::Onperform() { int iResult; iResult = MessageBox("Chooce Yes or No", "question", MB_YESNO | MB_ICONINFORMATION ); switch(iResult) { case MB_NO: MessageBox("You have choocen no", "no way&quot...

Part and Inventory Search

Back
Top