Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~813 People Reached
Favorite Forums

7 Posted Topics

Member Avatar for bhas_purk

hello, I am using a bitset constructor to pass an unsigned long and create a bitset object. [code] bitset<32> bvec(012); string mystring=bvec.to_string<char,char_traits<char>,allocator<char> >(); cout << "mystring: " << mystring << endl; [/code] here the least significant 4 bits are- 1010 when i write [code] bitset<32> bvec(12); [/code] the least significant …

Member Avatar for bhas_purk
0
92
Member Avatar for bhas_purk

hi guys, I am getting this weird problem when I sort items in a listview control. Initially when my list has few items, it sorts fine. When the size of the list increases beyond a certain number of items, around 1000, then the LPARAM pointers passed to the sort function …

0
88
Member Avatar for bhas_purk

Hi guys, Im doing this project in VC++ 2005. I cannot seem to get the size for my directory. No error is returned when I use GetLastError(); Both Low and High are coming out as 0. I do get a handle value for MF ( dunno how to verify if …

Member Avatar for Rajesh R Subram
0
162
Member Avatar for bhas_purk

Hi guys, Merry Christmas. I created a program to delete duplicate songs from my computer. It is working nicely and for it to be really helpful I want to package it somehow so that I can give the software to my friends for use. Now I know giving just the …

Member Avatar for Ancient Dragon
0
135
Member Avatar for Weetnie

[CODE] for (int i = 0; !fin.eof( ); i++) reading numbers { getline( fin ,input); if(input.find("@")!=string::npos) printf("%s\n",input); } [/CODE] [QUOTE=Weetnie;1073126]Hi, I'm having trouble finding the '@' sign in multiple lines of text. What I want to do is find the @ sign, and if I have found it, print the …

Member Avatar for jephthah
0
119
Member Avatar for bhas_purk

hello, I am reading this ID3 tag from an mp3 file. I dump bytes equaling the tag size into a char*, then I read each byte by recursing through the array one byte at a time. I also have the mp3 file open in text editor, so I know what …

0
60
Member Avatar for bhas_purk

hi, how do I create an array of pointers to a struct using malloc? using malloc like this- [CODE=c] abc * a = (* abc)malloc(sizeof(abc)*10); [/CODE] I get an array of struct objects. I can access member elements using the "." operator. eg a[2].xxxx what I want is an array …

Member Avatar for bhas_purk
0
157

The End.