Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
M

mathivanaan

@mathivanaan
About
Posts
31
Topics
25
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to assign unsigned char in c++?
    M mathivanaan

    Thanks Mike. i try it your solution.

    C / C++ / MFC c++ tutorial question

  • how to assign unsigned char in c++?
    M mathivanaan

    Hi, I am working Fodero eclipse c++. I have one unsigned char(one byte unsigned integer) variable. i am passing some integer value. like unsigned char aa= 10; but aa is not assign that value? How to pass that value on unsigned char. same like i am using unsigned long, i add 'u' on the end the passing number. unsigned long bb= 10u; here i got bb value is 10. how to get unsigned char value?. Any ideas or link share to me. please urgent Regards, M.Mathivanan

    C / C++ / MFC c++ tutorial question

  • How to get CPU_Type in c++?
    M mathivanaan

    Hi, how to get System CPU_TYPE through C++ code? any method is available? Please share ur idea and url. Regards, M.Mathivanan

    C / C++ / MFC c++ tutorial question

  • how to run linux executable file in winows? pls how to install and run in cross compiler cygwin?
    M mathivanaan

    Hi, I have one linux cpp executable file. i want how to run this executable file in windows OS?. please give any idea? or urls Regards, M.Mathivanan

    C / C++ / MFC c++ linux tutorial question

  • How to run Linux cpp excutable in winows os?
    M mathivanaan

    Hi, I have one linux cpp executable file. i want how to run this executable file in windows OS?. please give any idea? or urls Regards, M.Mathivanan

    Managed C++/CLI c++ linux tutorial question

  • how to integrate WPF window designs in vc++ win32/mfc environment?
    M mathivanaan

    Hi, I create one WPF window using in C# code. How to this window use in Vc++ win32 GUI? actually i want how to integrate WPF window designs in vc++ win32/mfc environment? How to add WPF files(like C# and xaml) in Vc++ win32/mfc project? Pls share ur ideas or urls? Regards, M.Mathivanan

    C / C++ / MFC csharp c++ wpf tutorial question

  • How to Call C# DLL in VC++ win32?
    M mathivanaan

    I am working in (Windows Presentation Foundation)WPF with C# environment. I have created simple DLL for C# with WPF. but how to call C# DLL from VC++ win32?. Following code of DLL:

    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Windows;
    using System.Windows.Controls;
    using System.Windows.Data;
    using System.Windows.Documents;
    using System.Windows.Input;
    using System.Windows.Media;
    using System.Windows.Media.Imaging;
    using System.Windows.Navigation;
    using System.Windows.Shapes;

    namespace Test
    {
    /// <summary>
    /// Interaction logic for UserControl1.xaml
    /// </summary>
    public partial class UserControl1 : UserControl
    {
    public UserControl1()
    {
    InitializeComponent();
    }

        private void button1\_Click(object sender, RoutedEventArgs e)
        {
            textBox1.Text = "Welcome to Tessolve";
        }
    }
    

    }

    Actually how to call C# dll function in Vc++ environment? Please share ur ideas or urls Regards, M.Mathivanan

    C / C++ / MFC csharp wpf c++ tutorial question

  • How to Use WPF in Vc++ win32/MFC application?
    M mathivanaan

    Hi I am doing win32 GUI application. Recently i got good GUI application is is Window Presentation Foundation(WPF). How to Use WPF in Vc++ win32 application? How to Import are refer? Regards, M.Mathivanan

    C / C++ / MFC c++ csharp wpf tutorial question

  • How to disable double click option in activex component control?
    M mathivanaan

    Hi I am using one activex component on my project. i want disable double click option this activex component in run time. Please give any idea or url Regards, M.Mathivanan

    Visual Basic com tutorial question

  • Floating point with VB Slider Control?
    M mathivanaan

    Hi, I am Using Slider control. I want Small changes value set in floating point. It is possible? I have move to slider control on 0.1, 0.2, 0.3..... to 1. Pls help any idea? or url pls Regards, M.Mathivanan

    Visual Basic help question

  • How to use ActiveX control in win32?
    M mathivanaan

    Hi, I want to use a Active X contol in a win32 application. How I can add that control to my project? If you can Please explain me with a sample code. Regards, M.Mathivanan

    C / C++ / MFC com tutorial question

  • how to call File Open dialog box function from File Menu (Open menu)?
    M mathivanaan

    Thanks. i understand. now its working.

    C / C++ / MFC help c++ tutorial question learning

  • how to call File Open dialog box function from File Menu (Open menu)?
    M mathivanaan

    Hi i am beginner of win32 Vc++. I create Menu item and call File open dialog box. I have a File Menu. it contains Open, save and exit menu items.I have file open dialog box function. Open menu item id is: ID_FILE_OPEN. my code like

    case WM\_COMMAND:
    		switch(wParam)
    		{
    			case IDOK:
    			    EndDialog(hWndDlg, 0);
    				return TRUE;
    
    			case IDCANCEL:
    				EndDialog(hWndDlg, 0);
    				return TRUE;
    			case ID\_FILE\_OPEN:
    				OnFileOpen(hWnd, ID\_FILE\_NEW, 0, 0);
    				break;
    
    		}
    

    But error is come like ID_FILE_OPEN' : undeclared identifier how to fix this? Regards, M.Mathivanan

    C / C++ / MFC help c++ tutorial question learning

  • how to add a menu in win32 dialog box?
    M mathivanaan

    Thanks.

    C / C++ / MFC tutorial question learning

  • how to add a menu in win32 dialog box?
    M mathivanaan

    Hi i am using insert--> resource use create the menus. Then how to add menus in Dialog box? pls give any url or steps? Regards, M.Mathivanan

    C / C++ / MFC tutorial question learning

  • ActiveX Component use 2D graph?
    M mathivanaan

    Hi Any sample code for ActiveX Component use 2D graph in MFC Regards M.Mathivanan

    C / C++ / MFC c++ com data-structures question

  • get a value from dialog box to dialog box?
    M mathivanaan

    Hi, I am using MFC with two dialog box. One dialog box have text box and submit button. once i type some text and submit this button, how to get values from another dialog box? any sample pls share Regards, M.Mathivanan

    C / C++ / MFC c++ tutorial question

  • how to set X and Y axis range from MFC dialog box?
    M mathivanaan

    hi, i want how to set X and Y axis range from MFC dialog box. Which MFC component use Graph background? dialog or custom control? please i help me. i have one text file. it has 20 line double values. This data pass to Graph values. one by one pass the value and display overall line joining.... pls help me Regards, M.Mathivanan

    C / C++ / MFC c++ data-structures help tutorial question

  • how to Drawing graph in VC++ MFC?
    M mathivanaan

    Hi All, I am trying plot a graph from MFC dialogbox. I have the datas from text file. How to draw a graph using this in VC++ MFC? If any there is control available on MFC? how i can draw the graph? Regards M.Mathivanan

    C / C++ / MFC c++ graphics data-structures tutorial question

  • How to pass text file data from MFC line Graph?
    M mathivanaan

    Hi, i am beginner of vc++ MFC. I don't know MFC with graph development. I have one text file. It contain one by one inter values like

    44
    -12
    80
    32
    66
    -99
    .
    .
    .

    I try MFC dialog use draw x and y axis.(only background based on dialog box width and height). when i press button read the text file and draw a line graph. pls help me. Any idea or sample code pls share with me. Regards, M.Mathivanan

    C / C++ / MFC c++ data-structures help tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups