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 dencom 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: MarcoMB
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. MarcoMB

    Graphic Button

    Can someone explain me how can i create or better assign a generic icon-image or bitmap to button controls?
  5. 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...
  6. 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?
  7. 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
  8. 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?
  9. 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?
  10. 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?
  11. MarcoMB

    ADO Data Control & Simple Data Control in VB6.0

    What's the real differences between use Adodc activeX control for database and simple Data control in VB6.0? What choice the programmer have to consider relating those controls?
  12. MarcoMB

    lpbitmapinfo

    can someone explain me the following line of code LPBITMAPINFO lpbi; lpbi = (LPBITMAPINFO) new BYTE[sizeof(BITMAPINFOHEADER) + (256 * sizeof(RGBQUAD))]; i don't understand the use of new BYTE to inizialize the LPBITMAINFO variable...i expected something like this... lpbi = new...
  13. MarcoMB

    GetClientRect

    i have an app with a dialog resource with inside a tab-control...using GetClientRect i obtain the same dimension also if i resize the dialog and the tab-control in resource-view. So exactly what represents the return value of GetClientRect, maybe one single tab dimension of the tab control?
  14. MarcoMB

    Visual C++ & C#

    Can someone illustrate me the difference between C++ and C#?This language need two separated learning-ship or if i use Visual C++ can easily use C# also?
  15. MarcoMB

    TabControl Bitmap

    Can someone look at the project at this link and explain me how the bitmap is inserted into the tabcontrol? http://www.marco1036.altervista.org/FIRE.rar to download project copy this link don't click on it
  16. MarcoMB

    executing files

    in a listbox control i have a list of filename with differnt extensions...i would like execute them in the listbox event click as if i execute them from windows explorer...how can i do?ther's an file execute method in visual basic?
  17. MarcoMB

    CALLBACK functions

    can someone explain me the meanings o f callback function? I can't find a good definition to that, so i'm over and over confused about CALLBACK & DELEGATES mechanism...help [surprise]
  18. MarcoMB

    Help for collection types serialization...

    I have to serialize a CObArray that contains class objects made by 2 CArray elements that handles POINT struct: CArray<POINT,POINT> myArray1; CArray<POINT,POINT> myArray2; how can i serialize it?
  19. MarcoMB

    Serializing CArray

    Some help needed to implement serialization for CArray objects...i must use SerializeElements?
  20. MarcoMB

    Copy Constructor needed

    i need to implement something similar... CSpLine* CSdicap10Doc::AddSpLine(CArray<POINT,POINT>ControlPoints, CArray<POINT,POINT>Curvepoints) { CSpLine* pSpLine = new CSpLine(m_ControlPoints,m_CurvePoints); m_oaSpLines.Add(pSpLine); return pSpLine; } where ControlPoints and CurvePoints are...

Part and Inventory Search

Back
Top