Click here to Skip to main content
15,896,154 members
Home / Discussions / C#
   

C#

 
AnswerRe: What kind of video recognition software exists? Pin
Dave Kreskowiak6-May-13 7:11
mveDave Kreskowiak6-May-13 7:11 
GeneralRe: What kind of video recognition software exists? Pin
Wigwam23236-May-13 8:48
Wigwam23236-May-13 8:48 
AnswerRe: What kind of video recognition software exists? Pin
Matt U.6-May-13 7:18
Matt U.6-May-13 7:18 
AnswerRe: What kind of video recognition software exists? Pin
Amarnath S6-May-13 7:42
professionalAmarnath S6-May-13 7:42 
AnswerRe: What kind of video recognition software exists? Pin
Eddy Vluggen6-May-13 7:48
professionalEddy Vluggen6-May-13 7:48 
GeneralRe: What kind of video recognition software exists? Pin
Wigwam23236-May-13 8:49
Wigwam23236-May-13 8:49 
GeneralRe: What kind of video recognition software exists? Pin
Pete O'Hanlon6-May-13 9:04
mvePete O'Hanlon6-May-13 9:04 
GeneralRe: What kind of video recognition software exists? Pin
Dave Kreskowiak6-May-13 12:02
mveDave Kreskowiak6-May-13 12:02 
QuestionRemplir une datagridview à l'aide d'une autre Pin
geralson6-May-13 4:45
geralson6-May-13 4:45 
AnswerRe: Remplir une datagridview à l'aide d'une autre Pin
Eddy Vluggen6-May-13 4:58
professionalEddy Vluggen6-May-13 4:58 
GeneralFill a datagridview using another Pin
geralson6-May-13 5:09
geralson6-May-13 5:09 
GeneralRe: Fill a datagridview using another Pin
Dave Kreskowiak6-May-13 7:12
mveDave Kreskowiak6-May-13 7:12 
QuestionFetch Data from another website Pin
sandeep Nishad5-May-13 20:40
sandeep Nishad5-May-13 20:40 
AnswerRe: Fetch Data from another website Pin
OriginalGriff5-May-13 22:07
mveOriginalGriff5-May-13 22:07 
AnswerRe: Fetch Data from another website Pin
Clifford Nelson6-May-13 5:38
Clifford Nelson6-May-13 5:38 
QuestionAuto Dial-Up Method not working on 64-bit machine Pin
Edward_Zhao5-May-13 14:40
professionalEdward_Zhao5-May-13 14:40 
AnswerRe: Auto Dial-Up Method not working on 64-bit machine Pin
Garth J Lancaster5-May-13 16:41
professionalGarth J Lancaster5-May-13 16:41 
GeneralRe: Auto Dial-Up Method not working on 64-bit machine Pin
Edward_Zhao8-May-13 20:10
professionalEdward_Zhao8-May-13 20:10 
Questionwebrequest/response live.mail.com Pin
Crispybc5-May-13 12:15
Crispybc5-May-13 12:15 
AnswerRe: webrequest/response live.mail.com Pin
Bernhard Hiller5-May-13 22:04
Bernhard Hiller5-May-13 22:04 
GeneralRe: webrequest/response live.mail.com Pin
Crispybc6-May-13 2:41
Crispybc6-May-13 2:41 
Questionproblem Webservice Pin
azadehrasadi5-May-13 0:12
azadehrasadi5-May-13 0:12 
hiiiiiiiiiiiiiiiiiiiiii

in the ATL dll project there is one function with BYTE* Parameter.
C++
STDMETHODIMP CMSDllServer::sum22(BYTE* aa,SHORT len)
{
	AFX_MANAGE_STATE(AfxGetStaticModuleState());

	
	for(int i=1;i<len;i++)
	{
		aa[i]=i;
	}
  return S_OK;
}


in use during from this function in a windowes application c# doesnot exist no problem and array values returned to truth

C#
byte[] Packet = new byte[5];

dllServer.sum22(ref Packet[0],5);

   //out put
     1,2,3,4,5



but

the same function in a webservice returned to only first index array and exist very big problem

C#
   byte[] Packet = new byte[5];
dllServer.sum22(ref Packet[0],5);

   //out put
     1,0,0,0,0




help me pleaseeeeeeeeeeeeeeeeeeeeeeeeeeeee

thanx
AnswerRe: problem Webservice Pin
OriginalGriff5-May-13 6:08
mveOriginalGriff5-May-13 6:08 
GeneralRe: problem Webservice Pin
azadehrasadi12-May-13 2:17
azadehrasadi12-May-13 2:17 
GeneralRe: problem Webservice Pin
OriginalGriff12-May-13 2:24
mveOriginalGriff12-May-13 2:24 

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.