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

Search:

Type: Posts; User: DanYELL

Page 1 of 5 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    698

    Re: Print to bottom edge of paper

    How can I set a smaller margin?
  2. Replies
    3
    Views
    698

    Print to bottom edge of paper

    I attached a simple sample project. I have this code:


    void PrintLetterPage0(CPage* pPage)
    {
    char buf[501]; CString str;

    for (double i=0; i<11; i+=.10)
    {
    sprintf(buf, "%.2f", i);...
  3. Replies
    3
    Views
    825

    Re: Uploading/downloading registration

    John,

    Any chance you have a sample project you can share that would
    do this?

    I can download a file using a CWebGrab class, but I cant figure out
    how to upload it to a specific folder on a...
  4. Replies
    7
    Views
    1,098

    Re: Software Registration System

    Any chance a sample project exists which demonstrates this type
    of software registration system.

    My current method of distributing passcodes is really time-consuming.
    I got to find an easier...
  5. Replies
    3
    Views
    825

    Uploading/downloading registration

    I have a program. I want to distribute a passcode so that they
    can register the software one-time. The way I currently handle this
    is alot of work.

    My thought process was this: to create a 100...
  6. Replies
    3
    Views
    864

    Re: Printing Class Library : Bottom Margin

    It doesnt print preview either. That makes me conclude that it
    is something on the code side and not the printer.

    How can I print preview text that is toward the bottom of the
    page?
  7. Replies
    3
    Views
    864

    Printing Class Library : Bottom Margin

    There is a great printing class here:

    http://www.codeguru.com/cpp/w-p/printing/article.php/c2955/

    I have used it along time. One problem I have, which is really
    driving me crazy, is that I...
  8. Replies
    3
    Views
    1,136

    How can I detect a memory leak?

    I have a program which eventually locks up. There must be a
    memory leak somewhere. How can I detect where roughly a
    leak is coming from?

    Please, any response any one can give me will be...
  9. Replies
    21
    Views
    4,508

    Re: Multiple Views for SDI

    Im perplexed. If have a SDI application with 4-Views. I can
    serialize data without a problem. For some reason, if I run
    this program long enough or flick around enough, the program
    tends to...
  10. Re: Using checkboxes only in certain items of a listctrl (using the standard listctrl)

    I tried running the command again to get it to re-erase but that
    doesnt work.

    I posted a small, sample project. I can make the 5th checkbox not
    appear, but if I click on it, it reappears. The...
  11. Re: Using checkboxes only in certain items of a listctrl (using the standard listctrl)

    It has been 4+ years since the last post, but any solution on this.

    How can I make certain checkboxes just not appear for specific rows?

    Please, any response any one can give me will be greatly...
  12. Replies
    1
    Views
    683

    KillTimer : welcome screen

    I attached a very simple application with an error. Hopefully someone
    can guide me in the right direction.

    I have an application. After it completes initializes, Id like a dialog box to
    popup...
  13. Replies
    6
    Views
    884

    Re: Transferring Data Between PropertySheets

    Im still stuck on this. I cant get it to function correctly. Any chance any one can take alook at the sample project and maybe post a new sample project?

    Please, please, any response any one can...
  14. Replies
    6
    Views
    884

    Re: Transferring Data Between PropertySheets

    It doesnt seem to work, unless I am doing something incorrect.

    Any chance you can email me the sample project? My email address
    is brinasas@yahoo.com
  15. Replies
    4
    Views
    1,025

    Re: Pointers and Functions

    & means address of
    * means contents of

    I try to remember those two things everytime I work with a pointer.

    My only other advice is to read through some examples and ask very
    specific...
  16. Replies
    6
    Views
    884

    Re: Transferring Data Between PropertySheets

    Any chance you can show me how to make it work in that
    sample project or what I would have to change in that sample?

    Im perplexed beyonds words.
  17. Replies
    6
    Views
    884

    Transferring Data Between PropertySheets

    I attached a sample project which is really simple to look at,
    but really confusing me.

    My sole question is, how can I automatically transfer data from a
    property page in one Sheet, to a...
  18. Replies
    6
    Views
    1,036

    Re: Property Page (Loading Data)

    If I call UpdateAllViews, I get:

    Unhandled exception: Access Violation
  19. Replies
    6
    Views
    1,036

    Re: Property Page (Loading Data)

    I tried UpdateAllViews. When I compile, I get:

    error C2065: 'UpdateAllViews' : undeclared identifier
    Error executing cl.exe.
  20. Replies
    6
    Views
    1,036

    Re: Property Page (Loading Data)

    Okay. This is more explanation.

    I have two views, CView1 and CView2.

    CView1 has 1-property page, CPropertyPage1A.

    CView2 has 1-property page, CPropertyPage2A.

    Im in CPropertyPage1A and I...
  21. Replies
    6
    Views
    1,036

    Property Page (Loading Data)

    I have 2-Views with property pages. If I am in View1, I can
    get and save a number that I would like to transfer to a property
    page in View2. I can save the number to the document and if I
    print...
  22. Replies
    4
    Views
    1,137

    Re: Printing a triangle

    If I go to this page:

    http://www.symbols.net/fontview/webdings/

    #4 is the triangle I am trying to print.

    How would I go about printing that? Any chance you have a snippet
    that you can...
  23. Replies
    4
    Views
    1,137

    Printing a triangle

    Is there any easy way to print a small, right pointing triangle?
    I think wingdings has this type of triangle, but I cant get it to
    print correctly. Any chance any one has source code which shows...
  24. Replies
    3
    Views
    1,175

    Re: Compiling a smaller project

    How about this? I attached a sample project with xlistctrl built
    in.

    How can I make the individual cells editable so that someone could
    click on a cell and change the text to something else?
    ...
  25. Replies
    3
    Views
    1,175

    Compiling a smaller project

    There is a great sample project here:

    www.codeproject.com/listctrl/xlistctrl.asp

    I can run the executable (anyone can do that) but I have had no
    luck in compiling any of the projects. I get a...
Results 1 to 25 of 109
Page 1 of 5 1 2 3 4





Click Here to Expand Forum to Full Width

Featured