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

Search:

Type: Posts; User: zuhrs

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Chart control - Series to start from the beginning

    I have a chart control with Chart Type as StackedArea and the series does not start from the beginning. There are gaps between the XY intersection and the first series. Is there some property to to...
  2. Creating a custom datatype based on Reflection return type

    Hello

    I use reflection to invoke a method of an assembly. I can get the return type of the method using methodInfo.ReturnType

    The Return type is a Custom datatype(Class Info.Information) as...
  3. System.AccessViolationException when launching MS Project in German Win7 OS

    I have an application to launch MS Project application. The following piece of code is written to launch MS Project

    Dim prjApp As MSProject.Application = Nothing
    Dim iCount As...
  4. Replies
    1
    Views
    739

    Writing into Excel VBA from Dot net code

    I have a Dot Net application which launches MS Access. I am able to write the values into excel also.
    But I need to add Macro for the excel to calculate, save etc.

    Normally the VBA editor opens...
  5. Re: System.Runtime.InteropServices.COMException When launching MS Project

    Thank for the information.
    As per our IT policy, they install the same version every where.

    But MS Project depends on the language. Some locations have English, some have German etc. Even OS...
  6. Re: System.Runtime.InteropServices.COMException When launching MS Project

    Thanks for the reply
    1. I have checked for the versions in the systems which does not work. In fact they have they have the same version

    2. I tried it in a loop for for around 10 times. At the...
  7. System.Runtime.InteropServices.COMException When launching MS Project

    I have an application in which MS Project is launched. The application works fine for most of the system in my organization. But in some systems I get an exception when trying launching MS Project,...
  8. Re: FileNotFoundException: Could not load file or assembly Interop.ADODB, Version=2.8

    Ok thanks.
  9. Re: FileNotFoundException: Could not load file or assembly Interop.ADODB, Version=2.8

    Thank you so much for the reply...

    a) OS Information: Windows XP Professional Service Pack 3, 32 bit
    b) Office Version: MS Office 2007 (Part of MS Professional Plus 2007)
    c) Highest .NET...
  10. Re: FileNotFoundException: Could not load file or assembly Interop.ADODB, Version=2.8

    Thanks very much for the reply

    I have verified the following in those systems

    a) OS ver - Same as mine
    b) Office Ver.- Same as mine
    c) Highest loaded .NET framework. - Same as mine (4)
    d)...
  11. Exception while connecting to Ms Access database

    When I connect to the Ms Access database from my Dot net application(VS 2005), I get an exception "System.IO.FileNotFoundException: Could not load file or assembly 'Interop.ADODB, Version=2.8.0.0"....
  12. Re: FileNotFoundException: Could not load file or assembly Interop.ADODB, Version=2.8

    I have posted in multiple forums because this question is related to Dot net as well as ADO. I think this is more over a Dot Net issue. I have even noted that you have removed it from Dot Net forums.
  13. Re: FileNotFoundException: Could not load file or assembly Interop.ADODB, Version=2.8

    If any one knows the solution, please reply back. Thanks in Advance......
  14. FileNotFoundException: Could not load file or assembly Interop.ADODB, Version=2.8.0.0

    I am having an application where MS Access database is used as back end to the Dot Net application(Visual studio 2005). The MS Access database is on the network and I am able to connect database from...
  15. Creating an instance of MS Project Application fails in VB .Net

    In my VB .Net code, I am trying to create to launch MS Project Application.
    Dim prjApp As Microsoft.Office.Interop.MSProject.Application = New Microsoft.Office.Interop.MSProject.Application

    But...
  16. Replies
    10
    Views
    1,899

    Re: Invoking MFC exe methods from MFC Extension dll

    Actually I have the following scenario
    1. Application1 Exe developed in some programming language
    2. Application2 Exe developed using MFC
    3. MFC Extension Dll which is used to communicate between...
  17. Replies
    10
    Views
    1,899

    Re: Invoking MFC exe methods from MFC Extension dll

    Thanks for the prompt replies.

    Actually I need to get the methods of exe exposed for Inter Process Communication. From the dll I need to launch the particular exe and access its public methods for...
  18. Replies
    10
    Views
    1,899

    Re: Invoking MFC exe methods from MFC Extension dll

    CTestApp *pISL = new CTestApp (); //This line crashes on runtime
    CTestApp is an exe actually.

    Can I know the solution for this. Thanks in advance.
  19. Replies
    10
    Views
    1,899

    Re: Invoking MFC exe methods from MFC Extension dll

    Thanks for the prompt reply

    I have done this steps before itself. I mean I had added the lib file in the linker and included the header file also.

    Below is the piece of code where I am facing...
  20. Replies
    10
    Views
    1,899

    Invoking MFC exe methods from MFC Extension dll

    How can I invoke the methods of an MFC exe from an MFC Extension dll.

    A third party aaplication will be invoking the MFC Extension dll. So from the dll I need to invoke the public methods of the...
  21. Replies
    1
    Views
    12,676

    FillWeight values cannot exceed 65535.

    I have a datagrid which contains 750 columns. When I try to assign it to datasource, I get the following error

    An unhandled exception of type 'System.InvalidOperationException' occurred in...
  22. Replies
    2
    Views
    1,357

    Getting the handle of the top most window

    How can I get the topmost window handle.

    i have set the window position as follows:
    pWnd->SetWindowPos(&wndTopMost , 0,0, 0, 0, SWP_NOSIZE);

    I need to check if pWnd is topmost many times in...
  23. Replies
    3
    Views
    855

    Getting the window on top of another window

    I have a CWnd* of a window(name it as A).
    How can I get the CWnd* of the window(Name it as B) which is on top of Window A.
    (To be clear I need to get the handle of Window B, which precedes Window...
  24. Replies
    4
    Views
    1,158

    Re: Placing a window on top of another window

    Is there any way to find if the window is visible in the screen. Or else how can I find out the Z-Order of a window.

    Please some one help me.
    Thanks in advance.
  25. Replies
    4
    Views
    1,158

    Re: Placing a window on top of another window

    Thanks for the reply

    I tried checking IsWindowVisible() function for the Main window. It always return true even if it is not seen on the screen.

    i tried using getForegroundWindow() also. It...
Results 1 to 25 of 73
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured