CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: emreozpalamutcu

Search: Search took 0.02 seconds.

  1. How to open file location from list view item using context menu strip?

    Here is list of things I want to do:

    Display context menu strip only when mouse is over the item and right clicked on it, the code I have for that is this:

    private void...
  2. Replies
    1
    Views
    5,889

    How To Format File Sizes?

    Currently I have this code:

    Code:

    public static class SizeUnit
    {
    public static string FileSizeToString(long size)
    {
    double FileSize...
  3. Re: How to display files in a multiple directory?

    Problem is solved!
  4. [RESOLVED] How to display files in a multiple directory?

    I'm making a mini disk cleaner and I have wrote this code:

    listView1.Items.Clear();

    DirectoryInfo dirCustom = new DirectoryInfo("C:\\Windows\\");

    FileInfo[]...
  5. Re: How to display the files in a specific folder?

    Thank you for your answer, I have a rough idea about how I could do it but is it possible for you to give me the code for it, because now I would have search the code really

    Thanks
  6. How to display the files in a specific folder?

    I'm trying to make a little disk cleaner program and I couldn't figure out how to display the results of scanned directory on list view tool on windows form application. I have a 3 columns and these...
  7. Re: How to display the files in a specific folder?

    can you give the link to .net forum. isn't there .net part in code guru?
  8. Re: How to display the files in a specific folder?

    yes, I'm using Windows forms. Thanks for the advice.
  9. How to display the files in a specific folder?

    I'm trying to make a little disk cleaner program and I couldn't figure out how to display the results of scanned directory on list view tool on windows form application. I have a 3 columns and these...
  10. Re: How to email a simple plain text on windows form applications?

    here is the expection
    Additional information: Failure sending mail.

    thats all other info and what you mena smpt server running on my local host how to do that and if other people use this...
  11. Re: How to email a simple plain text on windows form applications?

    thanks for the reply i have this code :

    using namespace System::Net::Mail;

    private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
    SmtpClient^ sc = gcnew...
  12. How to email a simple plain text on windows form applications?

    I using visual studio 2010 C++ Windows form application with net framework 4 and I want to send a simple text email without any login requirement. The code will read the text in richtextbox1 and...
  13. Re: How to email a simple plain text on windows form applications?

    kk thanks
  14. Re: How to email a simple plain text on windows form applications?

    why
  15. How to email a simple plain text on windows form applications?

    I using visual studio 2010 C++ Windows form application with net framework 4 and I want to send a simple text email without any login requirement. The code will read the text in richtextbox1 and...
Results 1 to 15 of 15





Click Here to Expand Forum to Full Width

Featured