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 John Tel 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: *

  1. MarcoMB

    Recover data from a bitmap and filling a matrix

    ...FileGet(1, h, 23) 'Height .w = w .w3 = Multiple4(w * 3) 'width and height are read correctly .h = h .StartPixel = 1 + pixelOffset ReDim .header(pixelOffset - 1) "'...
  2. MarcoMB

    how to read bytes in binary mode inserting in matrix

    ...FileGet(1, h, 23) 'Height .w = w .w3 = Multiple4(w * 3) 'width and height are read correctly .h = h .StartPixel = 1 + pixelOffset ReDim .header(pixelOffset - 1) "'...
  3. MarcoMB

    how to read bytes in binary mode inserting in matrix

    i don't understand... can you help me to find an answer?
  4. MarcoMB

    how to read bytes in binary mode inserting in matrix

    ...PHOTO.MATRIX where PHOTO is a structure data type, with a member MATRIX previously defined in this way: ReDim PHOTO.MATRIX(1 TO PHOTO.WIDTH*3,1 TO PHOTO.HEIGHT) in this way,the program read bytes starting from PIXELSTART in bmp file and put them in transpose matrix resultant. For...
  5. MarcoMB

    Recover data from a bitmap and filling a matrix

    ...PHOTO.MATRIX where PHOTO is a structure data type, with a member MATRIX previously defined in this way: ReDim PHOTO.MATRIX(1 TO PHOTO.WIDTH*3,1 TO PHOTO.HEIGHT) in this way,the program read bytes starting from PIXELSTART in bmp file and put them in transpose matrix resultant. For example...
  6. MarcoMB

    how to read bytes in binary mode inserting in matrix

    ...PHOTO.MATRIX where PHOTO is a structure data type, with a member MATRIX previously defined in this way: ReDim PHOTO.MATRIX(1 TO PHOTO.WIDTH*3,1 TO PHOTO.HEIGHT) in this way,the program read bytes starting from PIXELSTART in bmp file and put them in transpose matrix resultant. For example...
  7. MarcoMB

    CArray error

    ...serialization of the array and related class elements contained it's ok, but if i use a CArray it's going in this error _AFX_INLINE CStringData* CString::GetData() const { ASSERT(m_pchData != NULL); return ((CStringData*)m_pchData)-1; } Can someone know the reason? i defined CObArray...
  8. MarcoMB

    Graphic Button

    Can someone explain me how can i create or better assign a generic icon-image or bitmap to button controls?
  9. MarcoMB

    Help ststic function view pointer

    i explain better ... i have a Vector declared in CView derived class typedef vector <CRectTracker*> TrackerVec; CRectTracker* pTracker; TrackerVec myVec; and a function that creates dinamically CRectTracker objects std::auto_ptr<CRectTracker> pTracker( new...
  10. MarcoMB

    Help ststic function view pointer

    actually i have some CRectTracker object in CView class and i need to serialize them...how could i do?i thonk obtaining a CView oointer from within the CDoc and so get access to CView member to serialize...i'm going wrong?
  11. MarcoMB

    Help ststic function view pointer

    ...in CView derived class that must return to CDoc derived class the active view pointer...how can i do? i tried something similar CSdicap10View* CSdicap10View::GetView() { CSdicap10View* pView = GetActiveView(); return pView; } it return error GetActiveView undeclared identifier...
  12. MarcoMB

    Callback function

    thanks for reply but i don't understand if the callback function is called directly by operating system and if it must be a win api function or if i can create a user-defined callback function and i decide to call it calling the function that has its address as an argument
  13. MarcoMB

    Callback function

    I can't find a good definition and explanation about callback functions in Win32... can someone explain me what are callback functions and how they work and receive parameters?
  14. MarcoMB

    Urgent error

    thanks for help, i've solved the problem starting with a new project and importing cpp and h files...the old project probably was corrupted... i'm building a paint graphic app and i've some problems with flickering view, i've some object of type CRectTracker and other simple graphic objects...
  15. MarcoMB

    Urgent error

    i know there are 2 lists one for cpp and one for h files...yes i'm trying to build my project but it doesn't i get a list of strange errors...and if i try to compile a single class the error above appears...
  16. MarcoMB

    Urgent error

    the include files are all included in project but Visual Studio doesn't see and compiles them anymore ...
  17. MarcoMB

    Urgent error

    i've lost my project i can't compile it due to following message: Cannot compile the file "d:\temp\myfile.h"; no compile tool is associated with the file extension. how can i solve? Thanks
  18. MarcoMB

    Audio wave App

    Can someone explain or help me to find some tutorial and sample apps about API for creating an application that implements a VU METER for audio wave soundcard device?What API win32 and algorithms i have to use and look for?
  19. MarcoMB

    Audio LedMeter APP

    Can someone help me to find some guides or tutorial or sample app to implement an app using AudioControls2 activeX level meter?
  20. MarcoMB

    DRAWCLI MSDN

    Can someone explain me what type of functions are used, in DrawCli example contained in MSDN examples,to draw shape with resizing-handles?

Part and Inventory Search

Back
Top