Visual C++ :: FloodFill Is Not Working
Jan 21, 2014
FloodFill is not working. I am using Visual C 6.0 in windows 7 environment. Its not filling a triangle.
My code is:
Code:
void CFloodFillExView::OnDraw(CDC* pDC) {
CFloodFillExDoc* pDoc = GetDocument();
ASSERT_VALID(pDoc);
// TODO: add draw code for native data here
CPoint Pt[7];
Pt[0] = CPoint(300, 400);
Pt[1] = CPoint(200, 300);
[code]....
View 9 Replies
ADVERTISEMENT
Sep 27, 2012
I'm currently trying to work with more than one form, but I didn't succeed yet. What I need is quite simple: Once the program runs, a small form appears first asking "what would you like to do" with corresponding buttons for each option. Each button loads a new different form for a different task. So basically I need to open and close forms, also having two forms loaded at the same time (pop-up style) would be great for certain purposes.
I still haven't figured how to do it properly. I'm currently using VC++ 2008 and my project is a Windows Forms Application.
View 5 Replies
View Related
Feb 3, 2013
Dialogue box in the program is displayed but button will not respond. I created dialogue box using resource wizard,
Code in Resource.rc for dialogue box is generated as below
IDD_DIALOG1 DIALOGEX 0, 0, 131, 69
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
EXSTYLE WS_EX_APPWINDOW
CAPTION "Test dialogue"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
DEFPUSHBUTTON "That is Good",IDOK,30,35,66,25
[Code] .....
View 14 Replies
View Related
Jul 3, 2013
I have a slider control on a dialog box. I am playing a video file and slider moves according to the video elapsed. Suppose I have set the slider range to 100. Now till some point say 90, the slider moves to the point wherever I click the mouse. but at the last point in between some range say 90 - 100 (to the end of the slider), if I click the mouse button anywhere, slider jumps to the end.
I am using a TimeLine control where user can add more than 1 video (1, 2, 4, 8, 10 , 50 etc......), If I use only one video, slider moves as per the video progression.....Issue arises when I add more than 1 video and click on the start button, slider starts moving....Now when I drag the slider to any position or I click the mouse button anywhere on the slider control, slider thumb moves to that position and immediately jumps back to some other position. This is the Issue, I am facing.
share some sample code where slider is moving with the video showing the progress of the video.
I want to implement a functionality similar to VLC player. Wherever user clicks the mouse, slider moves to that point.
View 13 Replies
View Related
Sep 19, 2014
My code is below:
Total Interest ends up as my last Monthly Payment amount instead of adding up all Interest Paid - What am I doing wrong?
Total Paid isn't calculating correcly either - What am I doing wrong?
I suspect both are very similar problems. I've tried several different calculations, but cannot figure this out.
#include <iostream>
#include <cmath>
using namespace std;
double GetMonthlyIntrest (double OpenBalance,double rate);
bool ContinuePgm();
int main () {
double StartingBalance,rate,amount,OpenBalance,IntPmt,TotalInt=0.0,GrandTotal=0.0;
[code]...
View 3 Replies
View Related
Feb 21, 2014
I have a CDHtmlDialog app in which am trying to add a CSS media query in the HTML file as shown below, but it doesn't work.
@media (max-width:20em) {
table, thead, tbody, tfoot, th, td, tr { display:block; }
tr + tr { margin-top:1em; }
}
The same CSS works fine if i open in a browser like IE, FireFox, Chrome. But inside the CDHtmlDialog app this doesn't work.
I am using Visual Studio 2012 for development and have IE 11 installed in my machine.
View 1 Replies
View Related
Sep 22, 2012
The below code is working fine in VS2008 and not working in VC6.0 (taking garbage values) this code is for converting hex values to string.
sending Input string is : 727332333263 required output: rs232c
DWORD AsciiToString(LPCTSTR f_chInputChar, LPTSTR f_chOutputChar) {
long ch;
int i,j;
TCHAR tmp[2];
int len = _tcslen(f_chInputChar);
[Code] ....
View 5 Replies
View Related
Nov 6, 2013
I keep having problems with CMFCPropertySheets. I now have it embedded in a resizable dialog and the property sheet and page gets resized when dialog is resized all that is working fine.
Problem is OnSize is being called when the dialog is being resized NOT when it has finished resizing so the values reported in cx and cy is the old size not the size AFTER resizing. What could be causing this? Isn't OnSize call AFTER the size has been changed and OnSizing called WHILE the size is being changed?
I have a list control that needs to take up full rect in each page and when the dialog is maximized it stays at previous size even though the sheet and page have both maximized as they should.
I ran a trace on the OnSize even for both the sheet and page and OnSize is being called during the sizing and not after it has already been sized like it is supposed to.
View 6 Replies
View Related
Oct 3, 2013
Just using Find in my source code to look for variables or whatever, works once or twice then just stops - Doesn't find anything even if it's there. If I restart VS it works again, but not for long.
View 1 Replies
View Related
Feb 6, 2015
I downloaded Visual Studio 2013 on a new laptop. On my old one I could press things like ctrl + F7 to compile and ctrl + F5 to start without debugging however now it isn't responding when I type those commands. Nothing happens at all. How to change this? I googled "keyboard shortcuts not working in Visual Studio 2013" but per the usual Google comes up with garbage search results that do not pertain at all.
View 1 Replies
View Related
Sep 16, 2014
I can't get tooltips to show up for the windows I want in my CFormView derived class. I have copied the code from the MSDN entry on EnableToolTips(). But only two windows respond with a tooltip:
CONTROL "Tree1",IDC_TESTPLANS,"SysTreeView32",TVS_HASBUTTONS | TVS_HASLINES | TVS_EDITLABELS | TVS_SHOWSELALWAYS | WS_BORDER | WS_HSCROLL | WS_TABSTOP,1,36,85,91
CONTROL "Tab1",IDC_TABCMD,"SysTabControl32",0x0,101,0,239,181
Other windows do not respond. For these windows my function designed to catch the TTN_NEEDTEXTW and TTN_NEEDTEXTA messages is not called. Windows such as
LISTBOX IDC_TESTPLANNAMES,0,119,48,40,LBS_SORT | LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_TABSTOP
PUSHBUTTON "",IDC_BTN_COPY,105,177,24,24,BS_ICON
Why wouldn't the messages be sent for those windows? I'm using the code
ON_NOTIFY_EX_RANGE(TTN_NEEDTEXTW, 0, 0xFFFF, &CCntlrView::OnTtnNeedText)
ON_NOTIFY_EX_RANGE(TTN_NEEDTEXTA, 0, 0xFFFF, &CCntlrView::OnTtnNeedText)
(CCntrlView is the name of my class derived from CFormView.) And as I pointed out, I'm using the code straight from the example given in MSDN for CWnd::EnableToolTips(), with the only difference being that all my controls are created in the rc file as shown above.
View 12 Replies
View Related
Mar 18, 2015
I'm having problem using the click event in a web browser control. I have a control called CIEBrowser that implements a Web control. Here a message_map:
Code:
IMPLEMENT_DYNCREATE(CIEBrowser, CWnd)
BEGIN_MESSAGE_MAP(CIEBrowser, CWnd)
ON_COMMAND_RANGE(ID_IEHOME,ID_IESTOP, OnToolBarCmd)
ON_UPDATE_COMMAND_UI_RANGE(ID_IEHOME,ID_IESTOP, OnUpdateToolBarCmd)
ON_NOTIFY_EX_RANGE(TTN_NEEDTEXTW, 0, 0xFFFF, OnToolTipNotify)
ON_NOTIFY_EX_RANGE(TTN_NEEDTEXTA, 0, 0xFFFF, OnToolTipNotify)
END_MESSAGE_MAP()
I want to implement a derived class called CFulltextCtrl.
Code:
IMPLEMENT_DYNCREATE(CFulltextCtrl, CIEBrowser)
BEGIN_MESSAGE_MAP(CFulltextCtrl, CIEBrowser)
ON_WM_PAINT()
ON_WM_HELPINFO()
END_MESSAGE_MAP()
I have a dialog with a control using this CFulltextCtrl. I can create and show the html perfectly inside the form. But all links inside this control don't work (scenario 1). If I create a form who have a control of the type CIEBrowser, the EXACTLY same html code works perfectly (scenario 2).
In particular, I need that when I click in one link, execute a method called OnClick, who performs all that I need, just like in scenario 2.
This is my DISPATCH_MAP in the derived class (CFulltextCtrl):
Code:
BEGIN_DISPATCH_MAP(CFulltextCtrl, CIEBrowser)
DISP_FUNCTION_ID(CFulltextCtrl,"HTMLELEMENTEVENTS2_ONCLICK", DISPID_HTMLELEMENTEVENTS2_ONCLICK,
OnClick, VT_EMPTY, VTS_DISPATCH)
DISP_FUNCTION_ID(CFulltextCtrl,"HTMLELEMENTEVENTS2_ONKEYDOWN", DISPID_HTMLELEMENTEVENTS2_ONKEYDOWN,
OnKeyDown, VT_EMPTY, VTS_DISPATCH)
DISP_FUNCTION_ID(CFulltextCtrl,"HTMLELEMENTEVENTS2_ONKEYUP", DISPID_HTMLELEMENTEVENTS2_ONKEYUP,
OnKeyUp, VT_EMPTY, VTS_DISPATCH)
END_DISPATCH_MAP()
View 5 Replies
View Related
Oct 17, 2013
I'm programming with VS2010, for windows 7. The user likes to use the windows classic theme, and I discovered that BS_MULTILINE style isn't working as I expect. When a button is pressed in the classic theme, it looks like there is a temporary margin added that causes the text to wrap only when the button is pushed. It works fine with any other theme.
View 1 Replies
View Related
Mar 6, 2015
Whenever I put my dll files in the same directory as my main.cpp and use this code, Code: g++ main.cpp -L. -lMyDll it works.
but if my dll files are in the other directory, Code: g++ main.cpp -L/myDlls -lMyDll it won't work. Why is this not working?
View 6 Replies
View Related
Jul 5, 2014
i am currently trying to get SDL working with C language.I am using Cygwin and Sublime text 2.I know and understand general programming, however i am trying to understand how to get SDL working with a file i create i.e test.c. i know to include which i have downloaded
#include <SDL.h>
where do i add the libraries so that i can use them in my program?
View 9 Replies
View Related
Apr 16, 2014
I am writing an irc bot in c++ on linux mint, and its not connecting right for some reason. anyways, heres the link: [URL].... . it was connecting to quakenet before I added the functions, but now it just says connecting... and then quits.
View 12 Replies
View Related
Apr 3, 2013
I'm learning network programming and I've decided to program a simple c++ irc bot. I'm able to connect to server and send commands. But when I try to receive and show message from server I first get a few lines, like "Please, wait, while we process your connection" or "Found your hostname". And then I start to get a ton of information about the server. Here is the whole class:
header file:
#pragma once
#include <WinSock2.h>
#include <WS2tcpip.h>
class bot {
public:
bot(char *_server, char *_port);
~bot(void);
[Code] .....
Link to whole visual studio project: [URL] .... Am I doing something wrong during the IRC connection? Or I didn't understand how networking work?
View 19 Replies
View Related
Jul 25, 2014
When inserting elements in a set it should only insert unique elements but I get duplicates too.
Code: #include <iostream> // cout
#include <algorithm> // unique, distance
#include <string>
#include <iterator> // std::back_inserter
[Code].....
View 3 Replies
View Related
Oct 21, 2013
Well for some reason this doesn't work.
Code:
#include <stdio.h>#include <ctype.h>
int main(void)
{
int lottoNums[150];
int num;
[Code]....
View 13 Replies
View Related
Nov 27, 2013
Code:
#include <stdio.h>
int main() {
int m,c;
for(c=0;c<100;c++) {
m = c % 10;
printf("%d ",m);
}
return(0);
}
When I run this code in my compiler, I get the first nine or ten numbers, and then after that it just spells out the letters in my name in different sequences over and over.
View 3 Replies
View Related
Mar 6, 2015
I'm trying to write a code that will
1) Generate a series of numbers
2) Write those numbers onto a txt file and
3) Read only the odd numbers out of the txt file.
I have 3 functions besides main that do each of the objectives individually and when separate they work just fine. But when I put them together for some reason the third function is never started. Also when I rearrange the 3rd function infront of the 2nd (since i have the txt file already saved) it works but I get an error when trying to close the txt file. It is the same close function that I'm using when first creating the txt file as well.
Here is the code
Code:
#include <stdio.h>
#include <stdlib.h>
int main()
}
[code]....
View 3 Replies
View Related
Nov 19, 2013
I need to find out all the possible equations which are same of a given equation. For eg. a+b+c-d and b+c+a-d are same. So if the user inputs a+b+c-d then the output will be all the possible equations that can be formed from the given equation, viz:
a+c+b-d
c+a+b-d
-d+a+c+b
etc
i.e the program should rearrange the operands and operators in such a way that it should give the same result.
View 5 Replies
View Related
Aug 13, 2013
I have been coding this 2D physic engine for quite some time, I work on the many part of these 2 axis ( x and y ) in the same manner is just that one is an x and one is y
So there is a lot of duplicate code
If there is a bug in one part I have to fix the other axis too which becomes a hazzle because I have to fix the duplicates too. The sample code from my program
for( auto it =bodies.begin(); it != bodies.end(); ++ it ){
sf::Vector2f velocity = it->getVelocity();
if( velocity.x != 0 ){
// do some friction force calculation
[Code] ...
It is even more of a hazzle when I work with 4 quadrant, I have 4 duplicate code each ... How do I write a function for both axis ?
View 9 Replies
View Related
Jun 2, 2013
My SDL app which i made in visual c++ works properly on my pc, but it does not even starts on other computers. I have pasted all the required .dll files in my debug folder along with the pictures and sounds.
View 4 Replies
View Related
Mar 6, 2015
I have this case statement that is not performing as expected. For some reason ASE_OK and ASE_NotPresent both print out. Why is this? ASE_OK is a return value of 0 while ASE_NotPresent is -1.
Code: // Try to create the buffers and store it
switch (theAsioDriver->createBuffers(info, numChannels, bufferSize, callbacksInfo)) {
case ASE_OK:
std::cout << "ASE_OK";
input->bufferSize = output->bufferSize = bufferSize; // Buffer size is stored in both input and output
case ASE_NotPresent:
std::cout << "ASE_NotPresent";
errorMessage = "Could not find input or output devices.";
return NO_DEVICES_FOUND;
[code]....
View 3 Replies
View Related
Feb 3, 2015
I'm a bit stuck on a program that prints out a 8x8 chessboard and Q to represent queens where the user enters input. The intended output is: Code: Enter the columns containing queens, in order by row: 0 3 4 0 0 7 6 7
Q.......
...Q....
....Q...
Q.......
Q.......
.......Q
......Q.
.......Q
but instead I get Code: Enter the columns containing queens, in order by row: 0 3 4 0 0 7 6 7
.Q
.Q
.Q
.Q
.Q
.Q
[code].....
View 2 Replies
View Related