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 TouchToneTommy 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
  • Content: Threads
  • Order by date
  1. 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...
  2. 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)...
  3. 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...
  4. 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...
  5. 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...
  6. 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