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

Search:

Type: Posts; User: hubba09

Search: Search took 0.03 seconds.

  1. Replies
    2
    Views
    1,220

    Re: XSL- sort on length of attribute value

    There it is! Just what I was missing!!

    Thanks a lot!
  2. Replies
    2
    Views
    1,220

    XSL- sort on length of attribute value

    Having a hard time figuring out how to sort a XML file based on the length of the values in an attribute value.

    I'm trying to create a table in plain text, and therefore I need to align the...
  3. Replies
    5
    Views
    1,115

    Re: Formatting of plain text output

    Thanks a lot for your help!

    Finally got it working and the formatting looks pretty nice, so it was just what I was looking for!

    Your help is greatly appreciated!!
  4. Replies
    5
    Views
    1,115

    Re: Formatting of plain text output

    Alright...I'll elaborate a bit more on my issue.
    The code suppiled underneath gives me the result I have today, which makes the text hard to read as the formatting is pretty poor.

    I need to...
  5. Replies
    5
    Views
    1,115

    Formatting of plain text output

    Oki....I got an issue here which I'm having greate difficulties to solv. I would like to dynamically generate a XSL that should give me formatted text as plain text. Example on desired output:
    ...
  6. Re: CListCtrl alignment of items & vertical scroll

    Thanks usman999_1!

    Made it work now by using the LVS_REPORT style.
    Don't know why, but I've been focusing a bit too much on the LVS_LIST style...


    Thanks again!
  7. CListCtrl alignment of items & vertical scroll

    I've used a CListCtrl controller in my app, which works fine, except that I cannot figure out how to list all the items vertically.

    By default the controller displays all items by adding a...
  8. Replies
    0
    Views
    1,778

    Cursor position in HTML editor

    I've written a HTML editor which handles data in a special manner, and I therefore have some problems using standard windows functionality to set BOLD, ITALIC and so on on selected text/Text in...
  9. Replies
    12
    Views
    13,877

    Re: How to pass text and open Notepad using c++

    hmmm...Good idea!

    I'll follow your advice and just implement a new window for this purpose.

    Thanks guys!

    Cheers
  10. Replies
    12
    Views
    13,877

    Re: How to pass text and open Notepad using c++

    Well, its supposed to be used in a HTML editor I have created to display the HTML code...just as e.g Internet Explorer works on right click.

    The Editor I've created is a special thing, and I have...
  11. Replies
    12
    Views
    13,877

    Re: How to pass text and open Notepad using c++

    Thanks guys!

    Got Notepad running at least and picking up text from a file by using:

    STARTUPINFO startup_info = {0};
    startup_info.cb = sizeof startup_info;
    PROCESS_INFORMATION pi = {0};
    ...
  12. Replies
    12
    Views
    13,877

    How to pass text and open Notepad using c++

    Does anyone know how to open Notepad from the client using c++.
    At the same time I would like to pass a CString object containing text that should be displayed when Notepad opens.

    I have tried...
  13. Replies
    11
    Views
    5,331

    Re: CComboBox - hide dropdown/color of highlight

    Used that code to initialize the CCombobox object.

    I have rewritten my code and I have finally got it working.

    Thanks for your help!

    Cheers
  14. Replies
    11
    Views
    5,331

    Re: CComboBox - hide dropdown/color of highlight

    I've tried to override the DrawItem(...) in order to get this working, but for some reason it seems like DrawItem(...) is never called.

    Declaration of class:
    class CAgrColorCombo : public...
  15. Replies
    11
    Views
    5,331

    CComboBox - hide dropdown/color of highlight

    Hi,

    I have created a CMyCombo class derived from CComboBox, which I use for a color picker dropdown. There are two issues I desperately need some help to solve:

    1.
    If "No Fill" is selected in...
  16. Replies
    2
    Views
    2,486

    Re: CHtmlEditView --> read only

    The thing is that I have created a HTML editor that is working fine.
    What I want to do now is to implement a preview dialog, which will load saved HTML templates as well as display newly created...
  17. Replies
    2
    Views
    2,486

    CHtmlEditView --> read only

    Hi

    I'm using a subclass of CHtmlEditView to display a HTML page.
    What I want to do is to set the HTML text to read only, and allow the user to scroll.

    Is there some way yo accomplish this?
    ...
  18. How to add to using IHTMLTable??

    Hi

    I'm working on a HTML Editor in which I want to add a table header column to a table programatically.

    I want to add the following:

    <tr>
    <th> Header 1 </th>
    <th> Header 2 </th>
    </tr>
  19. Replies
    5
    Views
    1,187

    Re: How to get content from clipboard?? HELP!

    Thanks mate!

    I'll figure out a work around then by pasting the content to a hidden controller and parse/format the content from there
  20. Replies
    5
    Views
    1,187

    Re: How to get content from clipboard?? HELP!

    Thanks guys..

    I've tried to use the different clipboard formats, but non of them give me the entire content all in one. They remove some of the formatting and only gives whatever that is part of...
  21. Replies
    5
    Views
    1,187

    How to get content from clipboard?? HELP!

    Hi,

    When using the paste function in an application I need to get hold of whatever that is put on the clipboard and re-format the content. The correctly formatted content will then be put back to...
  22. How to get current position/text in C++ HTML editor

    Hi,

    I have created a HTML editor in C++ and now I want to get hold of the current text or position where the cursor is. What I'm trying to accomplish is this:
    - Write some text in the editor
    -...
  23. HTML editor - how to retrieve a selected element

    Hi,

    I'm struggeling with a problem in regards to my HTML editor.
    I have created a seperat table editor, in which I would like to edit the tables from the HTML editor.

    When selecting a table...
Results 1 to 23 of 24





Click Here to Expand Forum to Full Width

Featured