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

Search:

Type: Posts; User: johny555

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    813

    Re: Exporting to PDF

    Have you tried cutePDF? Install it and change printer to cutePDF. Don't blame me though if it still doesn't work. It might be a waste of your time but it's just something I'd try if desperate enough.
  2. Replies
    0
    Views
    630

    Parameter passing to subreport

    Another newbie question for gurus. I'm new to using Crystal 8.5, yeah I know it's old.

    I've created a somewhat huge sql query using "Enter SQL statement directly" into the Crystal SQL designer. (I...
  3. Replies
    2
    Views
    561

    Re: Dynamically created DATEDIFF function

    Without knowing more about what you're doing or what the context is, one answer to your question would be to use EXEC ( ) to execute dynamic SQL.

    DECLARE @typecode VARCHAR(25)
    DECLARE @s...
  4. Replies
    10
    Views
    17,146

    Re: C# and creating an EXCEL file

    We actually used the XML format that Excel 2003 produces which was easier to work with and obviated the need to deal with Excel and all it's problems. Format a sheet the way you want the output to...
  5. Replies
    4
    Views
    4,242

    Re: Redrawing and scrolling in MFC

    du ur best but not going to solve it


    ok

    because u r going in wrong direction

    bye
  6. Replies
    4
    Views
    1,626

    Re: to access the printer name in visual c++

    Thanks for ur support .but i resolved mu problem. thanks
  7. to get appropriate structure or MFC class

    I am new to vc++ and of course for MFC CLASS.
    SO, plz help that how can i get an appropriate structure or MFC Class for the project in easier way or everytime i have to go for internet help or...
  8. Replies
    4
    Views
    1,626

    Re: to access the printer name in visual c++

    Thanks for ur support but i have got the solution for it.
  9. Replies
    1
    Views
    7,801

    Regarding Printer related notifications

    Hi!

    I have a problem in retrieving printer information using FindNextPrinterChangeNotification() function.My code executes properly without any error and exception but all the values in...
  10. Replies
    3
    Views
    7,873

    Re: "Buddy Memory Allocation" Question

    I figured it out. For anyone who's interested:



    //------------------------------------------------------------------------------
    // Buddy...
  11. Replies
    3
    Views
    7,873

    Re: "Buddy Memory Allocation" Question

    Thanks for the reply. I guess, I'm a little confused about how the Buddy() function returns the location of it's "buddy". Correct me if I'm wrong, but the parameter that is passed into Buddy() is...
  12. Replies
    3
    Views
    7,873

    "Buddy Memory Allocation" Question

    Hello All

    I wanted to play around with some memory pool techniques, and do some testing/benchmarking with an application of ours (a small embedded application). I'm a little hung up on the "Buddy...
  13. Replies
    3
    Views
    870

    Re: Popupmenu issues

    Popupmenus are created with "CreatePopupMenu" API, items are added with AppendMenu.

    With regards to the button, he wants the Popupmenu to show when you mouseover the button, and no not a tooltips,...
  14. Thread: Nested Class

    by johny555
    Replies
    7
    Views
    833

    Re: Nested Class

    Unfortunately, the way that I have it setup in what I'm actually working on, Bob *bob must be a pointer.

    This crashes on my comp and according to gdb, the resize is the problem, that's why I...
  15. Thread: Nested Class

    by johny555
    Replies
    7
    Views
    833

    Nested Class

    If I have
    class Blah
    {
    Bob *bob;
    };

    and

    class Bob
    {
  16. Replies
    3
    Views
    870

    Popupmenu issues

    Hey I need some quick help I have been asked to extend a current source from hell (one .cpp alone is 15k of undocumented code). It is a toolbar and the customer has demanded that the popupmenus for...
  17. Thread: Input problem

    by johny555
    Replies
    7
    Views
    742

    Re: Input problem

    inFile.open("file"); is incorrect use:

    inFile.open(file); You must use the name of the variable without quotes
    and I would recommend using string file; because the c++ file stream stuff is made...
  18. Replies
    1
    Views
    575

    classes in separate files

    Hi, I'm having a problem with this and perhaps someone could help.

    Lets say I have class CMap defined in CMap.hpp



    class CBattle;
    class CMap
    {
    public:
  19. Replies
    3
    Views
    1,109

    Re: Open A New Window In C#

    that doesnt open it in a new window!?!?
  20. Replies
    3
    Views
    1,109

    Open A New Window In C#

    I have a little navigation bar with 5 drop down menus. Then I have a submit button that will is suppose to open in a new window that goes to a whole other link. The drop downs and the button are...
  21. Replies
    0
    Views
    513

    GDIPlus Problem

    hi

    im using GDIPlusWrapper.dll from vbaccelerator.com to create a single
    png file from a sequence of png files (filmstrip).

    everything works fine, except that gdi seems to scale up each image...
  22. Re: SendMessage between programs not working right

    hey thanks, but thats not quite what i was looking for.
    i was serching planet-source-code, and this forum, to find
    what im looking for, and i found some simillar situations, but none
    of thet seemd...
  23. Re: SendMessage between programs not working right

    hey hey!

    this is just what im looking for. im dont really know much about SendMessage, and WM_COPYDATA, so everything you are talking about is a bit unclear to me.

    i could really use a very...
  24. Replies
    1
    Views
    601

    get text content of any window

    hi

    ive searched the net and the forum for the answer, but i've found nothing,
    but getting text from a window of a specific class (witch i allready know how to do).

    i'm writing a screen-reader,...
  25. Replies
    6
    Views
    991

    Re: regexp pattern for currency

    HEY HEY!!!

    I THINK I'VE GOT IT.

    this is the right pattern:
    \s[0-9]+(\.|,)?[0-9]+([a-z]{3}\b| [a-z]{3}\b)


    ill test it for a while. if something will be wrong i'll post back.
Results 1 to 25 of 30
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured