blah blah blah is here! blah blah » Close

0
votes
2 answers

Out of memory exception in C#

How can we avoid out of memory exception while doing Dataset.WriteXML(stringbuilder); Here the size of dataset data is 80 mb

0
votes
0 answers

Regarding SOAP Exception

Hi, I have a drawingboard[windows C#] application and a web application. Using web application i can select the drawing board application. I used click once deployment for that. In this case i am using a dataset to get the values from ...

0
votes
1 answers

List<int> to IntPtr in C#

Hi, I have a c++ dll having one structure as follows //*************************// typedef unsigned int NodeID; struct inputNode { NodeID id; BOOLEAN isExit; }; //************************// And here is a method as below / ...

0
votes
1 answers

How i can communicate with DDE using C#

Hi, Here i need to communicate with the DDE using C# for doing some real time operations. But i've no idea about this communication.How can i do these protocol communication. Any body can give me a detailed mail or links for doing th ...

0
votes
1 answers

Value class in C#

Hi, I am working with C# and declared a class with name lcf and creating two objects in GUI. and assigning the object with =, like a=b; whatever the modification in b will reflect in a also, because C# class is default byref. I don ...

0
votes
1 answers

MultiByteToWideChar in C#

Hi I'm trying to convert one c++ function to C#.There is using code to convert ansi to unicode characters Following is the actual code int charsInBarCode = i - nBarCodeStart; charsInBarCode -= 4; int cbAlloc = (charsInBarCode+1 ...

0
votes
1 answers

ptrtostruct

Hi I am developing a wrapper in C# to communicate a c++ sdk.There is a struct in C++ Like follows typedef struct { DWORD dwSize; BYTE *pDataReceived; int cbDataReceived; BYTE rgResponse[B ...

0
votes
1 answers

Intellisense

Hai I'm creating a classlibrary in C# and using it as an interop in .Net framework application.But i need the detailed documentation of the method when hover over the interop object.What should i do? thanks in Advance

0
votes
1 answers

byte pointer in C#

How to use Byte* in C# struct{ Intptr xx} I used IntPtr instead of it. But i always get value -1 for that Actually it is a pointer refering a data packet

0
votes
1 answers

Structure Pointer

I am using a C# class communicating with a c++ dll. I had created 3 structs in correspondance with c++ c++ code typedef struct { DWORD dwSize; const char * pszDeviceSn; int nPacketId; int nBarCodeCount; ...

Feedback