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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by sulacco

  1. sulacco

    How to get checksum...

    Hi, People! How to get checksum of a file using something simple like sdk or win32?
  2. sulacco

    How to hide Dialog at start time?

    Thanks, I will try.
  3. sulacco

    How to hide Dialog at start time?

    Nope, it didn't work my app is dialog based, MFC.
  4. sulacco

    How to hide Dialog at start time?

    Hi, People. Maybe it's stupid question but How to hide Dialog at start up time? The app is dialog based.
  5. sulacco

    How to get number of a month?

    thank you, I did it much compex and damn worse. Btw, so I have to implement it on my own after all.
  6. sulacco

    How to get number of a month?

    Hi, People. Does anybody know how to get number of days in a certain month of a certain year? Looked all the way in MSDN but failed to find such function. Tx.
  7. sulacco

    What technology I have to choose to write a firewall?

    Hi, People. Happy New Year! What technology I have to choose to write a firewall? I need this to be done on a single computer which isn't connected to network but only to internet. Thanks in advance.
  8. sulacco

    How to use nt services programmatically?

    Hi, People. There was some job employer which ask to do a test which includes services. I need touch this topic but there isn't too evident info on the web. I just need a very simple, very small example how to use services.
  9. sulacco

    What one can do with nt services?

    Well, thanks. Can I implement some clock utility which is running like service. For example: I want to create some clock-alarm which will fire as some date approches. Some kind remider of some data which is important to me. Something like this. I create some GUI application which will set some...
  10. sulacco

    What one can do with nt services?

    Hi, People. What one can do with services. Well, I managed to start, stop, pause nt service programm. But what one can do practically with this. And where on the web to find information what to do with services. Tnx in advance.
  11. sulacco

    Does anybody knows why CEditView dosn't respond to..

    Hi, People. Does anybody knows why view class derived from CEditView doesn't respont to UpdateAllViews(NULL) function? Much obliged.
  12. sulacco

    How correctly copy CString to char * variable.

    Well, thanks. But I've got impression that the last example is just copying pointer from strContent to message. message = (char*)(LPCTSTR)strContent; and now message points to strContent buffer?
  13. sulacco

    How correctly copy CString to char * variable.

    Hi, People. How correctly copy CString to char * variable. I have: char * message; CString strContent; //this one is throwing an exception memcpy(message,str.GetBuffer(str.GetLenght(),str.GetLength()); How do you do it, pros?
  14. sulacco

    How to copy from char *buff to CString?

    Hi, People. How to copy from char *buff to CString? I've got such an sample: int size=file.GetLength(); char *buff=new char(size); file.Read(buff,size); file.Close(); strCont=*buff; //strCont=buff; don't work either delete [] buff; return strCount; everything is good but after I try...
  15. sulacco

    How to check professionally if a directory exist?

    How to check professionally if a directory exist?

Part and Inventory Search

Back
Top