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

Search:

Type: Posts; User: new_2012

Page 1 of 8 1 2 3 4

Search: Search took 0.03 seconds.

  1. Thread: vcproj files

    by new_2012
    Replies
    7
    Views
    1,024

    Re: vcproj files

    Hi ..

    I have successfully migrated my VC6 (MFC) project to VC 2010 and VC 2015 .

    There were lot of errors but I set the proper compiler linker options and right toolset and half of the errors...
  2. Re: How to get the following Mode 13 H C Code to work in Visual Studio 2015 Pro ???

    Hi ..

    I have used such type of code on DOS with 486. C Line and graphics routines were taking too much time.
    So we used Assemble Routines for graphics calls. But with Windows and faster CPU s...
  3. Replies
    2
    Views
    1,389

    Re: Socket programming using VC++ in MFC

    Hi

    The dialog may need to be modeless type.
    set a flag .
    receive data in endless loop.
    on stop button click reset the flag.
    break receive loop by checking flag reset condition.
  4. Replies
    13
    Views
    18,696

    Re: How to break for loop

    VictorN sir .. I will read on hook.

    I have found a solution. I have incremented a counter in 10ms thread.
    In my for loop I have checked timing. After certain delay if I dont get any input ,
    I...
  5. Re: error C2106: '=' : left operand must be l-value

    use either
    char two[50]
    or
    CString * two and use new .. delete.
  6. Replies
    65
    Views
    34,964

    Re: Need help on errors (compilation issues)

    Hi .. in the beginning one can feel vs13 - vs15 mov job tedious but it is not really so.
    Pl post your errors . I was not able to open the rar file.
    We can very well port the project
  7. Replies
    13
    Views
    18,696

    Re: How to break for loop

    Thank you Igor Sir ..

    While I was coding and I wrote for(;;) loop I was not much satisfied.
    For C coding we have kbhit() function to break the loop.
    When I code for MFC I need to learn...
  8. Replies
    13
    Views
    18,696

    Re: How to break for loop

    Thank you all and thank you VictorN Sir

    I will read the links and will redesign my
    algorithm.
  9. Replies
    13
    Views
    18,696

    Re: How to break for loop

    I know I should process WM_CHAR message. but I dont know
    how to get it in a function in View File. To get keyboard msgs
    I have used KeyBoard Acclerators in my prog.
    Can you suggest ? pl ?
  10. Replies
    13
    Views
    18,696

    Re: How to break for loop

    Thank you Arjay Sir ..

    I need to break the method to break for loop . How to use WM_CHAR message
    for Escape Key ?
    I am stuck.
  11. Replies
    13
    Views
    18,696

    How to break for loop

    I am stuck at simple but strange problem.

    I have written a for loop . I read input port line. When it is enabled I break the for loop.
    but if due to some reason the input line is not enabled...
  12. Replies
    8
    Views
    18,558

    Re: Using Slider Control in client area

    Thank you Igor vartanov sir , VictorN Sir and ovidiucucu sir.

    I will do it .. will go through the project and books.
  13. Replies
    8
    Views
    18,558

    Re: Using Slider Control in client area

    Thank you VictorN sir ..

    My application is MFC APP Wizard SDI application. It is not dialog based.
    I have divided screen in two parts .
    In one part I display Temp Controller Status.
    In...
  14. Replies
    8
    Views
    18,558

    Re: Using Slider Control in client area

    Thank you VictorN Sir ..

    I need to use Slider Control in my main program in client area.
    I have used it in dialog only using resource editor.

    Now I dont know whether I can use it in main...
  15. Replies
    8
    Views
    18,558

    Using Slider Control in client area

    Hi ,

    I want to use Slider Control in Client Area to set some parameters.

    How to do this ? I have used it in Dialog Box Only.

    Thanking you ..

    New_2012
  16. Thread: help in exam

    by new_2012
    Replies
    22
    Views
    9,637

    Re: help in exam

    Hi ..

    Do not get panic.

    Do search on net Question - Answers with explanation

    Read Basics

    This will help u
  17. Re: How to create a Excel File(.XLSX) And(.XSL) through code in MFC

    Here is simple code for you.

    This will generate simple .xls file .

    You cant have colored records and all other facilities with this




    void zzzDoc::OnOpenexcelfile()
  18. Re: Linker Error While migrating from VS 6 to VS 13

    Thank you Igor Vartanov sir . After a brain storm I concluded the same you suggested.

    I will try to get Source Code to build the dll for VS 2013 or I will write my own code.

    That code is too...
  19. Re: Linker Error While migrating from VS 6 to VS 13

    Yes Sir .. I read a lot on net for this.
    Now I got that the errors are due to some ready code I have taken from net for SMTP mail

    I will learn and write my own code . That may help me .

    Merry...
  20. Re: Linker Error While migrating from VS 6 to VS 13

    Hi VictorN Sir

    The same article you have mentioned in the list.

    But errors remain even after adding the lines.

    What can I do ? where to add the lines ?

    Thanking you
  21. Linker Error While migrating from VS 6 to VS 13

    Hi ,

    I am migrating my old visual studio 6.0 MFC AppWizard Project (XP Based) to Visual Studio 2013.

    I have made the needed changes , compiles without errors or warning. While Linking it gives...
  22. Replies
    9
    Views
    1,480

    Re: Strange Behaviour of Release Mode

    Thank you GCDEF and Ahoodin Sir

    GCDEF Sir .. with ur clue I deleted .opt file and it resolved my problem. Thank you
  23. Replies
    9
    Views
    1,480

    Re: Strange Behaviour of Release Mode

    Thank you GCDEF sir .. My first attempt was to delete .clw and even .ncb files.
    It failed.
    Nothing is working to resolve the problem. I have checked project settings .. optimizations..played with...
  24. Replies
    9
    Views
    1,480

    Re: Strange Behaviour of Release Mode

    The problem is .. To modify a dialog I used Resource Editor. The changes were seen in .RC file. But they were not reflected in release mode.
    If I edit .RC File directly still the changes are not...
  25. Replies
    9
    Views
    1,480

    Re: Strange Behaviour of Release Mode

    Thank you Ahoodin .

    There is no issue of License.

    One more thing I observed. I need to modify Project Settings to add my code.

    I copied the project. I edited dialog box . It worked fine.
    To...
Results 1 to 25 of 196
Page 1 of 8 1 2 3 4





Click Here to Expand Forum to Full Width

Featured