Visual C++ :: Tool For Automation Of Different Applications
Feb 11, 2015
I want to create an application that automatize different applications in the sense that my application will be able to press automatically different buttons on another application.
For example: my application will start, let's say, Microsoft Office, will press some buttons in MSOffice, and will close MSOffice.
View 2 Replies
ADVERTISEMENT
May 17, 2013
[URL] if I using Visual Studio Class Wizard to create MFC class based on Microsoft Word 97 type library Msword8.olb. Then will the final application works with higher versions, such as Word 2003, 2007, 2010 and 2013?
View 5 Replies
View Related
Mar 4, 2015
Using Excel Automation in Visual Studio 2010 C++, how do I define a name? As a user of Excel, you can enter a name that then can be used in formulas to refer to a range of cells. The range changes as the user inserts columns or rows. My program has worked with various versions of Excel dating back to the early 2000's.
I have a bunch of classes derived from COleDispatchDriver: CXLApplication, CXLRange, CXLWorkbook, CXLWorkbooks, and CXLWorksheet that have many functions, but I have no documentation... How to define a named range using functions of these classes (probably CXLRange)?
View 6 Replies
View Related
Jan 10, 2013
I have found the following article to be a very excellent run through on how to use Outlook automation with C++ in Visual Studio 2010. However, I cannot find any description of how to add an attachment(s) to an email.
How to automate Outlook 2010 by using C++ in Visual Studio 2010 together with MFC
[URL] ....
View 5 Replies
View Related
Jan 20, 2014
I`m working with MS Visual Studio 6. Trying to connect Word server with my window. This is call server in my class CXContainerView, inherit from CScrollView:
Code:
void CXContainerView::CreateWord() {
::CoInitialize(NULL);
_Document doc;
_Application m_app;
LPDISPATCH lpDisp;
CLSID clsid;
[Code] ....
It works in debug version but falls in release. Feels my fifth point, what I call it in the wrong way.
View 6 Replies
View Related
Sep 23, 2013
I need to make a programm to write in a excel cell a number.
I must use OLE Automation. How i can do it??
Code:
#include "stdafx.h"
#include <stdio.h>
#include <windows.h>
#include <ole2.h>
#include <assert.h>
#include <iostream>
void main(void) {
CLSID clsid;
CLSIDFromProgID(L"Excel.Application", &clsid);
[Code] ....
View 1 Replies
View Related
Mar 15, 2013
Is there a profiling tool for MSVC that is free to use?
View 4 Replies
View Related
Sep 11, 2014
Are there any good free or commercial software that can check the C++ code style and find any codelines that violate a given code style specification? For example, whether the codeline is indented proplery, whether the variable is using Hungarian naming notation?
View 6 Replies
View Related
Feb 10, 2014
We have a C++ 5.0 app that does something like this:
Creates the excel dispatch, exports the data, etc...
...
then calls these functions:
xlsApp.SetDisplayAlerts(TRUE);
xlsApp.SetVisible(TRUE);
xlsApp.SetUserControl(TRUE);
This has always worked to display the excel spreadsheet in the foreground, most recently on Windows Server 2003.
Now, testing on Windows Server 2008, the excel spreadsheet is created, but in the background. How to force it to the foreground?
View 2 Replies
View Related
Sep 10, 2013
I am creating an application which will work as a static code analyzer after compiling my code in VS 2008 for VC++ projects. It will be a kind of code review.
how and where do I need to put my custom rule sets, and what should I do to create such a application.
View 4 Replies
View Related
Feb 21, 2014
Below is my Code Code snippet wher I am facing problem.
every time "pNMHDR->idFrom" is returning 0.
I even put "EnableToolTips(TRUE);" in the oninitdialog method of dialog class.
BEGIN_MESSAGE_MAP(CMyListCtrl, ListCtrl)
.
.
.
ON_NOTIFY_EX(TTN_NEEDTEXTW, 0, OnToolTipText)
ON_NOTIFY_EX(TTN_NEEDTEXTA, 0, OnToolTipText)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
[Code] .....
I am not able to get the text of a listctrl cell.
View 3 Replies
View Related
Jan 8, 2014
My problem is ToolTips are not shown if any of the tool-bar menu items is disabled/inactive.
They are shown when all tool bar menus are active/enabled.
I am using TTS_ALWAYSTIP while creating Tool-Bar.
What to do to enable/display tool-tips always.
View 5 Replies
View Related
Aug 7, 2014
I am new to C# and just want to understand if an entire Test Automation Framework can be built using only C#. I would not want any dependency on available commercial tools in the market for executing the Test Action steps. Though a few points that i see will need to be taken care of at the onset.
1. creating and maintaining Object repository in some form of file extension
2. preparing a GUI for capturing user Test Action Steps
3. retrieving the respective test objects from Object Repository and firing the respective Action commands on those objects
4. handling test data within the Automation Framework Solution folder.
I have been exploring a series of blogs and found that point # 2 and 4 are achievable. However points 1 & 3 above looks a big challenge.
View 4 Replies
View Related
Jan 1, 2015
I'm working a personal project where I have two applications namely Server, Client. when Server is started, it continuously transmits data. When Client is opened, it is ready to consume the data and display it.
I will put both .exe files in a shared location (LAN). Therefore Sever and Client will be launched from different machines. When I searched for articles that teach how to establish communication between the two, I was offered with choices like NamedPipes, WCF, Polling etc.. I'm not sure whether they will work in a LAN based environment.Also are there any other means of establishing communication?
View 4 Replies
View Related
Mar 12, 2014
I have developed the msword automation using the following link
[URL] ....
and using VC++ in Visual studio 2010,and msoffice 2007.
Its working fine. but the exe can not run in windows xp (same msoffice 2007 and installation folder also same). i do not know what is the problem. plz tell about how compactability in both os and different version of office like 2003, 2007, 2010, etc....
View 6 Replies
View Related
Oct 7, 2013
I am trying to open a excel file using ole automation, passin with char * the name.
Code:
void ExcelOpen(char * FileOpenName){
...
{
VARIANT result;
VariantInit(&result);
[Code] ....
View 3 Replies
View Related
Jan 11, 2013
Any time I run my program after I make a selection from the menu the output is printed on the console screen then immediately a windows screen comes up saying project.exe has stopped working.
Below is my code, and I suspect the error has something to either
A) due with how I'm calling the method or
B) how I have the method coded.
Main
#include <iostream>
#include <fstream>
#include <string>
#include "telephone.h"
#include "tbook.h"
[Code] .....
View 4 Replies
View Related
Sep 30, 2014
I need to write a windows form application that allows the user to enter a credit card number and credit card type and then determines whether it is a valid number using the following rules:
1.) the first number is:
a. 4 for visa
b. 5 for master card
c. 37 for american express
d. 6 for discover
2.) passes the mod 10/ luhn check, which is calculated as:
a. from right to left, multiply every other digit by 2. when doubling a digit results in a two digit number, add the numbers to get
a single digit. ( like 6 * 2 = 12 therefore 1 + 2 = 3).
b. add all the single digits from 2a
c. add all the odd places from right to left in the card number
d. sum the results fro steps 2b and 2c
e. if the resulting number in 2c is divisible by 10, the card number is valid otherwise it is invalid.
The chapter is introducing methods so that is the main thing i will be using for each step.
View 1 Replies
View Related
Jun 7, 2012
I have an client application and server application, I want to make an update program, In my program I want client send a message to server if there is an new version or not, and server reply with a text message ,send will be done via web service .
View 1 Replies
View Related
Oct 21, 2014
I am searching for a way/api through which i can get list of Applications as showing by task manager inside Applications tab. Is there any way?
View 3 Replies
View Related
Jan 25, 2014
I'm looking for a library which enables me to take screenshots of a all open applications, and store them as .bmp or .jpg .
I've tried to find something but so far no luck
I don't necessarily need code just a library with good understandable documentation (if such a thing exists). Also, is something like this possible for a beginner-intermediate c++ user? If not where should I start?
View 9 Replies
View Related
Jan 10, 2014
I have a service that has some settings. As the service is running as a system user, the settings file is located in
C:Windowssystem32configsystemprofileAppDataLocal<PRODUCTNAME><ExecutableName+GUID><VERSION>user.config
Now i want to be able to change some settings at runtime using a normal Winforms App. Is there a good and easy way to change the user.config of a different application directly? I tried with ConfigurationManager but that does not seem to work.
View 8 Replies
View Related
Sep 4, 2014
I'm trying figure out how Windows Firewall functions by experimenting with Bittorrent's add exception to windows firewall option, I deleted the entry from the Firewall options and also located that the regkeys are in HKLM/System/CurrentControlSet/Services/SharedAccess/Parameters/FirewwallPolicy but I can't figure out what registries are made when an application is added as an exception in the Windows Registry.
View 6 Replies
View Related
Jun 21, 2012
I intend writing a Windows form c# application that freezes windows and disables all other running application in the background while executing for security reasons. How I could go about this?
View 1 Replies
View Related
Jul 9, 2013
I will sketch the scenario I would like to get working below. I have one main application.
That application, based on user interactions, can load other applications in a secure shell. This means these child applications cannot interact with the OS anymore, nor with each other.
The parent program can at any time call functions of these child programs.
The child program can at any time call functions of these parent programs.
How to implement this in C++? Preferably both parent and child should be written in C++.
The performance of loading the child applications doesn't matter. The only thing that matters is the performance of the communication between child and parent.
View 4 Replies
View Related
Oct 15, 2012
is there a tool to find all functions and classes in an assembly?
View 3 Replies
View Related