CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Jaime

Page 1 of 8 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    2
    Views
    588

    Re: Who has an ATL class similar to CDatabase?

    It would have been more help if you had written how to do it. The CDatabase class I have made, use interfaces, such as IID_IDBInitialize, IID_IDBProperties, IID_IDBCreateSession, etc....

    With that...
  2. Replies
    2
    Views
    588

    Who has an ATL class similar to CDatabase?

    Hi all..

    Do you have a class which implements all methods for accessing a database without using MFC? I mean, by using database interfaces...

    Thanks
    Jaime
  3. Replies
    1
    Views
    685

    Equivalence between twips and pixels

    Hi all..

    I have added an ActiveX control to my application.. specifically it is a FlexGrid control. I need to know the height of the row so that I will be able to define the number of rows at run...
  4. How to know the ID of a control who has thrown an event

    Hi...

    I have placed some ActiveX controls in a Dialog Resource. Those controls have to make some actions when the mouse is over or has clicked on it. I'm planning to use only 1 event handler to...
  5. Replies
    1
    Views
    491

    Executing threads (AfxBeginThread, etc)

    Hi all... I want to have different threads in my application, so that I'm trying to use AfxBeginThread to start one of them..

    The function is:


    BOOL COpcionesDlg::StartMonitoring(BYTE byNode)...
  6. Re: How to show a CListCtrl in a CView in Doc-View Arch

    That was the first thing I tried but it isn't the cause of the problem....

    Look at the OnSize event.. I have there a MoveWindow which will resize the control

    Jaime
  7. How to show a CListCtrl in a CView in Doc-View Arch

    Hi all.. I have created a Doc-View architecture using a CView as a child view. That CView will contain a CListCtrl but I cannot show it. I'm using CView instead of CListView because I have a...
  8. How to change the look of a control or window

    Hi.... I'm wondering how can I change the look of MFC controls or the main window, such as it is done in Winamp or Music Match Jukebox.

    Please don't recommend me ActiveSkin control since I'm...
  9. Replies
    1
    Views
    473

    Re: Checking whether a flag is set.

    if that flag has the binary position 4 you have just to use:

    if( dwFlags & 4 )
    // Bit 4 is set
  10. CDaoRecordset::GetRecordCount() returning a very large (and wrong) number

    Hi again...

    I have a question regarding GetRecordCount() of a CDaoRecordset object.

    When I use Requery() to retrieve records, and then I use GetRecordCount(), it returns a value of 1. If I use...
  11. "Impossible initialize DAO/JET database engine"

    Hi...

    I have created installation disks of my application which accesses a Microsoft Access database. When I used those disks to install the application on other PC, application cannot be...
  12. How to export data to Microsoft Excel format

    I remember I saw an Excel ActiveX control somewhere so that I could export data to that format, but I cannot find it now....

    How can I do it?
    Thanks

    Jaime
  13. Re: How to know Database DLL's which are used by a program?

    Hi..

    The folder you mention isn't on my CD... I found something similar in DAOSDK/REDIST.. I installed it under Windows 95 and the application could initialize at least but the same happened, but...
  14. Re: How to know Database DLL's which are used by a program?

    Thanks for your help... I need another help now... I hope you can give me a hint...

    I have programmed an application which uses DAO access. The problem is that it works fine under Windows 98, but...
  15. Replies
    0
    Views
    425

    HELP!!!! DAO and Windows 95!! HELP !!!

    Hi all.. I hope you can help me... I have programmed an application which uses DAO access. The problem is that it works fine under Windows 98, but not under Windows 95.

    For example, I have a...
  16. How to know Database DLL's which are used by a program?

    Hi all.... I have problems distributing my applications using Microsoft Database JET Engine. Database DLL's are loaded only when the database is first accessed, so I cannot know dependancies by using...
  17. How to register an ActiveX control using Comand Line

    Hi...

    I need to know how to register an OCX control using Command Line, which WIN95 program do I have to use and how?

    Thanks
    Jaime
  18. Replies
    2
    Views
    486

    Re: How to know program dependendencies

    Thanks a lot!! I have never investigated what programs the Tools folder contains....

    I have another question regarding this... my application uses Database access, but those DLLs are loaded when I...
  19. Who knows how to use Visual Studio Installer?

    Hi all...

    I'm building an installer by using Visual Studio Installer and I have some questions:

    1) Why do all Debug items appear disabled? (Run, Stop, etc)

    2) How can I make the user to...
  20. Replies
    2
    Views
    486

    How to know program dependendencies

    Hi.... I'm going to build an installer for my application so I need to know which files to distribute for my application to work on the target machine.

    How can I do it?
    Thanks in advance
    Jaime
  21. How to open a document in MDI app to occupy only the app windows client area

    Hi all..... when a document in an MDI app is maximized, that document "is inserted" into the main application frame, where min button, max button and close button appears under the main window...
  22. Replies
    2
    Views
    604

    How to change the MainFrm Title in MDI appl

    Hi.. I could change the title but when I have no document loaded.. When I view any document, the MainFrm title is changed to the Application name, followed by a dash and followed but the document...
  23. How to place the doc counter when opening the same doctemplate in a MDI app

    To open a document I'm using this code in response of a menu command:


    POSITION pos = GetFirstDocTemplatePosition();
    CDocTemplate* pTemplate = GetNextDocTemplate(pos);...
  24. Re: How to call a 16 bit DLL from a Visual C++ 6.0 program

    That's exactly my problem.... I MUST try to use the 16 bit DLL because of the lack of a 32 bit version, but if it is not possible, I will have to tell my customer about that

    Jaime
  25. Re: How to call a 16 bit DLL from a Visual C++ 6.0 program

    But how can I do it? this isn't a Windows API... it's a 16 bit DLL supplied by other vendor... I have the definitions of the functions inside the DLL...

    I tried to use Explicit Linking but the the...
Results 1 to 25 of 177
Page 1 of 8 1 2 3 4





Click Here to Expand Forum to Full Width

Featured