Link to home
Start Free TrialLog in
Avatar of Wuotan
Wuotan

asked on

Join more than 1 lpByte to one

I have a vector<LPBYTE> and want to join all the elements in this vector to only one LPBYTE.
This is what I tried:
LPBYTE lpByte;
for(int i = 0;i<vecLPB.size();++i)
{
	lpByte += vecLPB[i]; //i tried it like this, however this will just give me errors.
}

Open in new window


How can I manage to do this?
ASKER CERTIFIED SOLUTION
Avatar of Zoppo
Zoppo
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Wuotan
Wuotan

ASKER

You are truly a genius!
Thanks :o)

I'm glad I could help ...

Have a nice day,

best regards,

ZOPPO