Developing a Point of Sale System using VB.NET part 4
This is the 4th tutorial about developing a point of sale system. If you want to download the source code, check out the website at: www.mka-soft.com thank you
This is the 4th tutorial about developing a point of sale system. If you want to download the source code, check out the website at: www.mka-soft.com thank you
Powered by WP Robot
hey did u cleared ur error…if u cleared plz help me 4m getting out dis error…..im also finding d same trouble
Full Advanced Inventory Management Source Code
Visit: inventoryinvbdotnet.blogspot.in
I have a problem with Ta.Fill(TmpDs…can settle this one
Sir, Checked but its not working.
Yes, but i cant understand…
Sir can u explain how to solve overload resolution on tutrial.. Plz. still not under stand newbieinjava
Yes, but i not understand this solution…
Sir, i not understand this, does it mean i copy of report view and past it on another WindowForm. Plz help me
Hi there…
this solution is from newbieinjava
solution for rds report viewer overload solution is very simple. i copy a copy of report view from mkaatr project. from there, u right click and open with xml viewer and edit the code from inside. that works for me i now had 7 types of report type including user report sales and all kinds of other report type.
Hi there…
have you checked newbieinjava solution? check it below
yours sincerley
anyone know how to fix the overload resolution error?
I’ve VS 2010.
Plz help me I have following error:
Overload resolution failed because no accessible ‘New’ is most specific for these arguments:
‘Public Sub New(name As String, dataSourceValue As System.Collections.IEnumerable)’: Not most specific.
‘Public Sub New(name As String, dataSourceValue As System.Data.DataTable)’: Not most specific. C:EducationITVisual BasicPractice Filepos04pos04GUIMainWindow
Hi subzawari.
first thanks mkaatr for ur great project.
solution for rds report viewer overload solution is very simple. i copy a copy of report view from mkaatr project. from there, u right click and open with xml viewer and edit the code from inside. that works for me i now had 7 types of report type including user report sales and all kinds of other report type.
thanks alot i will try and then inform u if it works
Try this, someone had the same issue, this is what i did and it worked:
1- go to project properties
2- select compile options
3- change the compilation from .net framework 4.0 client profile into .net framework 4.0
4- go to the references
5- select Microsoft.ReportViewer.Common
6- press remove
7- select Microsoft.ReportViewer.WinForms
8- press remove
9- press add
10- add Microsoft.ReportViewer.Common from the .net tab
11- add Microsoft.ReportViewer.WinForms using the same technique.
This is kind of a general statement. I assume there are many ecommerce management systems, so you need to know how the system work, understand the library of that system, and how to link to it, and then you can link the application the the ecommerce system.
Since I don’t know what system you are talking about, I can’t give you a correct answer. 🙁
my email is notes@mkasoft.com
How would I integrate this with an ecommerce management system ?
I told you before that i am using visual studio 2010 may be it works i visual studio 2008 but it not working in Vb 2010 any ways send me ur email id ill send my project file on ur email and solve problem for me
Correction, you can add the report viewer control in VS2010.
Hi there…
I tried running this on my machine and it worked, have you added the report viewer control into the list of available controls?
Hi there… I installed VS2010, and yes, the control does not appear at design time, but you will find that the technique works. Make sure you click on the group box first, then drag and drop the report viewer control into it. I tried this with the application and it worked fine.
Hi There
I am Using Visual Studio 2010 and i am getting following error message
Dim RDS as new Microsoft.Reporting.WinForms.ReportDatasource(“”,tmpds.TotalProfitForAllTime)
it says that RSD overload same error like newbieinjava
could you creat a video for solving this problem
Hi there…
The report is just rendering the result of SQL statement. So it is the same as display that result in a datagridview. In other words, put a DGV instead of the report viewer, create a binding source for it, and a dataset for it. Link the DGV with the binding source, and link the binding source with the dataset. And finally fill the dataset using the table adapter.