C# Windows Forms Tutorial #20 - Creating a Notepad App

Поділитися
Вставка
  • Опубліковано 31 жов 2024

КОМЕНТАРІ • 12

  • @SEIoff1archives782
    @SEIoff1archives782 2 роки тому

    bro, you save me from my last activity! I'm really thankful you exist on UA-cam!!

  • @garryregan7216
    @garryregan7216 4 роки тому +13

    Adding a | between *.txt! and All Files fixed this for me:
    saveFileDialog.Filter = "Text File (*.txt) | *.txt! | All Files (*.*) | *.*";

  • @simontillema5599
    @simontillema5599 2 роки тому +1

    Great video!
    One question: why are you putting all code within a try-catch statement? Is this necessary or just a habit of you?

    • @pistaretek6186
      @pistaretek6186 2 роки тому +2

      He's puting every code in try catch cuz if the try doesnt work than the program doesnt going to crash.

  • @j0nathan550.
    @j0nathan550. 2 роки тому

    When i tried to press on saveFileAs it doesn't appear. I just change the string to: savefileDialog.Filter = "All Files (*.*)| *.*"; And everything was work normally.

  • @braimahchristopher5000
    @braimahchristopher5000 Рік тому

    The ! Sign is the problem, It should have been | Sign instead

  • @MrGoodvibes95
    @MrGoodvibes95 2 роки тому

    The “save” and “Save as” are back to front

  • @tiagodiaz9036
    @tiagodiaz9036 3 роки тому

    Ok.