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 TouchToneTommy 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: AliFessi
  • Content: Threads
  • Order by date
  1. AliFessi

    bmp file as icon

    Hi there, I want to change the icon for my application. I would like to use a bmp file for that. But it seems that files with extension .ico and .bmp files are not compatible! How can I do that? Thanks!
  2. AliFessi

    Is it possible to use MFC classes in a no-MFC dll?

    Hi there, is it possible to use MFC classes like CFileDialog or CObject in a no-MFC dll? I suppose no but I just want to to leave no doubt! When I include the file afxwin.h in the dll I receice several link errors. Regards.
  3. AliFessi

    Have Problems with OPENFILENAME!

    Hi there, I need a SaveFile dialog in a non-MFC dll. All the code samples that I have tryed don't work properly under Win2K. Does anyone have a code sample that shows me how to initialize the structure OPENFILENAME before calling GetSaveFileName? Thanks a lot!!
  4. AliFessi

    Enumerate the member functions of a class?

    Hi there, do you know if it is possible to get an array of pointers of functions of all the member functions of a class? Regards.
  5. AliFessi

    I am a Perl beginner!!

    Hi there, I am a Perl beginner. I am writing a Perl programm to parse some data. This is a little example to show you how the data looks like: ***************** 52 + 645 s 76 21 + 54 l 5 s 87 21 - Lib tmp 5446 ***************** My code looks like that: ################## while(<FILE>) {...
  6. AliFessi

    Problems with CreateProcess

    Hi there, I have problems with CreateProcess. I cannot realize even a simple DOS-command. Can you tell me what is wrong in this source code? /**************************/ STARTUPINFO si; PROCESS_INFORMATION pi; si.cb = sizeof(si); char cmd[] = &quot;rename D:\\Documents\\myFile.txt...
  7. AliFessi

    Make the difference between a binary and an ASCII buffer?

    Hi there, I am writing program that reads data from a &quot;const char * buf&quot; in a loop. If the content of this buffer is in ASCII-Code, it has to be displayed on the screen. If it is in binary mode, it doesn't make sense to display it. So in this case, I want just to display some...
  8. AliFessi

    Generate Header file and lib from a dll

    Hi there, Does anyone know if it possible to generate a header file or a lib file from a binary dll file? May be you know an other idea to use a function from a dll file without any other information! If you cannot answer my questions just give me some tips that could be helpful. Thanks a lot!
  9. AliFessi

    How do I get the name of a process by its pid?

    Hi, My name is Ali. I am writing a dll with Visual C++ (it 's not an MFC' dll). I want to recognize which process is using the dll. With _getpid () I could get the process id. And now, how can I get the name of the process?! Thanks !

Part and Inventory Search

Back
Top