Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: ltsi
  • Order by date
  1. ltsi

    How to import mathematical algorithms in C?

    Thanks bCravens for your answer. But do you have any code examples (from your CView or CFormView) that you used for creating and implementing signal processing functions such as FFT? If yes, could me you give me some? Thanks. LTSI
  2. ltsi

    How to import mathematical algorithms in C?

    Hello, I have to import and implement algorithms in C (for signal processing)in order to apply it to a signal (displayed in a CView). Here is the situation: i have a CView and a CFormView (split window). I'd like to create a button in the CFormView that would enable me to apply automatically...
  3. ltsi

    Problem with OnSize

    I have an important when using the Windows Message Handler OnSize() in my CView class. I have the following code: for(int i=0; i<doc->GetNbElecProf(); i++) { CPoint point1; CPoint point2; point1.x=COIN_X+(i%(doc->GetNbElecProf()/7))*(TAILLE_X_PROF)...
  4. ltsi

    Pb with split windows display

    Hi. I have a document in which there is a CView and CFormView within a split window. I am using the following function to make a switch between the 2 CViews and the 2 CFormViews simultaneously: void CMainFrame::ReplaceView(int row, int col, CRuntimeClass *pViewClass, SIZE size) { BOOL...
  5. ltsi

    WindowProc Problem

    I am developping with Visual C++. I have created two view classes inside a two panes split window. I'd like tp make a switch between those 2 views by doubleclicking via WindowProc. To do this, I have created the following function within MainFrame : BOOL CMainFrame::ReplaceView(int row, int...
  6. ltsi

    How to switch views within a split window?

    I have the following problem: I have a split window in which there are two panes, one is a CFormView (Dialog Box), the other is a CView. Besides, I have two types of things to display on screen by double-clicking on a part of the screen. Thus, there is a specific CView and CFormView for each...
  7. ltsi

    How to read an avg file

    I am trying currently to extract datas from a .avg file (datas from brain recordings) within a visual c++ application. Each file contains a header in which two structures are defined : SETUP and ELECTLOC. Using sizeof, I don't pass the get real size of the header. Therefore the reading of the...

Part and Inventory Search

Back
Top