Visual C++ :: Auto Start Function After Cdialog Was Shown?
Nov 19, 2013
I want to start a time intensive function after showing a modal cdialog. How can I do this?
Starting the function in OnInitDialog do not work because the dialog is not shown, then.
View 10 Replies
ADVERTISEMENT
Nov 14, 2014
Right now I am trying to make an alarm clock type program that will start on login and will go off when a certain time is reached. I also want to set a password that will prevent system use until the correct password is entered into the program's input. What functions will I need and how are they used?
View 1 Replies
View Related
Apr 24, 2013
Why the two shown func args are different?
struct MyFileClass {
.....other code
void MyFileOut( TCHAR* pS, DWORD pVar) {
TCHAR PrntStrg1[] = _T("The value of passed ptr->");
[Code] ....
View 7 Replies
View Related
Jan 18, 2012
I am developing a program that needs auto start at windows startup. For that I need to add Registry entries. Also the program needs to read some registry keys. What are the functions i need to do these.. Simply I need to
check if the startup key already exists
add a new key if it doesn't exist
read a key values
View 7 Replies
View Related
May 13, 2014
I have a app with doc/view architekture. Is it possible to show/edit a doc of this type also in a CDialog within this app? How can I do that?
View 9 Replies
View Related
Dec 19, 2013
I have a Dialog with a Browser Control and load a Site with a Video, as the Title says, is there any Way to keep a Dialog in the Format of 16:9 Format, in eg. if someone change the Width or Height of a Dialog, the Height/Width should be changed to? To keep this Format permanent?
My first try was in a OnSizing(UINT fwSide, LPRECT pRect) Function but this is not the best way, because any Time i want to resize my Dialog it flickers terribly and i know i make it in a wrong way.
View 3 Replies
View Related
Oct 27, 2014
Is there any way to allow user to resize a CDialog only in one direction ? I mean, by width, but not by height ? How ? I noticed that overriding WM_SIZE, I can do nothing about this issue ...
View 2 Replies
View Related
Dec 16, 2013
I am making a dialog app using CDHtmlDialog and all the controls are done using HTML.
Now i want to call/display this dialog inside a web browser like IE.
How can i do that?
If i could generelaize this question -
Is it possible to display a dialog app that is derived from CDialog inside IE?
If possible, how to do that?
View 7 Replies
View Related
Apr 14, 2014
In my class:
Code:
class SettingsDialog : public CDialogEx
I have:
Code:
enum { IDD = IDD_SETTINGS_DIALOG };
I have a very similar dialog called IDD_SETTINGS2_DIALOG with all the exact same variables. Is it possible to conditionally load either of those dialogs in that class through a variable pass into the constructor? If so, how do I edit that enum type to add both?
View 2 Replies
View Related
Nov 3, 2012
It shows too many type declaration in the void push function. And I use turbo c++..
#include<stdio.h>
#define size 5
struct tack {
int top;
int item [10];
} void push(struct tack *s, int data)
[Code] .....
View 1 Replies
View Related
Sep 24, 2012
Where in registry the Explorer stores tray icons visibility settings? (Always show, show only notifications, or always hide.)
I know that Microsoft doesn't want us to change these from a program, which may be OK for a home computer, but it becomes a major pain in the ___ for an enterprise environment (as there seems to be no GPO to do this either.) I've seen couple commercial products that were able to do this, so I'm sure there's a "hack" somewhere...
View 2 Replies
View Related
May 23, 2013
Visual c++ 2010 Express
Somehow the watch window is no longer shown in the debugger. It used to be available and I am stopped at a breakpoint.
Is there a way to turn it back on or restore it?
View 4 Replies
View Related
Feb 21, 2014
Is it possible to display a message at the bottom of a dialog box shown in the attachment? If so, how?
View 5 Replies
View Related
Feb 16, 2012
This code is for (hospital management system).
This code allow you to add patients.
There are two types of patients. which is:
1. Normal patient.
2. Critically ill patient.
once you added any patient. You will be able to show all patient using "ShowAllPatient;" method. -> i want the Auto-increment ID Number to appear for each patient has been added.
And you will be able to call a patient to provide a hospital services for him/her using "GetNextPatient;" method.
I need to generate an Auto-increment Number for each (patient) has been added. (Auto-increment Number) but it just should be different for each patient. For example the first patient will have 1, The second patient will have 2. etc. The Auto-increment number should appear for each patient.
View 14 Replies
View Related
Feb 9, 2013
Apparently the default behavior with Direct2D when rendering is to scale everything I render based on the size of the render target/window. How can I prevent this? I want to decide for myself when to scale the image, regardless of the size of the window.
View 1 Replies
View Related
Apr 1, 2015
I referred Auto-close message box.
But i like to view the message box with out title bar and buttons. Is it possible?
View 4 Replies
View Related
Sep 8, 2014
I am new to VC++ 2012. I have this code snippet.
Code:
auto it = query_map.find(U("callback"));
The problem is right under the dot there is a red line the error is
Error1error C2664: 'std::_Tree_iterator<_Mytree> std::_Tree<_Traits>::find(const http::uri::encoded_string &)' : cannot convert parameter 1 from 'const wchar_t [9]' to 'const http::uri::encoded_string &'d:maverickprojectsstrikeforcesrcserverserverserver.cpp26
What is the solution to this error?
View 3 Replies
View Related
Sep 13, 2012
I use standard libraries and INNO Setup, wich is a free setup file creator.
I succeeded in adding NetFrameWork 4.5 installer into the setup (it runs it after installation, and before running my software (named GOFINDER).
Now, i remember that this happened to me, but after three months of programming, mine used to start and still does. But I know it sometimes doesn't start, and I don't know why exactly.
I checked to make sure that I needed only FrameWork 4.5.
But maybe it is because of Visual C++ Runtime wich is not added upon setup.
I will try to check this after posting cause this has just popped up in my mind.
I'm asking you how can I Make sure, that distributing my software won't do that anymore.
Is it because my application file is not set on Run as Administrator?
Cause normally, it opens without this necesity, except as a Shell (well I have to check back but I think it does if I check on the run as administrator checkbox.
The problem is not really with InnoSetup, but I also would like to know how I can check that box automatically upon setup.
they say they have a documentation but I don't find it on my computer.
And... why would it start on my computer, and not on my beta-testers's one?
View 3 Replies
View Related
Aug 25, 2013
I am writing a program to auto login in a web site. Before making next attempt I have to wait for some time like some 10 seconds(it is configurable). But during waiting UI should not freeze. I wrote code something like this. Here event m_hEvent[1]) will be set by another thread after 10 seconds.The problem is UI still freezes some times!
while(1)
{
//m_hEvent[1] will be set by another thread after 10 seconds
dwRet = MsgWaitForMultipleObjects(1, &m_hEvent[1], FALSE, dwMilliseconds, QS_ALLINPUT);
ResetEvent(m_hEvent[1]);
[Code] ....
View 4 Replies
View Related
Apr 21, 2014
I had created a global hook by SetWindowsHookEx with WH_CALLWNDPROC. It is used to create a new toolbar button in specific window in the specific (3rd party) program (named HOOKEE.exe for example), and it works perfectly fine most of the time. Normally HOOKEE.exe is launched by double clicking the shortcut icon on desktop. But this program could be also launched in another way (provided by the provider of HOOKEE.exe), with this new way, HOOKEE.exe is by conhost.exe (on Windows 7), and then I could see (via ProcessMonitor) my hook is loaded by conhost.exe, but not the process HOOKEE.exe. In my understanding global hook would be loaded by whatever process, I have no idea on the exception, and what conhost.exe does to the HOOKEE.exe.
View 13 Replies
View Related
Mar 4, 2014
The program is not showing my full menu just the 0 Exit and the last line of text. This is the full main source file (not implementation file or header file).
#include <iostream>
#include <string>
#include <fstream>
#include <iomanip>
#include <vector>
using namespace std;
struct menuItem{
string itemDesc;
double price;
int menuType;
[Code] .....
View 3 Replies
View Related
Dec 22, 2014
On line 128 I'm attempting to delete an image file that was previously shown in an ItemsControl, but was removed by line 126. So the image is not being shown in the program at the time I'm wanting to delete the file.
Error:Additional information: The process cannot access the file 'c:StudioExit PopupKeith Sketch.png' because it is being used by another process.
My Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
[code]....
View 10 Replies
View Related
Aug 5, 2014
I'm having trouble reading my data from a .txt file into a structure of the format shown in my code. I've made my student database in the program below based on user input and I didn't have a problem with that, but now it's come to input from a file it's making it difficult.
My three tasks are:
(1) A table containing 1 row per student, containing the student ID number and all of the student's marks.
(2) Another table, containing 1 row per student, containing the student ID number and the average mark obtained by that student.
(3) The average mark for each subject.
The assumptions to be made are: The student ID can begin with a zero, and should therefore be read in as a string.The test data will contain 20 students but the program should be able to deal with up to 100 students.Assume there are no more than 4 different subjects.
So based on the first assumption I've arranged the data in the file in an order in which the student ID begins with a zero:
003953 Computing 38
003953 English 88
003953 Mathematics 29
003953 Physics 83
073241 Computing 63
073241 English 99
073241 Mathematics 32
073241 Physics 73
...for twenty students, 80 lines of data. Now, on the assumption they must be read in as strings, this is what's making it tricky to store in the structure because, I've got 80 ID numbers but 20 repeat themselves 4 times. Once I've got this data in the structure below the tasks I won't have a problem with because I can just base it on a user input program but the data's already stored instead.
Below is my code for user input associated with task (1). In this example the IDs are stored as ints but for the file they will be strings. It compiles fine, displays the data as shown in the assignment sheet, but I don't know how to get the data into my structure. I can store the data in a structure of three arrays using fscanf() no problem, but it's not very "workable" for what I need to do with it.
Code:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
[Code].....
View 11 Replies
View Related
Apr 20, 2014
Is there a way to auto align a cpp file?
View 7 Replies
View Related
Jan 28, 2014
Code using auto-implemented property:
public class MyClass {
public int age { get; set; }
}
static void Main(string[] args) {
MyClass testing = new MyClass();
testing.age = 44;
Console.WriteLine(testing.age);
}
output: 44
Code using regular variable declaration:
public class MyClass {
public int age;
}
static void Main(string[] args) {
MyClass testing = new MyClass();
testing.age = 44;
Console.WriteLine(testing.age);
}
output: 44
Why use the auto-implemented property when you can just as equally use the second code block to achieve the same thing?
View 14 Replies
View Related
Apr 24, 2014
I write these code in 2 different ways and I get the same result. I just want to make sure that they both are for declare a pointer using "auto"
The first one:
int varName = 10;
auto var1 = &varName;
cout << var1 << endl; //prints, varName address
cout << *var1 << endl; //prints, varName value
The second one:
int varName = 10;
auto *var2 = &varName;
cout << var2 << endl; //prints, varName address
cout << *var2 << endl; //prints, varName value
It doesn't matter if I put dereference operator or not, I still get the same result. I just want to make sure that var1 and var2 are both a pointer.
View 5 Replies
View Related