Тёмный

VB.Net Inventory Management System Source Code ( visual basic .net project with mysql database ) 

1BestCsharp blog
Подписаться 121 тыс.
Просмотров 156 тыс.
50% 1

VB.Net Sales and Inventory Management System
▶ Get The Source Code: 1bestcsharp.bl...
▶ Get All VB.Net Projects Source Code: bit.ly/VBNetPro...
[ Check out my VB.Net Projects! ]
▶ Students Information System - bit.ly/Vbnet_S...
▶ Hotel Management System - bit.ly/VbnetHot...
▶ Contacts Management System - bit.ly/Vbnet_Co...
▶ Real Estate Management System - bit.ly/VBNet_Re...
▶ Library Management System - bit.ly/3A7hrXE
▶ All My Programming Projects Here - bit.ly/2HrU8hK
▶ My Source Code Store Here - bit.ly/2OsC0TU
-----------------------------------------------------------------------------------
subscribe: goo.gl/nRjPKk
This Project Is Created Using .net technology (windows form)
- visual basic .net programming language.
- visual studio express 2013.
- mysql database
- canva.com for images
- flatuicolorpicker.com for colors
- iTextSharp (PDF library).
this visual basic.net inventory system project can do:
in this project if you login as an user with the user type user you can:
in products tab:
- add,edit,remove the selected product
- display all products from mysql database into datagridview.
- search products.
in categories tab:
- insert,update,delete selected category
- show all categories from mysql database into datagridview.
- when you select a category from the datagridview the products in this category will show up on a listbox
- if you double click on the category a new form will show up with all products data in this category
- navigate between categories using two buttons next and previous
- button to clear textboxes
in customers tab:
- insert,update,delete selected customer
- show all customers from mysql database into datagridview.
- navigate between customers using two buttons next and previous
- button to clear textboxes
- when you select a customer, 1)set the customer data into textboxes,
2) get the customer number orders, 3) get the customer total orders amount,
4) get the customer last order date
in orders tab:
- when the order from will show up you can see 3 datagridview one for the customers, one for the products,
and another for the products you want to add in the order
- you can see the selected customer orders
- you can display pro depending on the category you want using combobox
- you can add a new customer
- show all the orders
- add the products you want to the order and select the quantity you want
- remove the products you want from the order
but if you login as an user with the user type admin you can a unique tab visible only for the admin, it's the user tab
in users tab:
- add,edit,remove the selected user
share this video with your friends: • VB.Net Inventory Manag...
c# version: • C# Inventory Managemen...

Опубликовано:

 

