Visual C++ :: Code Style Checking Tool
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
ADVERTISEMENT
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
Oct 15, 2012
is there a tool to find all functions and classes in an assembly?
View 3 Replies
View Related
Feb 26, 2013
I want to set font size and font color for button in MFC. But MFC differrent from win32. It have no font style in property. How to set font color and font size for button in MFC ?
View 4 Replies
View Related
Mar 15, 2013
Is there a profiling tool for MSVC that is free to use?
View 4 Replies
View Related
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
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
Dec 21, 2012
To calculate line slope I am using formula ,
line_slope = (meanxy - (meanx * meany)) / (meanyy) - (meany * meany));
All the variables are floats.
How to check whether the denominator .. (meanyy)- (meany * meany)) is zero ? Cause its float.
can I check with ..
float f1 = (meanyy) - (meany * meany) ;
if (f1 == 0.0) ..
Will this work surely ? I am using this formula in project based on winXP but it survived. As soon as I ported the code on DPMI based code , I observed a system hang after some time if all the points I supply are (0,0) while drawing a line.
View 3 Replies
View Related
Apr 4, 2014
Code:
//Class header
CString m_cstrArry[5];
Code:
//Class source
void Ctry4Dlg::OnInitDialog() {
m_cstrArry[0] = _T("TEXT 0 |");
m_cstrArry[1] = _T("TEXT 1 |");
m_cstrArry[2] = _T("TEXT 2 |");
[Code] .....
View 8 Replies
View Related
Sep 5, 2014
Casting Pointers in C Programming. I don't want to move onto implicit casts until I have this down pat. I'm failing to understand how casting pointers works.
The line
int *mnt = (int*)&flt;
if I read this correctly passes the address of flt which has been converted to an int to the pointer mnt.
1 - When I output mnt I get a garbage value, probably because the address of flt is then converted to a pointer and passed onto mnt as a value and then reinterpreted as a memory address. (that is the first part I don't understand)
2 - - What exactly does the (int*) cast say? Does this mean that a pointer will be returned or an address will be returned. What does the fact that the * is inside the parenthesis mean?
Code:
#include <iostream>
using namespace std;
int main() {
float flt= 6.5;
int *mnt = (int*)&flt;
cout << mnt << endl; // outputs hex memory address
cout << *mnt << endl; // outputs garbage value
}
View 9 Replies
View Related
Jun 8, 2014
I want to write a command line parsing library that is very flexible in terms of parsing style but I'm not able to design a mechanism that satisfies this requirements.
Generally i want to have a class that contains all the necessary information about how the command line has to be parsed.
Code:
// draft
class style {
public:
enum class type { // the basic style type
[Code] ....
Need completing the draft shown above, because for every basic style type there is an own set of extensions that applies only to this one specific style type.
Code:
// how a style object should be created
style parsing_style(style::type::posix, style::extension::gnu|style::extension::subcommand);
How to design the class. (using c++11 features like std::enable_if is fine)
View 10 Replies
View Related
Apr 30, 2014
Is there any opensource tool which can check the coding style use in a program.
View 2 Replies
View Related
Sep 1, 2014
I need to convert a string into a Font object. I'm trying to use the Font Converter but I don't see support for the font Style. I need to save a font to a string and back again using the font name, size and style.
Font font1 = (Font) converter.ConvertFromString("Arial, 12pt");
View 1 Replies
View Related
Feb 9, 2014
I was told that if I define
char *cstrp;
char cstra[c];
then the cstrp can be treated as cstra, and so I can also use
cin>>cstrp;
but when I write the following program, I find it don't work, don't have clue
#include <iostream>
#include <string>
#include <cstring>
using namespace std;
int main() {
char cstr[5];
[Code] ....
for cstr, it work exactly as what I expected, but for cstrp, no matter what I input, with a null terminator or not, I just got nothing printed. why? can we really use cstrp in that way or not? How to use it?
View 7 Replies
View Related
Jun 20, 2012
Is there a tool for C# that exposes coupling between objects by makeing a visual representation of the software?
View 4 Replies
View Related
Jan 24, 2015
I am trying to read in data from a text file and store it inside a 3D array. The text file looks like this:
bar bell orange
bell bell 7
lemon cherry cherry
I can read in the data fine, but how to store it inside the array. My array looks like : [ Char slotMachine[10][3][8]; ] T
he dimensions are Row, Column, and symbol. There are 10 rows and 3 columns inside the file. The third dimension is supposed to hold the symbols as a C-style string.
This is what I have been trying:
char symbol[8];
int rowIndex = 0, colIndex = 0;
While(fin.good()){
fin >> symbol;
slotMachine[rowIndex][colIndex][] = symbol;
rowIndex++;
colIndex++;
}
I know that i'm not storing the symbol right. How to correctly store it inside the third dimension.
View 4 Replies
View Related
Sep 15, 2014
I want to make a configuration tool that edits certain parameters in my C. file. My problem is that I don't have a clue on how to start making this.
View 12 Replies
View Related
Oct 21, 2014
I have a project which I started. then tried to add the directx toolkit to the project referenced it but now my program wont load.
View 1 Replies
View Related
Mar 12, 2015
using cs50 videos. I'm working on writing a caesar cipher program(pset2) in c using Xcode and the command line tool. So far I just press play and it compiles and runs my source code. Now I need to use command line arguments, how do I enter command line arguments with the tools I'm using?
View 1 Replies
View Related
Sep 10, 2014
Write a program that will input the amount of chairs sold for each style. It will print the total dollar sales of each style as well as the total sales of all chairs in fixed point notation with two decimal places.
The program runs fine I am just have problems with the output. I have tried a few different methods for the fixed point notation, but I am getting results like 324.5 rather than 324.50?
#include <iostream>
using namespace std;
int main() {
//Declares variables for chairs
float americanColonial;
float modern;
float frenchClassical;
[Code]...
View 1 Replies
View Related
Dec 9, 2014
how do I tell the if statement to output this error message 'exceeded the maximum amount of characters' that has its characters stored in an array using c-style string?
[INPUT] The cat caught the mouse!
[OUTPUT] Exceeded the maximum amount of characters (max 10)
#include<iostream>
#include<string>
[Code]....
View 2 Replies
View Related
Apr 23, 2014
I'm having issues with drawing a flat style dropdown menu in XP.
Here is the custom dropdown menu element:
public class FlattenCombo : ComboBox {
private Brush BorderBrush = new SolidBrush(SystemColors.WindowFrame);
private Brush ArrowBrush = new SolidBrush(SystemColors.ControlText);
private Brush DropButtonBrush = new SolidBrush(SystemColors.Control);
public Color HighlightColor { get; set; }
[Code] ....
Here is what it looks like in XP:
And here's what it should look like (this is how it's rendered in Windows Vista/7):
View 3 Replies
View Related
Apr 10, 2013
i got the source code from this website:
[URL]
and when i tried running the server and client i get Runtime exception occured:5 in the client console.i don't know how to fix it.
heres the client code:
Code:
// File DoRPC_Client.cpp
#include <stdio.h>
#include "..RPC1_IDLDoRPC.h"
int main() {
RPC_STATUS status;
[code]....
View 14 Replies
View Related
Mar 20, 2013
i had created a client server program in MFC using TCP but by doing this the server can only work on one computer because you have to tell the client the ip address to connect to i.e
Code:
ServerAddr.sin_addr.s_addr = inet_addr("10.13.31.112");
so i want to change my code so that i can use broadcasting but i found out that it only works using UDP. I tried changing the code but the error message "error with sendto: 10047" displays when i run the program.
that error means
Address family not supported by protocol family. An address incompatible with the requested protocol was used. All sockets are created with an associated address family (that is, AF_INET for Internet Protocols) and a generic protocol type (that is, SOCK_STREAM). This error is returned if an incorrect protocol is explicitly requested in the socket call, or if an address of the wrong family is used for a socket, for example, in sendto.
here is the code from server:
Code:
WSADATA wsaData;
WSAStartup(MAKEWORD(2,2), &wsaData);
int port = 7171;
if (param)
port = reinterpret_cast<short>(param);
[code]....
View 1 Replies
View Related
Dec 20, 2014
I'm working with a game editor program, where the player can create their own maps. Right know I'm working with collisions, and since it's unpredictable where the player place the objects like trees, houses and cars...etc have I an idea with making a rectangle selection tool. Where the player can drag a collision box around the object, so the sprite stops when it hits the box. The problem is that I dont know how to make a tool like that. so my question is how do I create a tool like that (see picture under for more information)?
btw I'm using the SDL framework
here is a picture that illustrate the tool I want to create: [URL] ....
View 4 Replies
View Related