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 strongm 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

    Maybe i could not be clear with my question... my code is This is the structure: Private Structure Photo Dim PhotoName As String Dim FormPhoto As frmFoto Dim w As Integer Dim w3 As Integer Dim h As Integer Dim StartPixel As Integer Dim header() As Byte Dim g(,) As Byte...
  2. MarcoMB

    how to read bytes in binary mode inserting in matrix

    I'll try to give more informations... This is the structure: Private Structure Photo Dim PhotoName As String Dim FormPhoto As frmFoto Dim w As Integer Dim w3 As Integer Dim h As Integer Dim StartPixel As Integer Dim header() As Byte Dim g(,) As Byte 'pixel matrix End...
  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

    sorry i didn't traduce all th question...i'm italian After i've tried to update a vb 6.0 project to vb.net, using visual studio utility,i can't read correctly data bytes from a .bmp file to insert them in a matrix to operate on. Using vb 6.0 the code was based on Get function: GET #1...
  5. MarcoMB

    Recover data from a bitmap and filling a matrix

    After i've tried to update a vb 6.0 project to vb.net, using visual studio utility,i can't read correctly data bytes from a .bmp file to insert them in a matrix to operate on. Using vb 6.0 the code was based on Get function: GET #1, PIXELSTART, PHOTO.MATRIX where PHOTO is a structure data...
  6. MarcoMB

    how to read bytes in binary mode inserting in matrix

    After i've tried to update a vb 6.0 project to vb.net, using visual studio utility,i can't read correctly data bytes from a .bmp file to insert them in a matrix to operate on. Using vb 6.0 the code was based on Get function: GET #1, PIXELSTART, PHOTO.MATRIX where PHOTO is a structure data...
  7. MarcoMB

    CArray error

    I've an error and i can't understand the reason...i've an app that serialize elements organized in records of a my-class type that contain input data from user in a CFormView. So if i put those records in a CObArray the serialization of the array and related class elements contained it's ok...
  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

    Help please , i need to implement a static function 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...
  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