C/C++ :: Showing Multiple Web Pages With ShellExecute?
Mar 16, 2014
I have function like this:
void OpenURL(LPWSTR url) {
//Notice! 6 parameters, not 7
ShellExecute(NULL, L"open", url, NULL, NULL, NULL);
}
If I then use this function like this:
OpenURL(L"http://www.google.com/");
OpenURL(L"http://bytes.com/");
OpenURL(L"http://www.yahoo.com/");
sometimes only the first web page is opened, but sometimes all of them. What I should do so that all the web pages opened with OpenURL-function are always opened? Also, better ways to open web pages are very welcome. I use Visual Studio 2008 Express and Visual Studio 2013 Express.
View 4 Replies
ADVERTISEMENT
Oct 24, 2014
For now the app creates a new DateTime property which is binded to a label and shows the user the current time. Eventually I want to have the ability to select the timezone you are in, change font/background colors/etc etc... But that is all in time. My current step that I am trying to implement is having a button click (Binded to an event method) change screens. I find it hard to explain in words, but I would like the same Window to be used, just have different functions on the other when the button is clicked. So for example...
The only way I have found to do this so far is to create a whole new form or create tabs. While those are all good and have their place. I know that I need to start breaking up my code into classes, I am developing a bad habit throwing everything into the MainWindow Class...
Here is the code if needed:
XAML:
<Window x:Class="ClockApp.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Name="MyWindow"
Title="Alarm Clock App" Height="180" Width="360" Visibility="Visible" ResizeMode="NoResize" WindowStyle="ToolWindow">
[Code] ....
View 6 Replies
View Related
Sep 27, 2014
I have problem with using ShellExecute For a simple calling ShellExecute I am using
ShellExecute( NULL, "open", "test.pdf", NULL, NULL, SW_SHOWNORMAL );
and I am able to open test.pdf file in working dir.
How can I use Edit box and put inside some name of file and after that use ShellExecute(with button...) and open file which name I typed in Edit box
I am using Borland Builder C++ 6.0
View 7 Replies
View Related
Dec 16, 2014
I'm not new to C++ programming but I'm not an expert either. I'm using Borland C++ builder 5. I know it's extremely antiquated, but I have no choice right now. Writing a database reporting program, using third party report building components (ACE) which has it's own print dialogs built in. However, in this report we cannot use the build in dialogs and have to use a standard TPrintDialog. When the TPrintDialog is executed and you click print on the dialog, only one page is sent to the printer.
Here's some code:
// The dataset for the report is executed prior to this code and does not //change.
Once the data is gathered, the report can be run as often as you like // and the same data will appear in the report.
Code:
if (cbxShowForm->Checked){
OverlayBand->Visible = true;
AllowPrint = false;
SctReport1->Prompt = false;// disables ACE Reporter Print Dialog
SctReport2->Prompt = false;
[Code] ....
View 1 Replies
View Related
Jul 9, 2013
I'ma firmware writing, and usually use only C language (not my decision, unfortunately!).In many application we've only a text display (2 rows 16 columns ascii char, or 4x20 or something else). But the question can be used also for semi graphics panel and so on.
I'm looking for an example / library / sourcecode to handling all the pages in the project. When the program start you've a 1st page (wth info abt release, hallo screen and so on), then with a arrows buttons you can navigate throught many pages. Some of these can be called by SW (or HW) events. (Button, alarm, end of job ...) In abt 20 year of experience3 I?ve seen many type of different code.
View 1 Replies
View Related
Mar 8, 2014
I wanted to remove previous tappages from tab control and add new tab pages on button click, but previous tab pages are not getting removed
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
[code]....
Update:i have added the below code on button click and i am able to create a new tabpages
this.Controls.Remove(tc);
View 6 Replies
View Related
Feb 11, 2014
I created a richtextbox to input the text that I want to print, the command for printing which is the button and instead of printdialog box((PrintDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK)) to be display, I created combobox which will display the available printers and then print.
Like this code bellow .
To get the available printers:
foreach (String printer in PrinterSettings.InstalledPrinters)
{
cbox.Items.Add(printer.ToString());
}
And the button for printing :
PrintDocument1.PrinterSettings.PrinterName = cbox.SelectedItem.ToString();
PrintDocument1.Print();
Now what I want to do is I will add some textbox to input the page number to be printed . For example the current pages in the richtextbox are 12pages when I'm going to run the program I will input in the textbox the page/s that I want like (3-7pages). How could it be ?
View 1 Replies
View Related
Feb 17, 2014
I am working on writing a game that progresses from one "page" to the next. However, with the knowledge and experience I have right now I am only able to hardcode the "Pages" into the source code. I would like to learn how to put the pages into another file "default.pages" and have the program read the file and input the information into itself after I have compiled it. Then, if I change the pages file I simply have to restart the program instead of recompiling all of it. Someone said I should use XML and input it into an object and use that object, but I'm not sure how to do that yet.
I have 3 files right now:
main.cpp, pages.cpp, and pages.h.
//MAIN//
#include <iostream>
#include <string>
#include <fstream>
#include "pages.h"
using namespace std;
const Page gamePages[] = {};
[Code] ....
View 9 Replies
View Related
Oct 21, 2012
How can I calculate the total of pages for all file(pdf,word,excel,txt...) types in a directory with c#?
View 2 Replies
View Related
Jan 30, 2013
I am trying to include library paths in VS 2012 through the new property pages.I downloaded and installed mpich2-64 bit libraries under "C:Program FilesMPICH2include" and set the include path in Microsoft.cpp.x64.user property file so the path now looks like
Code:
"$(VCInstallDir)include;$(VCInstallDir)atlmfcinclude;$(WindowsSDK_IncludePath);C:Program FilesMPICH2include;"
But somehow it fails to find the files.
Code:
fatal error C1083: Cannot open include file: 'mpi.h': No such file or directory
The file is definitely there, so what could be the problem ?
View 1 Replies
View Related
Jan 19, 2013
SLD_ttf lib and I have been following the Lazy Foo' tuts on it but the text is not appearing. I have found out that it is not loading the font as I have added in the code saying if it has failed.
Code:
font = TTF_OpenFont( "lazy.ttf", 28 );
if( font == NULL )
{
return false;
}
i have saved this font in the project (project name/project name/lazy.ttf).
View 19 Replies
View Related
Jul 1, 2013
I am trying to display images on top of my Background image gui, so like buttons an stuff but the problem is that there not showing ontop. I can only get one of them to show
// includes
#include <windows.h>
#include <stdio.h>
#include "res.h"
// defines
#define LWA_COLORKEY 0x00000001
#define LWA_ALPHA 0x00000002
[Code] ....
View 1 Replies
View Related
Dec 7, 2013
I've run across this issue before, but for the like of me, I can't figure out what keeps causing it. The problem compiles and runs as expected; however in the salaried object (Employee #1 in main.cpp) the console displays the number of vacation days as -858993460 instead of the value entered.
The parent Employee class is abstract with calculatePay() and displayEmployee() being pure virtualls and with a Benefits, Salaried, and Hourly class derived from it.
The Salaried displayEmployee() and the portion of the Main.cpp that contains the salaried object follows. What causing this?
Salaried displayEmployee()
Code:
void Salaried::displayEmployee()
{
cout << endl;
cout << "Employee Information" << endl;
cout << "----------------------------------" << endl;
cout << "Employee Name: " << setw(7) << FirstName << " " << LastName << endl;
cout << "Gender: " << setw(12) << Gender << endl;
[Code] .....
View 2 Replies
View Related
Oct 6, 2014
I just checking but confused with float. in that code same size int, and same type double are working but float showing nothing in printf..why?? i'm using GCC compiler int 32bit win7 os
Code:
#include <stdio.h>
int main() {
char arr[10] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };
printf("Size of char=%c
", ((char *) (&arr[0]))[1]);
[Code] ....
View 14 Replies
View Related
Feb 19, 2014
As part of a project i want to display the speed of a small wheel on a 7 segment display. I am using a hall effect sensor to pick up the pulses of the rotation. I am not sure how to write a programe on C to calculate the RPM from this....
View 4 Replies
View Related
Nov 26, 2013
#include <iostream>
#include <cstdio>
#include <fstream>
#include <string>
#include <iomanip>
using namespace std;
const int SZ = 55;
[Code] ....
View 1 Replies
View Related
Nov 21, 2014
My question is why my on my code there is 10 zip code and i want to show the first digit, the problem is the first digit does not match the zip code for example the zip code is 45805 it should be '5' however, my code shows other number!
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
[Code].....
View 4 Replies
View Related
Nov 19, 2013
i have been making code of a chessgame and now sddenly computer freezed and now there's not code in .cpp file! Although my .cpp file shows size of 16kb but when i open it . there's nothing except bank file
View 1 Replies
View Related
Feb 7, 2014
I'm programming tic tac toe but the board is not showing numbers, and it is simply stating the winner without any input: (the win conditions are not complete, but it shouldn't matter).
#include <iostream>
#include<string>
using namespace std;
//Write a two-player tic-tac-toe game; use enums when possible to represent the values of the board
char ticBoard[3][3];
char board[10];
void showBoard();
bool moveIsValid(int m);
int whoWon(); // 0 tied, 1 p1, 2 p.2
[Code] ....
View 6 Replies
View Related
Oct 19, 2014
I'm receiving an error that an array has not been initialized but I'm not quite sure why. Also, I realize a list may be better in this scenario but I would still like to know what I'm doing wrong.
Warning in the IDE
Warning3Field 'Routines.SvrMain.Servers' is never assigned to, and will always have its default value nullD:Google DriveCodingC# ProjectsNONameWindowsFormsApplication1WindowsFormsApplication1Routines.cs26638WindowsFormsApplication1
Error that pops on line
Servers[Index].Address = Parser.ReturnAddress(); //returns an IPAddress
Object reference not set to an instance error
ServerDetails Class
public class ServerDetails {
public IPAddress Address; { get; set; }
public int Port { get; set; }
}
[Code] ....
View 12 Replies
View Related
Feb 29, 2012
I wanna know why the program doesnt show "Invalid Letter Entered" when i enter any letter other than A S D or M
//Processing the data
if (letter== 'A'||'S'||'M'||'D')// checking Add, subtract, multiply or divide {
if (letter== 'A')//Adding the integers
cout<<"Adding two integers = "<<first + second<<endl;
else if (letter== 'S')//Subtracting the integers {
[code]......
View 1 Replies
View Related
Nov 30, 2013
Same solution that I was having compiler errors on yesterday. We're working with inheritance and the program is supposed to be to create and display information for default Employee objects, Hourly Employee objects and Salaried Employee objects. Everything compiles as is, but I'm running into two issues that I can't figure out.
1) In both the hourly and salaried objects, the wage, hours, and management level attributes all displaying their default values. I'm almost positive that this has something to do with the str to int and str to double conversions that I'm using (currently have atoi and atof in the file, but I've also tried stringstream, but still had to same problem). Any thoughts as to what I'm missing?
2) the assignment calls for the Benefit benefit member in Employee.h to be protected. However this makes the member unaccessible when I try to use it in the EmployeeMain.cpp in order to set the input for the Benefit class members. I had to make the Benefit benefit member public again to get it to compile. How would I set the input for the Benefit class members while the Benefit benefit member is protected?
Solution files follow:
EmployeeMain.cpp
Code:
#include "Hourly.h"
#include "Salaried.h"
void DisplayApplicationInformation();
void DisplayDivider(string);
string GetInput(string);
[Code]....
View 3 Replies
View Related
Feb 19, 2014
I'm writing a program that shows check fees for different amounts of checks. My other fees are showing up right but the .10 cents is not. It's showing up as .08 cents per check when I run the program.
Oh yeah the + 10 is for a $10 fee
Code:
else if (checks < 20 || checks >= 0) {
fee = .10 * checks + 10;
cout<< "Bank service charge for the month is $ " << setprecision(4) << endl;
}
View 3 Replies
View Related
Mar 26, 2014
When i am entering single character instead of 'miz' then it is working great. But when i am using multi character like 'miz' it is showing error output. i did this program with c++ it is working but not working in c.When i am running this program it is showing {warning] multi character constant.
Code:
#include<stdio.h>
#include<string.h>
main()
{
char a;
printf("Please Enter your First Name: ");
scanf("%s",&a);
[Code]....
View 1 Replies
View Related
Jun 8, 2013
So I have a small game I'm making using OOP principles, I know it's a little bit of overkill but it's just for educational purposes. I have a sprite character that can be moved around with no problems, but I made a sword for him as a separate sprite that doesn't follow him. The sword sprite is supposed to cover his arm and his body as it swings, but it just stays in the upper left corner.
I messed around with the initialization of the sword in the main.cpp and I changed in sword.cpp and sword.h and it still is showing up in the same place. I even looked at the GetX() and GetY() statements I made and they seemed to work fine and when I debugged it, the variable values showed up correctly, but the sword doesn't move.
View 3 Replies
View Related
Feb 15, 2014
I am new to using classes, and am running into an issue already. I have created the class, and am in the process of adding data to the classes. I have added one piece of data, and now just want to see if I can get it to show in another function, but I am not sure why it is not showing. What about getting the data to show. Then, I will be able to work on adding the rest of the info.
#include <iostream>
#include <cctype>
#include <stdio.h>
#include <stdlib.h>
using namespace std;
//******************************Bill Class**************************
class bill {
[Code] ....
FYI - This is only the relevant code. There is more for this that I have not added.
Error #1: error C2679: binary '<<' : no operator found which takes a right-hand operand of type 'std::string' (or there is no acceptable conversion)
Error #2: error C2679: binary '<<' : no operator found which takes a right-hand operand of type 'std::string' (or there is no acceptable conversion)
View 2 Replies
View Related