Hi, I am getting the following error.Please help me in solving it. Debug\vc60.pdb" is missing debugging information for referencing module Regards, Mayank
Maynka
Posts
-
Error -
Reading avi fileHi, I want to separate the audio and video from the input avi file.How can i write the code to accomplish this.Are there any projects or url to explain how one can do this. Regards, Mayank
-
Reading and writing avi fileHi, I want to separate the audio and video from the input avi file.How can i write the code to accomplish this.Are there any projects or url to explain how one can do this. Regards, Mayank
-
Current focusHi, How to determine the cursorfocus whether it is in the dialog or on the control. Thanks and Regards, Mayank
-
Rich edit controlHi all, Is there any specific property in rich edit control so that by enabling it only we can enter text in that in second/third.. line succesively by pressing enter key.Actually while getting the dialog box run i am able to get the functionality of ENTER key in Rich edit control but when i am running the project i am not able to get the functionality of ENTER key.Is there any specific reason for this. Please guide regarding this. Regards, Mayank
-
Change the size of radio buttonI have put the radio button in a dialog box.I have resized the size of dialog box so that it adjust full screen on the desktop.Accordingly i have changed the size of all controls in that by using setwindowpos but for radio buttons this doesn't seems to be working. Any methos how to chnage the radio button size so that it displays correctly in full window. Regards
-
Parse excel fileHi, Please post any help on parsing the excel file. Regards, Mayank
-
Drawing a rectanglei have put a picture control inside a dialog box and in the picture control i have put a bitmap Now i want to draw a rectangle(only boundary) inside this bitmap.Further on right side of rectangle i want to put numbers -1 -0.5 0 0.5 1 starting from top to bottom. Please sugget how can i do this. Regards
-
Unhandled exception at 0x7822119c (mfc80d.dll) in Audio.exe: 0xC0000005: Access violation reading location 0xcdcdcdd9Hi, i am repeatedly getting this error in afxcoll.inl file and the cursor is stopping at the above piece of code in the above file. AFXCOLL_INLINE INT_PTR CPtrArray::Add(void* newElement) { INT_PTR nIndex = m_nSize; SetAtGrow(nIndex, newElement); return nIndex; } Further in my .cpp file i am writing the following code when this error occurs: Collect->m_Tracks.GetAt(i)->fOrder->m_FilesArray.Add(objUnitFile); I am really at loss figuring out how to solve this error. Thanks and Regards
-
Solution ot the following errorI am getting this error in file afxcoll.inl in the following function and the code is breaking here,i am using Visual Studio 2005: AFXCOLL_INLINE INT_PTR CPtrArray::Add(void* newElement) { INT_PTR nIndex = m_nSize; SetAtGrow(nIndex, newElement); return nIndex; } The link you gave doesn't seem to be of any help. Regards, Mayank
-
Solution ot the following errorThough MSDN explains the following error it doesn't give any solution,any pointers on this Expression Evaluator Error CXX0069 Send Feedback variable needs stack frame The expression evaluator cannot evaluate the variable because it does not occur in a stack frame. This can be caused by variables declared as part of an inline function. Thanks
-
errorHi, i am getting the following error: error PRJ0019: A tool returned an error code from "Performing Custom Build Step" how can i overcome this error.I think some build settings need to be changed. Regards
-
Getting the following errorHi all, I am getting the followiing error: error C2146: syntax error : missing ';' before identifier 'PVOID64' When i am including the PlatformSDK above C:\\DXSDK\\lib i am not getting this error but in that case i am getting the following errors: c:\program files\microsoft visual studio\vc98\atl\include\atlbase.h(305) : error C2065: '_vsnprintf_instead_use_StringCbVPrintfA_or_StringCchVPrintfA' : undeclared identifier c:\program files\microsoft visual studio\vc98\atl\include\atlbase.h(338) : error C2065: '_vsnwprintf_instead_use_StringCbVPrintfW_or_StringCchVPrintfW' : undeclared identifier c:\program files\microsoft visual studio\vc98\atl\include\atlbase.h(5483) : error C2065: 'lstrcpy_instead_use_StringCbCopy_or_StringCchCopy' : undeclared identifier c:\program files\microsoft visual studio\vc98\atl\include\atlbase.h(5946) : error C2065: 'lstrcat_instead_use_StringCbCat_or_StringCchCat' : undeclared identifier Please help me to resolve this. Regards
-
Displaying waveform of wav fileHi all, I want to display the waveform of wav file selected on the dialog.If there is any application or code for reference.Actually i am not able to read the wav file properties and adjust it according to dialog size. Regards, Mayank
-
Plotting the wav fileHi, Thanks for your reply.Actually in my case the samples=6112(with wach sample amplitude value between 0 and 255) and on x axis i have to represent these 6112 samples in a total of 1.39 seconds.Roughly if i divide x axis into parts of 100 ms then there are 13 such parts in which i have to divide 6112 samples,so if the display_width in the above case comes out to be 13 . Thanks and Regards, Mayank
-
Plotting the wav fileHi, I am trying to plot the wavform of wav file.In my case the wavfile consists of 6112 samples and having 8 bits per sample.byterate is 4395 bytes /s.Roughly it is equal to about 1.39 seconds of sample data.I want to plot this giving time on x axis and the sample amplitude on y axis. I am not able to normalize such that 6112 samples can be represented on the scale of 0 to 1.39 seconds.Any hints or suggestions are welcome. Regards, Mayank
-
Plotting graph using MFCHi, I have to plot a graph using MFC for one of my projects.Is there any example or tutorial which explains how to do that. Regards, Mayank
-
Stack overflow while reading bamp imageHi, Thanks for your reply.How can i allocate variables on heap in VC++. Regards, Mayank
-
Stack overflow while reading bamp imageHello all, I am getting error message: Unhandled exception:Stack overflow.It is due to the declaration of too large array sizes. But how can i overcame that problem The code presented here is given below: FILE *fp1,*fp2,*fp_write,*fpw,*fp_col; int width,height; int buffer,buffer1,buffer3; int k=0,p=0; unsigned int blueValue=0,redValue=0,greenValue=0; unsigned int grayValue=0; unsigned char *pChar; unsigned char someChar; long int iHist[256]; float hist[256]; long int total_pixels=0; int col[257499]; int C[561][459]; int m=0; fp1=fopen("D:\\Pictures\\mod.bmp","rb"); if(fp1==NULL) { printf("file doesn't open"); return; } fseek(fp1,1078,SEEK_SET); k=0; while(!feof(fp1)) { fread(&buffer,1,1,fp1); col[k]=buffer; k++; } int i=0; int j=0; k=0,m=0; for(m=0;m<258878;m++) { C[i][j]=col[k]; j++; k=k+561; if((j%459==0) &(j!=0)) { i=i+1; k=i; j=0; } if(i>561) break; m++; } Regards
-
Stack overflowI am using a two dimensional array to read the image data.If i increase the indexes to large value >500 i am getting Unhandled exception:stack overflow.How to overcome this problem. Regards