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

Search:

Type: Posts; User: MikeB

Page 1 of 80 1 2 3 4

Search: Search took 1.06 seconds.

  1. Replies
    2
    Views
    1,145

    Re: Serialization using std::ostream?

    Well, I tried to create a small example and reproduce the problem and the example compiles just fine, so, I think your right in that it must be something else causing the issue. I will keep plugging...
  2. Replies
    2
    Views
    1,145

    Serialization using std::ostream?

    I am trying to add serialization to my DTO objects. I declared the methods in the class as follows outside of the public: and private: tags.



    class DLLEXP DTO
    {
    friend std::ostream&...
  3. Replies
    4
    Views
    1,070

    Re: MFC Regular Dll Help?

    Thanks. Being that it was so little code, I just wiped the projects and redid them and all worked correctly the second time.

    Thanks for looking at it.

    Mike B
  4. Replies
    4
    Views
    1,070

    Re: MFC Regular Dll Help?

    Yeah, I know, I switched from CString to int and back to CString again. Forgot to change the signature. Sorry about that.

    Mike
  5. Replies
    4
    Views
    1,070

    [RESOLVED] MFC Regular Dll Help?

    I am trying to create an MFC Regular DLL. I followed a couple of tutorials on the net, and although my program builds, it crashes with an access violation when trying to debug or test. I have...
  6. Re: CListCtrl methods do not existing (Grouping)

    Yeah, I found that. Not on the header but somewhere on the net. I have it working.

    Thanks

    Mike
  7. CListCtrl methods do not existing (Grouping)

    I wanted to add grouping to my CListCtrl and according to MSDN, CListCtrl has an InsertGroup(...) method. When I try to use this method, intellisense is not showing it and if I try to use it anyway I...
  8. Replies
    5
    Views
    1,334

    Re: Another Memory DC question.

    It is the OnPaint handler. I would expect that it would be quicker and easier to throw the code into any window controls OnPaint handler. The project I am working with is an AutoCad arx extension dll...
  9. Replies
    5
    Views
    1,334

    Another Memory DC question.

    Although the code below works, I cannot understand why. Can someome try the code and explain to me why it works. It is the BitBlt function that I am most confused about because in the MSDN...
  10. Thread: Memory DC Help

    by MikeB
    Replies
    2
    Views
    1,038

    Re: Memory DC Help

    Well, as you have pointed out, not only is it the top left corner, but it should be specified in "Logical Units". The width and height also need to be specified in logical units. I have tried every...
  11. Thread: Memory DC Help

    by MikeB
    Replies
    2
    Views
    1,038

    Memory DC Help

    I have a static derived class which I want to implement custom drawing in MM_ISOTROPIC mapping mode. For the life of me, I cannot figure out how to do this using a memory dc. I have reviewed and...
  12. Replies
    1
    Views
    743

    System.Configuration

    I don't have this assembly in my .net???? I see System.configuration with lower case but no upper case?

    System.configuration version 2.0.0

    I am trying to get the connection string settings from...
  13. Replies
    1
    Views
    782

    Why is my data reader closing?

    I have a method which retrieves a IDataReader and attempts to load object data using this reader. The problem is, before it gets to the next record using IDataReader.Read(), it is closing. Nothing in...
  14. Replies
    0
    Views
    1,985

    InvokeMethod and ParameterModifier

    I am using late binding to call a method in a COM object. There are three ref arguments in this function. I used ParameterModifier class to indicate this. The problem is that I am expecting the third...
  15. Replies
    4
    Views
    1,164

    Windows Report or Crystal?

    I am using Visual Studio 2008 for development. I am trying to decide what reporting tool to use. Do you use Windows Report or Crystal or some other reporting tool.

    I am well versed with Crystal,...
  16. Replies
    7
    Views
    24,625

    Re: WPF Button Content Multi-line

    Alright, well, I thought I found the solution, but it doesn't work...... I should have searched for ContentPresenter then I would have known that this is actually a place holder for the content and...
  17. Replies
    7
    Views
    24,625

    Re: WPF Button Content Multi-line

    Arjay,

    Creating multi-line text is not the problem. Creating multi-line button text is not the problem. The problem is creating a button template in a resource file where the content presenter...
  18. Replies
    7
    Views
    24,625

    Re: WPF Button Content Multi-line

    Arjay

    That was unexpected from you and uncool...... Anyway, I did search google first, I also looked through my Pro WPF in C# 2008 book and I could not find the answer.

    I want the text block in...
  19. Replies
    7
    Views
    24,625

    WPF Button Content Multi-line

    I have a button template. I want the button text to be multiline, but I have no idea how to set this.

    I know I can set this in the xaml where I create the button by adding a text block and using...
  20. Replies
    0
    Views
    4,058

    Help, need different menu design?

    I cannot stand the look of a standard windows menu. In my application I want to separate the menus into a context bar and options pain. The context bar, which would be docked to the top of the...
  21. Replies
    1
    Views
    6,996

    ComboBox binding to another.

    I have a business object called Companies which contains a list of Department objects each of which contains list of Employee objects.

    On a form I have a combobox to display the companies, combo...
  22. Thread: Wpf ??

    by MikeB
    Replies
    4
    Views
    7,241

    Re: Wpf ??

    Well, that makes sence.... I am sure I will have more questions as I dig a little deeper....

    Thanks

    Mike B
  23. Thread: Wpf ??

    by MikeB
    Replies
    4
    Views
    7,241

    Re: Wpf ??

    Arjay,

    Thanks for the reply. So, this is simply to change the views correct? How do you create the views to show? Do you use a UserControl or form without border, or....

    Also, I think I have...
  24. Thread: Wpf ??

    by MikeB
    Replies
    4
    Views
    7,241

    Wpf ??

    I want to use WPF to create my next application, but there doesn't really seem to be support for SDI type interface.

    What I want, is a stack panel along the top displaying buttons that are my menu...
  25. Replies
    5
    Views
    5,226

    Re: BindingList and reflection?

    Should I just declare the members as IBindingList instead of explicit types?
Results 1 to 25 of 2000
Page 1 of 80 1 2 3 4





Click Here to Expand Forum to Full Width

Featured