Click here to Skip to main content
15,894,343 members
Home / Discussions / C#
   

C#

 
AnswerRe: delegate difficulty Pin
Paulo Zemek25-Mar-13 5:34
mvaPaulo Zemek25-Mar-13 5:34 
QuestionHow to use databindings class in web application? Pin
behrad kiani24-Mar-13 6:56
behrad kiani24-Mar-13 6:56 
AnswerRe: How to use databindings class in web application? Pin
Dave Kreskowiak24-Mar-13 7:33
mveDave Kreskowiak24-Mar-13 7:33 
AnswerRe: How to use databindings class in web application? Pin
Eddy Vluggen24-Mar-13 23:33
professionalEddy Vluggen24-Mar-13 23:33 
Questionwebcam based credit card reader with face recognition Pin
nabil j24-Mar-13 5:44
nabil j24-Mar-13 5:44 
AnswerRe: webcam based credit card reader with face recognition Pin
OriginalGriff24-Mar-13 5:52
mveOriginalGriff24-Mar-13 5:52 
GeneralRe: webcam based credit card reader with face recognition Pin
Narasimharao Chebrolu16-Nov-21 19:48
Narasimharao Chebrolu16-Nov-21 19:48 
AnswerRe: webcam based credit card reader with face recognition Pin
DaveyM6925-Mar-13 1:10
professionalDaveyM6925-Mar-13 1:10 
AnswerRe: webcam based credit card reader with face recognition Pin
Narasimharao Chebrolu16-Nov-21 19:48
Narasimharao Chebrolu16-Nov-21 19:48 
Questionhow to access specefic attribute of a table? Pin
behrad kiani23-Mar-13 23:42
behrad kiani23-Mar-13 23:42 
AnswerRe: how to access specefic attribute of a table? Pin
Mycroft Holmes24-Mar-13 2:23
professionalMycroft Holmes24-Mar-13 2:23 
AnswerRe: how to access specefic attribute of a table? Pin
Dave Kreskowiak24-Mar-13 5:38
mveDave Kreskowiak24-Mar-13 5:38 
GeneralRe: how to access specefic attribute of a table? Pin
behrad kiani24-Mar-13 6:06
behrad kiani24-Mar-13 6:06 
GeneralRe: how to access specefic attribute of a table? Pin
Dave Kreskowiak24-Mar-13 6:50
mveDave Kreskowiak24-Mar-13 6:50 
GeneralRe: how to access specefic attribute of a table? Pin
behrad kiani24-Mar-13 6:54
behrad kiani24-Mar-13 6:54 
GeneralRe: how to access specefic attribute of a table? Pin
Dave Kreskowiak24-Mar-13 7:32
mveDave Kreskowiak24-Mar-13 7:32 
GeneralRe: how to access specefic attribute of a table? Pin
behrad kiani24-Mar-13 8:30
behrad kiani24-Mar-13 8:30 
Questionasp Pin
Member 993700223-Mar-13 17:09
Member 993700223-Mar-13 17:09 
AnswerRe: asp Pin
Richard MacCutchan23-Mar-13 22:22
mveRichard MacCutchan23-Mar-13 22:22 
AnswerRe: asp Pin
Abhinav S24-Mar-13 22:30
Abhinav S24-Mar-13 22:30 
QuestionManaged c++ dll struct members not visible in c# Pin
bonosa23-Mar-13 11:19
bonosa23-Mar-13 11:19 
In the c++-cli dll which is referenced in my c# project, I have

C++
namespace MatsWrapper {

  public struct MatsContact
  {
  public:
	  char* contactName;
	  char* fileName;
	  float lat;
	  float lng;
	  float heading;
	  int numContact;
  };


In my c# project I'm trying to access the members but they don't show up in the intellisense.

C#
unsafe{

MatsWrapper.Class1 oMats = new
MatsWrapper.Class1();
                    
                    
                 
MatsWrapper.MatsContact** contacts; 
contacts = oMats.CallMats(x);
int numContacts = oMats.m_numContacts;

 for (int k = 0; k < numContacts; ++k)
{
 
                                                               Contact newCtc;
                            
newCtc = Contact.Create(contacts[k]->contactName, ac.Latitude, ac.Longitude);
}


contactName doesn't show up when I do contacts[k]->contactName.
Why is this and how do I fix it?
Many thanks,
sb
AnswerRe: Managed c++ dll struct members not visible in c# Pin
jschell23-Mar-13 12:47
jschell23-Mar-13 12:47 
Questionmy namespace is noise but my database name noise2 .there are two table . i want to connect with noise2 but get some error like the name"lbltxtname" does not exist in current context. what can do now ?? Pin
mmmickyyy22-Mar-13 0:49
mmmickyyy22-Mar-13 0:49 
AnswerRe: my namespace is noise but my database name noise2 .there are two table . i want to connect with noise2 but get some error like the name"lbltxtname" does not exist in current context. what can do now ?? Pin
Eddy Vluggen22-Mar-13 1:07
professionalEddy Vluggen22-Mar-13 1:07 
GeneralRe: my namespace is noise but my database name noise2 .there are two table . i want to connect with noise2 but get some error like the name"lbltxtname" does not exist in current context. what can do now ?? Pin
mmmickyyy22-Mar-13 1:42
mmmickyyy22-Mar-13 1:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.