11 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 74   
@1BestCsharpblog
@1BestCsharpblog 4 года назад
▶ Get Source Code: 1bestcsharp.blogspot.com/2018/04/vbnet-inventory-system-source-code.html ------------------ Check out More VB.Net Projects -------------------- ▶ Inventory Management System - bit.ly/Vbnet_Inventory_System ▶ Students Information System - bit.ly/VbnetStudent_System ▶ Contacts Management System - bit.ly/Vbnet_Contacts ▶ All My Programming Projects Here - bit.ly/2HrU8hK ▶ My Source Code Store Here - bit.ly/2OsC0TU
@shvllom
@shvllom 4 года назад
If i buy it now could you help me setup this on my PC???
@muhammadasgher9219
@muhammadasgher9219 Год назад
nice
@karleezdeak9629
@karleezdeak9629 6 лет назад
As usual, very good project and nothing to say 👍👍👍
@hoobalmedia4396
@hoobalmedia4396 6 лет назад
bro it is asking me money to buy project
@albashanetql
@albashanetql 5 лет назад
how to chang for db file visual utf8 because iam writing text arabic not work (???? )
@jeancarlouyengco887
@jeancarlouyengco887 4 года назад
Please notice me. is it possible to create a vb project with mysql database without any internet connection needed when you create an installer for that project
@salehsammani6557
@salehsammani6557 Год назад
I am interested in purchasing the VB.NET bundle, can you help me with setup?
@albashanetql
@albashanetql 5 лет назад
thank you iam testing but i have questions i have visual 2010 and server php mysql i can to run without problem
@farmcaisegefar1490
@farmcaisegefar1490 4 года назад
Thank you sooooooooo much sir you deserve my views my sub my like THANK YOUUUUUUU
@markreyes4571
@markreyes4571 6 лет назад
i am new here and i want to ask how can i connect the xampp mysql in visual studio 2012 is there a tuitorial pls help me
@markreyes4571
@markreyes4571 6 лет назад
i already purchase the project and i did import the invetory_db.sql but the problem is "MySqlException was unhandled"
@1BestCsharpblog
@1BestCsharpblog 6 лет назад
open xampp and start apache & mysql and create the database "invetory_db" using "invetory_db.sql" script
@ligialigia7273
@ligialigia7273 3 года назад
hi, can you an app with payment method ? thank you
@vickneshg1053
@vickneshg1053 6 лет назад
Masss project
@hedihedi4064
@hedihedi4064 3 года назад
Hi, I bought this system from you, but there are some mistakes, even though I brought the database.
@1BestCsharpblog
@1BestCsharpblog 3 года назад
what mistakes?
@chestertech27
@chestertech27 6 лет назад
Good Day sir! Can I have a clue when you double click on the category a new form will show up with all products data in the category. Thanks a lot God bless you..
@1BestCsharpblog
@1BestCsharpblog 6 лет назад
and what's the question ?
@chestertech27
@chestertech27 6 лет назад
how did you make display the category list when you click the specific product name like for instance computer and then all the list are drop down in form. :) Thank you..
@JonathanIsmaila
@JonathanIsmaila 5 лет назад
You could use Dim MyConn as SqlConnection (.....your connection string here...) Dim Query as String =Select * from Categories where CategoryName = @CatName Dim CmdCategory as New SqlCommand (Query, MyConn) CmdCategory.Parameters.Add("@CatName",SqlDbType.VarChar).Value=Listbox1.text Dim da as New SqlDataAdapter(cmd) Dim ds as Dataset da.fill(ds.tables(0)) DataGridView1.DataSource=ds.tables(0) Note: I assume you click a listbox which you already fulled with the category names. And you have a datagrid on your form which you want to display the data in.
@myko2543
@myko2543 3 года назад
@@JonathanIsmaila can u teach me sir
@Silver-nm2if
@Silver-nm2if 4 года назад
how do you deploy ?? i used mysql workbench, how do i deploy my app so that other computer can use it. does it even work offline? sorry im new to vb.net and mysql
@myko2543
@myko2543 3 года назад
do u still have the project sir
@suberrath8787
@suberrath8787 2 года назад
So you will start to charge for the source code ??? stupidity
@1BestCsharpblog
@1BestCsharpblog 2 года назад
yes, i spent time creating it and you want it for free??
@jerrylucas6526
@jerrylucas6526 6 лет назад
can you make a sample project with report viewer?
@joannacarlallanillo1960
@joannacarlallanillo1960 4 года назад
Hi, there is no download button in the link provided Can you give me the source code please? Just need as reference for our thesis, thank you!
@1BestCsharpblog
@1BestCsharpblog 4 года назад
1bestcsharp.blogspot.com/2018/04/vbnet-inventory-system-source-code.html
@joannacarlallanillo1960
@joannacarlallanillo1960 4 года назад
@@1BestCsharpblog hi, it is not free anymore? Thank you.
@hoobalmedia4396
@hoobalmedia4396 6 лет назад
why it is not freee
@salehsammani6557
@salehsammani6557 Год назад
Can you help with setup after purchasing?
@1BestCsharpblog
@1BestCsharpblog Год назад
watch the setup video - ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-TvTN1Dpwk8w.html
@salehsammani6557
@salehsammani6557 Год назад
Do you prefer PayPal payment or Ideal is ok with you?
@1BestCsharpblog
@1BestCsharpblog Год назад
Whichever option suits you best
@salehsammani6557
@salehsammani6557 Год назад
Can you help with setup?
@jvpacadaljen2630
@jvpacadaljen2630 5 лет назад
tnx to help sir...
@jeleenajacob9054
@jeleenajacob9054 4 года назад
ogo guldu
@nieljeffersonverdon9511
@nieljeffersonverdon9511 5 лет назад
How to subtract the quantity of database? Thanks for the help :))
@jeleenajacob9054
@jeleenajacob9054 4 года назад
kandi itto??/
@shvllom
@shvllom 4 года назад
Do you have FB account i am interested??? could you replace it for Sales and Inventory for Meat Products , just reply to the email
@jayaramr8580
@jayaramr8580 5 лет назад
how to creater software and dowalond and explain
@DjsTech
@DjsTech 6 лет назад
i need Student info project how to buy ?
@DjsTech
@DjsTech 6 лет назад
Problem with my Card My card is Rupay Debit card
@adrian6194
@adrian6194 6 лет назад
This project will make it step by step too?
@1BestCsharpblog
@1BestCsharpblog 6 лет назад
nope
@adrian6194
@adrian6194 6 лет назад
:(
@adrian6194
@adrian6194 6 лет назад
you do not have the video tutorial of this system to sell it with the code?
@muhammadshafiq9118
@muhammadshafiq9118 5 лет назад
Hi sir, I've seen the code and how you make the calculation ? I cant find
@1BestCsharpblog
@1BestCsharpblog 5 лет назад
what calculation ?
@muhammadshafiq9118
@muhammadshafiq9118 5 лет назад
@@1BestCsharpblog the calculation of the total price, just wanna see the code but i couldnt find it
@1BestCsharpblog
@1BestCsharpblog 5 лет назад
Sub getTotal() In MANAGE_ORDERS_FORM
@muhammadshafiq9118
@muhammadshafiq9118 5 лет назад
@@1BestCsharpblog thanks !
@geyanchi
@geyanchi 5 лет назад
i need this project
@1BestCsharpblog
@1BestCsharpblog 5 лет назад
link in the description
@arsalaanshaikh3079
@arsalaanshaikh3079 5 лет назад
Sir, how did you close the start page (i.e. login page) and open second page ? When I try to close the first page and open second page the application stops. Please help me with this.
@alexanderklimov7545
@alexanderklimov7545 4 года назад
In the Project properties you may choose Main form for your application. Choose form with table as main form, and in this form Form_Load event call Login form
@itimilucky4124
@itimilucky4124 5 лет назад
Sir can you please provide me the full tutorial and the source codes
@1BestCsharpblog
@1BestCsharpblog 5 лет назад
you can find the source code link in the video description
@ianpatrickpornasdoro3462
@ianpatrickpornasdoro3462 6 лет назад
Do you have attendance system? Thanks
@1BestCsharpblog
@1BestCsharpblog 6 лет назад
nope
@jeleenajacob9054
@jeleenajacob9054 4 года назад
poop
@firozrentiya3804
@firozrentiya3804 5 лет назад
Post source code and project
@1BestCsharpblog
@1BestCsharpblog 5 лет назад
link in the description
@dhruvparmar9915
@dhruvparmar9915 2 года назад
nai bolta
@AliStrengthNfitness
@AliStrengthNfitness 4 года назад
Can you speak?
@Exodus000191
@Exodus000191 5 лет назад
LOL you want 15 dollars to see the source code. Hahahahahahaha
@1BestCsharpblog
@1BestCsharpblog 5 лет назад
1 - $15 to get the full project source code 2 - you want the source code for free. Hahahahahahaha
@Exodus000191
@Exodus000191 5 лет назад
@@1BestCsharpblog plenty of free resources on github and stackoverflow ;)
@1BestCsharpblog
@1BestCsharpblog 5 лет назад
yes plenty of "resources" not full projects source code ;)
Далее
Cute
00:16
Просмотров 6 млн
To mahh too🫰🍅 #abirzkitchen #tomato
01:00
Просмотров 3,4 млн
Cursor Is Beating VS Code (...by forking it)
18:00
Просмотров 65 тыс.