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

Search:

Type: Posts; User: Arjay

Page 1 of 80 1 2 3 4

Search: Search took 1.50 seconds; generated 45 minute(s) ago.

  1. Re: How to use Nuget assembly as files with visual studio community

    It's rare that you need to ever download an assembly (unless you are working with very old code).

    Most assemblies can be installed with NuGet package manager. In Visual Studio, right click on the...
  2. Re: Cancel function does not work with backgroundWorker?

    Move backgroundWorker1.WorkerSupportsCancellation = true; to before where you start the thread, not inside the cancel handler.

    Also, the docs state not to reference the background worker object...
  3. Thread: New style

    by Arjay
    Replies
    4
    Views
    2,666

    Re: New style

    Did you try changing the theme in the dropdown at the bottom left of the forum?
  4. Replies
    2
    Views
    1,466

    Re: Find And Change Attribute Value

    Set a breakpoint in your code and debug it. You be able to see variable values which will help you figure out what is going wrong.
  5. Re: Where do a project's filters get saved ?

    When you load the original solution back into vs, does it load correctly?

    As far as filters, I've used vs since 1995 and have never heard of them. I create solution and project folders and...
  6. Replies
    1
    Views
    1,864

    Re: Exceptional Handler - Buffer cannot be null

    Set a breakpoint and debug your code. You'll be able to see the exact line where the variable is null. From there you can fingure out what to do to fix it.
  7. Replies
    5
    Views
    4,416

    Re: How to get worksheet name?

    The code you post is different from the code you are showing woth the error. Not sure what you are doing.
  8. Replies
    1
    Views
    26,878

    JavaScript Re: Cannot read property 'length' of null at getSum

    Have you tried stepping through the code in the browser's debugger? You should then be able to see the exact variable that is null and figure out why it is null.
  9. Re: User Control LIST - Setup & Handling of events - NOOB

    The requirements are a bit vague but consider:
    1. Add events to your control. Users of your control would connect event handlers to the control.
    2. Not sure what this means. If you have created an...
  10. Replies
    8
    Views
    5,005

    Re: How to kill Excel process?

    Try calling Quit.
  11. Replies
    8
    Views
    5,005

    Re: How to kill Excel process?

    How do you create the Excel instance? Do you use CreateProcess? Are you loading it as a COM server using COM?
  12. Replies
    12
    Views
    2,616

    Re: Unable to compile

    Using VC2013 is abuse.
  13. Replies
    6
    Views
    5,389

    Re: IllegalAccessError, cannot acces class

    Does the Creature class need to be instantiated through a derived class?
  14. Re: How do I update the Keys in the app.config file at runtime ?

    I've answered this in post #5.
  15. Replies
    4
    Views
    1,286

    Re: Regex Class library class declaration error ?

    Did you catch the part about not giving us links to external sites? We've requested this multiple times now. Not sure why you seem to be unwilling to honor our requests.
  16. Re: How do I update the Keys in the app.config file at runtime ?

    Are you sure the file doesn't update? Keep in mind the app.config file is located in the project folder but gets copied (and maybe renamed) to the project output folder during the build. So you need...
  17. Replies
    4
    Views
    3,155

    Re: Help in understanding the legacy code

    Limit the populate method to populate only one small representitive data set and then step through the code to inspect what you have. It might be that the folks that wrote this code expected a lot...
  18. Thread: I'm back!

    by Arjay
    Replies
    5
    Views
    6,948

    Re: I'm back!

    Where were you?
  19. Re: Error updating an ADO MODEL from a remote server

    Try connecting to the database from your local machine using SQL Server Management Studio. Once you can connect with SSMS then try again with the database wizard using the same credentials as SSMS....
  20. Replies
    6
    Views
    7,139

    Re: Display python script output into MFC window

    In my opinion you are on the wrong path here.

    If your app is MFC, you need to graph into a window that mfc has control over. Given this, having python run in a separate process and outputting a...
  21. Replies
    6
    Views
    7,139

    Re: Display python script output into MFC window

    The source is python getting output to a console, not a window.
  22. Re: Changing the coordinates where I want to draw my bitmaps onto?

    Search bing or google for "Win32 SetDIBitsToDevice example".
  23. Replies
    1
    Views
    1,946

    Re: Problem with try catch to show error message.

    You need to catch an Exception.



    catch(Exception ex)
    {
    MessageBox.Show($"Error! Message: {ex.Message}.");
    }
  24. Replies
    19
    Views
    10,422

    Re: Calling python from c++ in visual studio

    Good to hear you got it figured out. Btw, iirc you can still debug your code even when using release library dlls - you just can't step into the library code.
  25. Replies
    19
    Views
    10,422

    Re: Calling python from c++ in visual studio

    To debug, you need to separate the functioning of the python script from invoking the python script from C++. In other words, get the python script running properly by starting it from the command...
Results 1 to 25 of 1992
Page 1 of 80 1 2 3 4





Click Here to Expand Forum to Full Width

Featured