Thanks Mike. i try it your solution.
mathivanaan
Posts
-
how to assign unsigned char in c++? -
how to assign unsigned char in c++?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
-
How to get CPU_Type in c++?Hi, how to get System CPU_TYPE through C++ code? any method is available? Please share ur idea and url. Regards, M.Mathivanan
-
how to run linux executable file in winows? pls how to install and run in cross compiler cygwin?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
-
How to run Linux cpp excutable in winows os?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
-
how to integrate WPF window designs in vc++ win32/mfc environment?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
-
How to Call C# DLL in VC++ win32?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
-
How to Use WPF in Vc++ win32/MFC application?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
-
How to disable double click option in activex component control?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
-
Floating point with VB Slider Control?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
-
How to use ActiveX control in win32?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
-
how to call File Open dialog box function from File Menu (Open menu)?Thanks. i understand. now its working.
-
how to call File Open dialog box function from File Menu (Open menu)?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
-
how to add a menu in win32 dialog box?Thanks.
-
how to add a menu in win32 dialog box?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
-
ActiveX Component use 2D graph?Hi Any sample code for ActiveX Component use 2D graph in MFC Regards M.Mathivanan
-
get a value from dialog box to dialog box?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
-
how to set X and Y axis range from MFC dialog box?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
-
how to Drawing graph in VC++ MFC?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
-
How to pass text file data from MFC line Graph?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