Click here to Skip to main content
15,919,778 members

Comments by Debasis.logica (Top 6 by date)

Debasis.logica 28-Feb-18 4:20am View    
Hi,

Can you search here?

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\120\Tools\Setup

I had installed on a Windows 10 Pro and this is the place where I got those info. Please let me know.
Debasis.logica 3-Jun-16 1:39am View    
I am not quite sure about the reason for downvoting!!!

Thanks.
Debasis.logica 1-Jun-16 3:57am View    
I think oCompanyBO.SelectedSupplierIDs is a list of string (not a string variable). If that is the case, you cannot do a comparison like that. You need to do like

if(oCompanyBO.SelectedSupplierIDs.Contains(row["CompanyID"].ToString()))

instead.

Please let me know.
Debasis.logica 1-Jun-16 2:20am View    
Have you included the using statement for System.Collections.Generic like:
using System.Collections.Generic;
at the top of your code?
Debasis.logica 13-May-16 7:45am View    
Hi,

Please alter the foreach section like below and check (also I think you can remove the last line i.e. gridView1.AddNewRow();):

foreach (var x in results)
{
DataRow newRow = dt.NewRow();
newRow.SetField("inventoryName", x.inventoryName);
newRow.SetField("Quantity", x.Quantity);

newRow.SetField("Total", x.Total);
dt.Rows.Add(newRow);
}