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

Search:

Type: Posts; User: chaden

Page 1 of 7 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    1,911

    Re: Replacement for byte array 'Take' member

    Thank you.
  2. Replies
    2
    Views
    1,911

    Replacement for byte array 'Take' member

    I'm using .NET Framework 2.0 for my application, but I need to get a part from a byte array.

    Normally I would do this (ByteArray.Take(Amount).ToArray), but Framework 2.0 doesn't have a Take...
  3. Replies
    71
    Views
    5,827

    Re: Make form look and act like a menu

    About the problems with the code.. I knew about the crash if the application was closed in IDE, but normally the application is closed from the systemtray popupmenu and then everything unloads fine....
  4. Replies
    71
    Views
    5,827

    Re: Make form look and act like a menu

    Sorry for the late reply, but I continued my job a bit sooner than I originally was planning on doing.

    The Font and Color parts of the settings form have been done. The settings are now saved to...
  5. Replies
    71
    Views
    5,827

    Re: Make form look and act like a menu

    I know I can use the CommonDialog and that's what I originally had, but the General tab looks so empty with only a few buttons. But on the other side you can also say it looks a bit messy now and...
  6. Replies
    71
    Views
    5,827

    Re: Make form look and act like a menu

    I've made a start. I'll do more tomorrow.

    1) Given objects a representative name
    2) Added systemtray icon and popupmenu
    3) Added INI module to write and read INI files
    4) Added the General...
  7. Replies
    71
    Views
    5,827

    Re: Make form look and act like a menu

    That works great, very nice! OK, I understand the code and I'm creating my own properties, but I'm getting a bit lost now on what data you're planning on adding to the treeview and listview with the...
  8. Replies
    71
    Views
    5,827

    Re: Make form look and act like a menu

    Sorry you got no answer, but it's bloody hot here at the moment, especially indoors, so I'm not spending much time at the computer during the day. I live in The Netherlands and we have London Time +...
  9. Replies
    71
    Views
    5,827

    Re: Make form look and act like a menu

    Thanks for the 'icon-picturebox highlight' fix :thumb:

    I'm glad you like the sliding code :D

    I haven't worked much with classes and collections to store data. I have used a class for fast...
  10. Replies
    71
    Views
    5,827

    Re: Make form look and act like a menu

    Personally I don't think it's a good idea to always adapt the width of the control to the longest text length. If all the items have short text, then the width of the menu will also be very small,...
  11. Replies
    71
    Views
    5,827

    Re: Make form look and act like a menu

    Yes, I wanted to create a menu look for my application, but with more possibilities. As far as I know you can't stick a normal menu on a borderless form and make the form look like a menu. Also, you...
  12. Replies
    71
    Views
    5,827

    Re: Make form look and act like a menu

    Thank you very much!

    If I want to change the appearance property of mnuIcon (Flat or 3D), then how do I declare that?

    Is this correct?

    It shows up as "0 - ccFlat" and "1 - cc3D" in the...
  13. Replies
    71
    Views
    5,827

    Re: Make form look and act like a menu

    Ok, I've created a new property for the Highlight color and it seems to work fine.

    What I'd like to know is, is it possible to have different fonts and font-styles for the headers and items? For...
  14. Replies
    71
    Views
    5,827

    Re: Make form look and act like a menu

    Thank you very much. I never knew that making controls is so much fun. I'm already experimenting with this code and then I'll read the other thread.

    Maybe my posts should be removed, so this...
  15. Thread: How to?

    by chaden
    Replies
    5
    Views
    1,094

    Re: How to?

    Are you sure you can use those skins on VB6 applications?


    What's Sunisoft Skin Solutions v2

    Since 2001, we provide skin solutions (SUIPack/SUISkin) for Delphi/C++Builder developers.
    Since...
  16. Replies
    71
    Views
    5,827

    Re: Make form look and act like a menu

    Wow!

    Ok, it works great.
    Yes, if I go over the code line by line, then I understand it, but it's not something I would simply have created myself from scratch ;)

    How can I change the color of...
  17. Replies
    71
    Views
    5,827

    Re: Make form look and act like a menu

    The first picture that didn't show up was just the empty appbar.
    This is the second picture that didn't show up, but it's only something I did with Paint....
  18. Replies
    71
    Views
    5,827

    Re: Make form look and act like a menu

    Thank you George1111, that looks good :)

    Another easy way is probably putting a small picturebox for the icon and a label inside a bigger picturebox that acts as a container. Then create three...
  19. Replies
    71
    Views
    5,827

    Re: Make form look and act like a menu

    Thanks for helping me. I have created the project like you decribed. English is not my mothertonge. Dutch is my mothertonge, but my OS and other software are in English. I understand German quite...
  20. Replies
    71
    Views
    5,827

    Re: Make form look and act like a menu

    I've never done a Usercontrol before. Passing the data to the Pictureboxes and Labels is something I can probably do myself, but if you can show me how to add new Pictureboxes below each other with...
  21. Replies
    2
    Views
    734

    Re: Converting a small piece of code to VB6

    Thank you very much :)
  22. Replies
    71
    Views
    5,827

    Re: Make form look and act like a menu

    Well, I'm creating my own appbar to add files and folders, so I can start/open the files and folders from there and keep the desktop clean (no icons). I want the bar to look like an application menu...
  23. Replies
    71
    Views
    5,827

    Make form look and act like a menu

    Hi all, does anybody know how to make a form look and act like a menu?

    I know I can use a Listview to add icons and text in Report view and use the Mouse_Move event to highlight the items, but a...
  24. Replies
    0
    Views
    806

    Checked property for Toolbar Buttonmenu

    Hi, the style of one of my Toolbar buttons is set to tbrDropdown in order to get a dropdown menu.

    If one of the menu options is selected I want to put a checkmark in front of the text, like you...
  25. Replies
    2
    Views
    734

    Converting a small piece of code to VB6

    Hello, below I have a small piece of code that I'd like to have converted to VB6, but I don't know much C++. It's part of a yEnc decoder and it does the actual decoding.

    Is there anybody here who...
Results 1 to 25 of 151
Page 1 of 7 1 2 3 4





Click Here to Expand Forum to Full Width

Featured