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 bkrike 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: mvillara
  • Content: Threads
  • Order by date
  1. mvillara

    Including a Label in a Report

    I have been trying to include a Label in a report at runtime, this means that depending on what happen, I could insert several Labels into my report. Whats the way of including a Label in VB? Thanks.
  2. mvillara

    Creating Labels in Run Time

    Hello, I am trying to create Labels in Run Time in a Form but it appears an error that I do not know how to solve. The code is the next: *************************************** Dim text(2) as Label dim i as integer For i = 1 To 2 With text(i) .Top = 2 + i .Left = 2 + i...
  3. mvillara

    Creating a Total Field in a Form that contains a Subform

    Well, I have two forms called: "Products List" and "Offers". They are related to each other by the field IDOffer. So, the "Offers" form have "Products List" as a subform. This means that for each offer I create, I have many Products that are selected in...
  4. mvillara

    The HBITMAP Structure

    I have a question that I am sure that many people haven't asked themselves and its quite interesting if it had an answer. I have been trying to modify a bitmap in running time and I can not find any member within the HBITMAP Structure. I have been looking at specializated Web pages and I...
  5. mvillara

    Calling a CDialog from other CDialog

    Can I call within a CDialog to another Cdialog and so on without exiting?
  6. mvillara

    Drawing in Dialogs Windows

    Does anyone know how to draw the typical shapes such as circles, lines, etc... in a CDialog Window? How can I create a Device Context that point to that Dialog? If you know too, how can I obtain a device context that point to a CButton Area of Drawing within the class? Thanks.
  7. mvillara

    Mixing Win32 API with MFC

    Hi, I am having a slight problem in one thing. The fact is that I create a Windows with API functions and I draw some objects like Ellipses and so on,.... with the WM_PAINT Event, and with the WM_CREATE Event I want to create a class (called MiButtton) inherited from CButton. The constructor of...

Part and Inventory Search

Back
Top