- Видео 16
- Просмотров 372 204
Vere Miller
США
Добавлен 4 июл 2014
Hi my name is Vere (pronounced Veer) and Welcome to My Channel!! I have a lot of experience in coding. Specifically, coding with C# on the .NET Framework/Core. I began my coding journey by trying to brute force everything. Do not make my mistake! Brute force coding takes a long time and will test your patience every step of the way. I learned more in about 10 minutes from some of my mentors than I did in hours of trying to brute force my way to success. This is why I have decided I want to help my fellow coders by publishing useful tech related videos. My videos range from Tech Product Reviews to How To Guides to Complete Tutorials. I try my best to make content that will help viewers achieve their goals. However, I cannot always guess what my viewers will want to see, and therefore I have started a Discord Server to streamline communication between myself and my viewers. If you are interested in joining my server the link is discord.gg/KM7FfMeHtS
Thank you for your support!
Thank you for your support!
How to Make a Super Simple Text Editor in C#
In this video, I quickly show you how to make a super simple text editor in C# WPF. I go over how to create the UI, open a file dialog box, and the basics of text box manipulation. I used Visual Studio 2019 and WPF on the .NET Framework 4.7.2. I hope you enjoy this video!
To get/see the code shown in this video, you can find my GitHub repository at this link: github.com/vmille25/SuperSimpletextEditor
For questions, comments, suggestions or discussions join my discord server with this link: discord.gg/KM7FfMeHtS
To get/see the code shown in this video, you can find my GitHub repository at this link: github.com/vmille25/SuperSimpletextEditor
For questions, comments, suggestions or discussions join my discord server with this link: discord.gg/KM7FfMeHtS
Просмотров: 5 652
Видео
Easiest Way to Make a Screen Recorder in C#
Просмотров 16 тыс.3 года назад
In this video I show how to create your own screen recorder program in C# with the .NET Framework. This video is designed to be extremely simple and easy to follow, and there is not much actual coding shown in this video for time's sake. However, I encourage you to follow along and look at the code to try to gain a fundamental understanding of how this screen recorder works. Thanks for watching...
Super Simple HTTP Client Application Guide in C#
Просмотров 15 тыс.3 года назад
In this video, I give an introduction to HTTP Clients in C#. This video is designed as a brief overview of how to use HTTPClient in your own C# projects, for both .NET Framework and .NET Core applications. HTTP can seem like a daunting concept at first, but this video should help to eliminate the difficulties of getting started with HTTP in C#. For any questions, comments, suggestions or discus...
How To Add An Image To A Visual Studio Project
Просмотров 141 тыс.3 года назад
This is a quick video detailing the steps to add an image to a visual studio project. The steps shown in this video will work for any Visual Studio project's Solution. With your project open in Visual Studio, the steps to add an image are: 1. Highlight the project 2. Right click the project and hover over Add an Existing Item 3. Navigate to the location (folder) where your image is saved, in my...
How to Make a Visual Basic Client App for an SQL Server Database with ASP.NET using JQuery and AJAX
Просмотров 1,1 тыс.3 года назад
This video is focused on creating a Visual Basic (VB) client application that can access and retrieve data from an SQL Server Database. This video builds off of my previous video that detailed how to create a SQL Server Database in SQL Server 2019, and the video just like this one but with the C# programming language rather than the VB language. This ASP.NET Application is built on the .NET Fra...
How to Make a C# Client App for an SQL Server Database with ASP.NET using JQuery and AJAX
Просмотров 9463 года назад
This video is focused on creating a C# client application that can access and retrieve data from an SQL Server Database. This video builds off of my previous video that detailed how to create a SQL Server Database in SQL Server 2019. This ASP.NET Application is built on the .NET Framework and written in the C# programming language. JQuery and AJAX are used to access the database and populate an...
Create SQL Server Database, Table, and Stored Procedure (SQL 2019 and SSMS Install Shown in Video)
Просмотров 2353 года назад
In this video I show how to install both SQL 2019 and SQL Server Management Studio (SSMS) on Windows 10 Operating System. I also show how to create a database, a table within the database and create a stored procedure for the database. This video will lead into using SQL 2019 with ASP.NET projects. Thanks for watching!!! Link to my discord channel for questions, comments, suggestions and discus...
How to Use Timers in C#
Просмотров 36 тыс.3 года назад
We all exist in time and computers do too. Being able to harness the power of time is crucial to making next level programs. Watch this video to learn how you can fully utilize time in all of your C# programs. Thank you for watching! Link to my Discord Channel for C# questions, comments, suggestions and discussions: discord.gg/KM7FfMeHtS Link to the Github repository for the code shown in this ...
How To Get Historical Stock Market Data in C#
Просмотров 11 тыс.3 года назад
In this video I describe how to get historical stock market data with the C# programming language. I utilize the YahooFinanceAPI nuget package to asynchronously fetch the historical stock data. I also show how to handle the return of said asynchronous task and how to continuously get new symbols and timespans for the data from the user. Thank you for watching this video!!! Link to github repo f...
Graph/Chart Generation (Data Visualization) with C#
Просмотров 4,7 тыс.3 года назад
I did not wake up this morning thinking I am going to be making a 20 minute video about graph generation in C#, but I think I am past this now. In this video I discuss how to create and save graphs/charts using C# code. This could be very useful for processing and visualizing large amounts of data (such as a big .csv file). This video guide is relatively simple to follow but if you want to see ...
Create and Connect an SQLite Database in your C# Project
Просмотров 8 тыс.4 года назад
In this video I cover the basics of creating and connecting a connection to a SQLite database in a C# project. SQLite is a free and open source database management language and it is easily accessible through a C# application using Visual Studio Community 2019 IDE. This video is very basic and therefore very open-ended, meaning that the viewer must take the information in this video and use it ...
Simple Drag and Drop Effect Implementation in C# (WPF)
Просмотров 18 тыс.4 года назад
In this video I show exactly how to implement the drag and drop effect in the C# programming language, using WPF. This method is extremely simple compared to some other examples you may have seen on the internet, altogether this project is 60 lines of code. I start the project from scratch so it should be very easy for you to follow along with me and create your own implementation of the drag a...
How to Utilize Listboxes in C# with an Example
Просмотров 1,2 тыс.4 года назад
In this video I work through an example of creating a grocery list. Using a listbox to list all the available items, and data manipulation techniques to add detail and order to the selected items. Link to my Discord Channel for C# questions, comments, suggestions and discussions: discord.gg/KM7FfMeHtS Below is the tuple method source code that would be found within your MainWindow.xaml.cs file ...
Resizable Window with Dynamic XAML Elements
Просмотров 21 тыс.5 лет назад
In this video I discuss the following topics: - How XAML elements behave under default circumstances - How to make XAML windows and elements dynamically resize - How to design a dynamic window with best practice Link to my Discord Channel for C# questions, comments, suggestions and discussions: discord.gg/KM7FfMeHtS
Create Your First C# Desktop App With Visual Studio 2019 (Install Shown In Video)
Просмотров 59 тыс.5 лет назад
The following topics are covered in this video: - Visual Studio 2019 Community Download and Install for C# Desktop Development - Discussion of the basics of a WPF Application - Create, Build, and Run an invisible label C# program Link to my Discord Channel for C# questions, comments, suggestions and discussions: discord.gg/KM7FfMeHtS
Would be MUCH more interesting to see how the pic is then used in code
ok but how do you add that image into your window?
Lmfao legit, like wtf?
Sounds like you want a pictureBox
I tried this code, but I get an error. Call failed with status code 401 (Unauthorized). How do I fix this?
verrry niceeee
Maybe I'm too far behind. How did you get to Solution Explorer? My screen looks nothing like yours. 🤪 Using Visual Studio Ultimate 2023.
I don’t have that option
very helpful and clear video - thanks, it is much appreciated 👍👍
I know this is late, but- I don't have the 'solution explorer' in my Visual Studio program to click on and do any of this.
Got here from looking up how to play a C# on recorder. Greatest mistake of my life.
What is the git link?
SharpAvi has 'bloodhound exploit'.
Hello, in teh SharpAVI, KnownFourCCs is inaccessible, and AviWriter.AddUncompressedVideoStream + AviWriter.AddMpeg4VideoStream do not exist in the package. What could I be missing?
I see this was addressed already. However, what should be done with the new version for KnownFourCCs - Should everyone abandon the newest version of SharpAvi or?
This needs more views, seriously.
I have made a strategy testing analyzer app for personal use, i was based on scraping yahoo's website till they start to mess with it and block scraping recently. Briliant yet so simple, this is a gem for me, i will use your console app as my listener to update my database once a day after closing. Now i can split my app and throw away all of the database handling, and keep just the analysis portion of my work. Dude are you still investing in the market ? I would like to see new work of yours if you made any . thanks!
Thank you brother!! Life saver for real
*Just a regular Vietnamese when i see app.xaml.cs LOL XD
Merhabalar, eklediğimiz fotoğrafı, bir video izlerken kaç kez gördüğü ve her gördüğünde "beep" sesi çıkaran yazılımı nasıl yazarız. Örneğin; vidoda kaç kez araba gördü. Teşekkürler...
Thank you that works
Awesome
Thanks brother your video helped a lot. Keep posting such videos.
Sorry I need a little more info, do you have to create a folder within the project folder and add any images you may want to use into that for Vs to find the images or can you add them directly from your c drives image folder?
espanol
bro In this code, there is an error in the part "SharpAvi.KnownFourCCs" while defining the codec for the output video ("out.avi", 10, SharpAvi.KnownFourCCs.Codecs.MotionJpeg, 70));
and here return writer.AddMotionJpegVideoStream(Width, Height, Quality); , return writer.AddMpeg4VideoStream(Width, Height, (double)writer.FramesPerSecond, , (Point.Empty, Point.Empty, new Size , ImageLockMode.ReadOnly, PixelFormat.Format32bppRgb);
thanks for this video. you can try wpf tutorial series
I dont have that option for some reason
Thank you very much! It didn't pop up in my mind that I should have select all the file types so it would show the pictures.
thank u mate . i was trying but i didnt see the options to change the extension . like
very helpful video. thank you for making this... is the source code available ?
Hi, Great video, same remarks as DyslexicAnaboko Just another question, is it normal it's so slow on the first call (about 10 seconds), then it's immediate when I call it another time ? Thanks
yo thanks so much my school project will be wonderful now thanks to you hope good things happen to you all year long forever :)
what is axml file I only know html js and css. Which one would work for adding element
what if i want to add a whole folder of images json files etc?
Amazing, you introduced me to WPF and XAML, turns out it is like HTML!
I actually do HTML CSS a lot so that is very helpful
Instead of setting imagepath to an absolute path you should make it a relative path, if anyone else runs this it wouldnt work but with relative paths it would work in any directory, i would recommend "./temp/image.png"
Add audio?
East is up
very helpfull for school
Thanks man! Very clear and simple demo!
so to use timers for Microsoft Forms i would have to use dispatcher timer aswell right?
Did you by chance find this code on StackOverflow and not care to mention the original author?
spunch bop
gracias por el video la informacion me fue util, muchas gracias.
I can't #RightClick on my Mac computer so what other way?!
Is there any way to do this in Visual Studio Code instead of Visual Studio, or is that just not possible?
Thanks Vere. I like how you said what each statement was doing, in plain talk.
16k hyper hd monitor btw
Holy shit balls your pc is SLOW. I forget my name in the time it takes to compile.
Where are your videos and subscribers?
Thanks!
Thank you for the tutorial! helped a ton!
Very good video. Thank you!