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

Search:

Type: Posts; User: Lou Arnold

Page 1 of 4 1 2 3 4

Search: Search took 0.06 seconds.

  1. Re: source code for graphic symbol display and editing?

    Wonderful to get your reply.

    Sorry to say that this had to be put on the back burner, partly because of the lack of response to my query.

    I have to ask: Is everyone creating their own editor...
  2. Replies
    15
    Views
    1,956

    Re: Fed up with MS Azure Pop-up!

    Wow, I didn't expect that one little post to bring up more complaints. But I suppose whatever stands to improve things has some value.
  3. Re: How to instantiate DLLs to avoid indirect calls?

    Why don't you code it and see what happens.
  4. Re: How to instantiate DLLs to avoid indirect calls?

    hahaha. I am trying to construct an architecture presented in figure 2 so that I can use re-usable code modules without writing a bunch of coupling code.
  5. Re: How to instantiate DLLs to avoid indirect calls?

    I know exactly the problem that I'm trying to solve and I have tried to explain in as simple a manner as I could without bringing the months of research and trials that I have already been through. I...
  6. Re: How to instantiate DLLs to avoid indirect calls?

    1) I'm not working in WPF; whatever was written for that doesn't apply.
    2) I read and looked at code that implements MVC in MS Windows Forms; it winds up with the same problem. Its the need to pass...
  7. Replies
    15
    Views
    1,956

    Fed up with MS Azure Pop-up!

    Please get rid of this MS Windows Azure pop up. I shouldn't have to be concerned about where I drag my mouse to avoid triggering it. And it won't go away until I click the close box. IT IS A TOTAL...
  8. Re: How to instantiate DLLs to avoid indirect calls?

    I know about MVC! The entire point behind the DLLs was to separate the Model code from the integrated View-Controller code that is in the Forms class. Its connecting the business code that's the...
  9. Re: How to instantiate DLLs to avoid indirect calls?

    1st: Show me a DLL that does not contain static classes and that does not require instantiation.
    2nd the two figures are not equivalent. In the 2nd figure the (ideal) linker has linked all calls...
  10. Re: How to instantiate DLLs to avoid indirect calls?

    Are you talking about a static class/DLL? I have never programmed one so you might be correct in terms of accessing its methods, but I know that static classes cannot inherit anything and that...
  11. Re: How to instantiate DLLs to avoid indirect calls?

    Do you have a working alternative architecture?
  12. Re: How to instantiate DLLs to avoid indirect calls?

    I should have stated things more clearly. I am using VC# 2010 Express and dotNet V4. When I say DLL, I mean a class library, aka assembly in dotNet speak. And, no, they are not already in the...
  13. How to instantiate DLLs to avoid indirect calls?

    I have a problem with building and using DLLs. I have built several to be used in a Windows Application, but basic enough to be re-usable. The problem is that they have to be instantiated and that...
  14. Replies
    4
    Views
    4,952

    Re: How do I load xml used in form1 in form2?

    When you decide on an way. please post your solution and why you chose it. I still have trouble with this and so its likley others have also. For anyone who knows, please post a suggestion.
  15. Replies
    5
    Views
    1,028

    Re: Inter-process communication help needed

    I think, in that case, you should explain the environment a bit more. Ex: will the main app just sit there and work unattanded. Where will the info collection app be: in another computer, on an...
  16. Replies
    2
    Views
    1,164

    Re: Milliseconds always 000.

    I see you are not getting anything like what you coded: vis yyyy-MM-dd and you get 05/04/2011. Check your regional settings for date and time thru to milliseconds. I had this happen once before. If...
  17. Replies
    5
    Views
    12,499

    Re: Help with Windows fForm (.net)

    Google C# Arraylist. There is an excellent example there. You can get rid of the "as string" snippets.
  18. Replies
    4
    Views
    4,952

    Re: How do I load xml used in form1 in form2?

    I didn't go into your code too deeply, but I have this come up on occasion when my mind wanders. Assuming that w7_apps.xml is a reference variable to some file info and that it was defined in the...
  19. Replies
    5
    Views
    1,028

    Re: Inter-process communication help needed

    I created a web service in a Vb course some years back. Its not difficult, but it is awkward to explain. It would be best if you did the research via a tutorial. Look for the book for MCTS .Net...
  20. Re: How can I start programming with "Teach yourself C# in 21 days"?

    Forget about these books that entitled "Learn/Teach yourself...in 21 days",. I tried one some time ago and found that at about chapter 3, the subjects turned to something way off the point of point...
  21. Replies
    0
    Views
    556

    Where to instantiate wrapper class?

    I'm using VC# 2010 Express to create a multi-form application, for dot Net 4.
    I created several DLLs in order to separate functional implementations - eg file IO, data manipulation, etc. Both the...
  22. Replies
    1
    Views
    646

    Class Libraries and DLLs

    In VC# 2010 Express, if I create a Class Library, is that, or does it become a DLL?

    Suppose you have a class defined in a Class Library. When you instantiate the class, does that load the DLL for...
  23. Re: How to code access to DLL method from 2 Winforms?

    In fact, I have been trying using static members for some months now, so I do understand their uses and behavior. But when you know only a little, you also don't know what else is possible. But in...
  24. Re: How to code access to DLL method from 2 Winforms?

    About the properties, I understood. I didn't know you could write a public get and a private set. Thank you for that.

    I understand about the design choice for a singleton.

    Several hours after...
  25. Re: How to code access to DLL method from 2 Winforms?

    Gee, now I'm confused...
    I did as you described: created the DLL as a separate project under VC#, and built it. In another project in the same solution, I created a Mainform and a subform. In that...
Results 1 to 25 of 87
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured