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
~4K People Reached
Member Avatar for saneeha

I am using windows xp... I need to know what architecture (little or big) my machine is using...??? I have read that xp is always based on little Endian.. Is it true?? plz help..

Member Avatar for saneeha
0
180
Member Avatar for saneeha

I am using crystal reports for displaying the datatable.. I am using the table structure of crystal report.. It generates the report accurately but the columns are not adjustable..they are of fixed width as set in the design.. Can any one help me in finding iut how can I make …

0
53
Member Avatar for saneeha

I have made a data table and want to display its content on the crystal report viewer. My data table has 2 columns but the report only shows one column... <code> DataTable dtRecords; dtRecords = new DataTable("Records"); dtRecords.Columns.Add(new DataColumn("Name", typeof(string))); dtRecords.Columns.Add(new DataColumn("FullName", typeof(string))); dtRecords.Rows.Add("aslam", "zia"); dtRecords.Rows.Add("hamad", "anwar"); CrystalReport1 cr = …

Member Avatar for saneeha
0
50
Member Avatar for saneeha

I am converting a code from c++ to c#. The code uses the function findFirstFile() to return the first file of the directory.. Is this function present in c#, or there are any modifications to the function..The function uses a header windows.h. What is its replacement in c#? MSDN has …

Member Avatar for bmdeveloper
0
2K
Member Avatar for saneeha

I am saving the output of my program in .csv file. I need to save a variable's value in one column, but the value may contain comma. When the program encounters a comma it places half of the variable's value in the next column. Is there any way through which …

Member Avatar for Alex Edwards
0
76
Member Avatar for saneeha

I am using getfilepathname() to get the path of a particular file. but it returns the path of the project. i am using findfirstfile() and findnextfile() to get the handles, but still it doesnot show the directory in which handle is present... can any one help me on this issue …

Member Avatar for Salem
0
102
Member Avatar for saneeha

I need to extract complete path for a file givne the file name. I am using the function GetFullPathName() but it only appends the current directory of the project with the file name.. Is there any modification or some other function which can help? I am using visual studio 2005 …

Member Avatar for ArkM
0
244
Member Avatar for saneeha

I want to use the function GetFileSecurity() to retreive the security descripter of a file in the Master File Table from NTFS.. The function definition is [code] BOOL WINAPI GetFileSecurity( __in LPCTSTR lpFileName, __in SECURITY_INFORMATION RequestedInformation, __out_opt PSECURITY_DESCRIPTOR pSecurityDescriptor, __in DWORD nLength, __out LPDWORD lpnLengthNeeded ); [/code] The fifth attibute …

Member Avatar for Ancient Dragon
0
173
Member Avatar for saneeha

Can any one tell that where can i find the "Local Security Policy" in Vista, originally found in control pannel of XP. Or is there any other way in Vista from where I can enable Auditing of ma logs???

Member Avatar for Ancient Dragon
0
57
Member Avatar for saneeha

Is there a way to find the size of an icon in bytes..? The file with the extension .ico stores the icons and it has a directory field which tells the bytes occupied by the icon's data. But the question is that how can we extraxt the information? is there …

Member Avatar for gerbil
0
72
Member Avatar for saneeha

Can any one guide me how can i write a byte array to a file.. I am using ofstream class function write().. but it only accepts char*, can any tell me some other function or any way of conversion..ma code is: [code]Byte array[512]; //....the array is initialized using memcpy()....// fstream …

Member Avatar for saneeha
0
767
Member Avatar for saneeha

I am using memcpy()function.. memcpy(&_bpb, bBootSector, 512); where _bpb is the variable of structure, bBootSector is byte array the whole progran works fine but at the exit it generates the following error: "[B]Run-Time Check Failure #2 - Stack around the variable '_bpb' was corrupted[/B]." Can any one please guide me …

Member Avatar for saneeha
0
198