Click here to Skip to main content
16,012,223 members

Comments by pbnarendra (Top 8 by date)

pbnarendra 2-Nov-17 7:28am View    
System.TypeLoadException occurred
HResult=0x80131522
Message=Requested Windows Runtime type 'Windows.Devices.Bluetooth.GenericAttributeProfile.GattServiceProvider' is not registered.
Source=System.Private.CoreLib
pbnarendra 12-Aug-15 9:07am View    
Thank u very much... let me check the link and update u soon..
Thanks a lot..
pbnarendra 11-Aug-15 3:21am View    
Thanks for reply...is it possible to do without third party frameworks... because in visual studio we have the option like quick watch they we can get the object with variables....to achieve this, is there any option..
pbnarendra 11-Aug-15 2:38am View    
Thanks Mr.Sundararaman S, yes i am trying to implement using c++/vc++, could you please suggest how to achieve this...
pbnarendra 10-Aug-15 9:02am View    
Thank you very much... and sample code is as follows

//Create table Emp(EmpId int,Name varchar(60),Address varchar(150)) // sql table

class Emp
{
public:
int EmpId;
char Name[60],Address[150];
};

int LoadEmployee(int iEmpid, void* ptr)
{
CString strQry;
strQry.Format("Select * from Emp where EmpId=%d",iEmpid);
return GetQueryDetails(strQry,ptr)

}
int GetQueryDetails(CString strQry,void* ptr)
{
_RecordsetPtr res;
ExecuteMyQry(res,strQry); // in this the qry will execute
while(!res->GetadoEOF())
{
//iterate here and have to sync to actual object
}
return 1;
}