C Sharp :: New Webpage In Same Window?

Oct 17, 2012

I am writing code to open every page in internet explorer and every page will be in new tab but my code open every page in separate window

I am using c#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;

[code].....

View 1 Replies


ADVERTISEMENT

C Sharp :: How To Save Webpage As Image With Web Application

Jun 25, 2012

Is it possible to save web page as image with web application? if yes then how?.I searched and searched and searched but all examples i found were for windows application and i'm facing lot of trouble while converting it for web application.

View 1 Replies View Related

C Sharp :: To Get Child Window Of MDI Page In Focus On Pressing ALT TAB

Dec 7, 2012

I have MDI form which contains mutliple tabs and each tab has its own child form . When user presses ALT TAB from the from to other application its fine but when users presses ALT TAB back to my application it should keep focus on child form last time it was selected.

View 1 Replies View Related

C Sharp :: How To Consume Data From The Web Service In Window Application

Feb 13, 2015

I am developing project on window application in c#.net. I want to consume the data from the web service and that web service is developed in PHP. So, How to give the reference of that web service?

View 1 Replies View Related

C++ :: Send Info To PHP Webpage?

Jul 3, 2014

I was wondering if there was a way for me to send information, say a username and password, to a webpage via a c++ function. I was unsure how exactly to word it, but I did attempt to google it. Here is an example of what I mean.

App starts -> goes to "Https://www.my-site.com/?user=$username&password=$password" -> username/password is valid -> logs them in on desktop app

I do not know much about php, but I am assuming the ?user=$username is setting a variable, correct? I am familiar with sockets, but it seems using the above method, this could be possible without sockets, would it?

Important part:

That is the method that minecraft uses to login players, the question here is what function could I start to send the desktop app to the webpage.

EDIT:: After looking a little more I find that it is probably not possible without sockets, which is fine; however I don't know how to do it still, I would prefer to not use external libraries, such as Curl.

View 3 Replies View Related

C++ :: Using Curl To Get Text Of Webpage

Dec 23, 2014

I'm trying to make a program that will use Curl to retrieve just the text from a website and store it as a string. I'm trying to look at the curl manual to figure out what I need to use, but I'm confused since I'm not familiar with HTML terms. What lib functions I would need to make this program?

View 2 Replies View Related

Visual C++ :: How To Get Country From Webpage

Nov 19, 2013

I need to get the country automatically from code to show in my app. Well, I found this page: [URL] .... which gives to you the country code like I need. But I don't know if there are any form to get this from code.

View 11 Replies View Related

C++ :: Making Console Application To Open Webpage?

Mar 23, 2013

I know how to make a console application open a browser say like by entering

system("start iexplore.exe");

But that just goes to the browsers default start up page. The code to make it open a website of my choice (if its possible to on a console app).

(BTW I'm using Microsoft Visual C++ 2010 Express)

View 2 Replies View Related

C/C++ :: Reading A Webpage To Determine Whether The Item Is In Stock Or Not

Jan 22, 2014

I would like to make a simple program that will go to a online vendor's website to check for stock. I figure that the best way of doing this is to make the program download the webpage's HTML source code then search for the area where the stock availability is.

For example, on this webpage. I could make the program search between

<p class="stockstatus">
and
</span></p>
for
Sold Out
to determine whether the item is in stock or not.

I have a couple of questions. First of all, is this the most viable way to go about checking whether an item is in stock? Second, how should I go about coding it?

View 4 Replies View Related

C# :: Fill A TextBox On WebPage Using OnKeydown HTML Element

Oct 31, 2014

Is it possible to fill a textbox on a webpage using the onkeydown html element in c# using the web control built in. i am totally aware of the normal methods of doing this but the normal methods have failed to work....

i am referring to this [URL] .....

View 6 Replies View Related

C++ :: SDL Window Centering?

Jul 20, 2013

I am trying to do two things that i have an issue with finding on google. the first is im trying to center the main window, but i cant figure out how to do it. secondly i want to make it full screen but the flag for setvideomode doesnt work. is there another way?

View 1 Replies View Related

C++ :: How To Make A Window Always On Top

May 11, 2013

I want to make a window tgat stays always on top like that of a cybercafe software. A window that cannot be closed, minimised, deactivated, etc... with wxWidgets.

So far I've tried making a frame window with the wxSTAY_ON_TOP flag. It works, but not to perfection because, when i press the windows button, the start menu interferes with the window(and taskbar too). Also, the task manager, how to deactivate it.

- a wjndow that strictly stays on top

- deactivate task manager

View 3 Replies View Related

C/C++ :: Make A Window?

Oct 15, 2014

how to make a window in C++? I am trying to make a program that has a boot screen but I want it to be in its own window because it will have it's own pictures in it and text inside too. So not in a terminal but inside a external window.

View 1 Replies View Related

C :: Scanf Is Skipped In Run Window

Jul 11, 2014

when i run it , it skips scanf and not allowing user to enter input.tried adding getchar(), fflush but nothing worked for me.
//file name : sort_array_of_structure.c

Code:

/*Write a program to accept records of the different states using array of structures. The structure should contain char state, population, literacy rate, and income. Display the state whose literacy rate is highest and whose income is highest.*/

#include <stdio.h>
#define M 50
struct state
{
char name[50];
long int population;
float literacyRate;
float income;
}

[code]....

View 3 Replies View Related

C++ :: How To Open A Window Maximized

Apr 28, 2014

There is only one thing I need here. When the paint program is opened I need it to automatically open it maximized. Other than that my code works perfectly for what I'm trying to build.

It has to be maximized so when a friend opens it after I send it to him, it auto maximizes and doesn't start drawing on his desktop.

#include <iostream>
#include <Windows.h>
using namespace std;
int main() {
system("start C:/Windows/System32/mspaint.exe");
FreeConsole();
Sleep(1000);

[Code] .....

View 3 Replies View Related

C++ :: Blinking Window In SFML

May 16, 2013

using SFML in visual studio 2012 ... this code gives blinking window.

#include<iostream>
#include<SFMLGraphics.hpp>
using namespace std;
sf::RenderWindow window (sf::VideoMode(800,600),"GAME");

[Code]....

View 8 Replies View Related

C++ :: How To Set Console Window Size

Oct 28, 2013

Can I make my c++ application to open in a specific sized console window. I want to open my project in n a bigger screen so that all my output is visible. is there any way to do this...

View 6 Replies View Related

C++ :: SDL Window Image Flickers?

Sep 5, 2013

I've encountered a problem, whenever I debug the project, the window shown flickers with the image I'm trying to render and it doesn't respond (shows the loading cursor symbol) also the console window doesn't even open at all, Here's the code:

#include <iostream>
#include <SDL.h>
#include <SDL_image.h>
#include <SDL_mixer.h>
using namespace std;
int main(int argc, char** argv){
cout<<"HI!!!!"<<endl;
system("pause");

[code]....

View 7 Replies View Related

C/C++ :: Get Window Title Text

Aug 16, 2014

I don't know how to get window title text of same process without setting a foreground window.

My code:

Using it, I get window handle.

struct handle_data {
unsigned long process_id;
HWND best_handle;
};
BOOL is_main_window(HWND handle) {
return GetWindow(handle, GW_OWNER) == (HWND)0 && IsWindowVisible(handle);

[Code] ....

This part doesn't work unless I use it with GetForegroundWindow(). But before using it, I have to set it. Is there any way to get window name without setting a foreground window?

unsigned long id = GetCurrentProcessId();
//HANDLE h = GetCurrentProcess();
HWND wind = find_main_window(id);
char window_title[256];
GetWindowText(wind, window_title, 256);
std::string txtt(window_title);

View 4 Replies View Related

C# :: WPF Window Close Button

Dec 10, 2014

I've been doing some looking and this example seems like the common way to remove the close button on a wpf window. Other than catching the on_click event or using that example, is there no better way to disable/remove that button?

View 2 Replies View Related

Visual C++ :: Capture Of Window?

May 5, 2014

I want program to make bitmap from my Window. I also want to do add some additional steps which I will try to add later. But now I want to ask you how to fix the code. For some reason when I debug the code (break on line 73 of capture.cpp) there the pointer pBitmap is 0x00000000 . So how to correct the code to successfully capture Window? Here I give the complete codes:

stdafx.h

Code:
#pragma once
#include "targetver.h"
#include <stdio.h>

[Code].....

Feel free to set correct name of Window on line 17 for FindWindow() function.

PS: The code is remake of script to capture screen, which saved the bitmap to file. This is not what I want because I would be content if I could send (or maybe share!) the bitmap to ahk script which will ask my C++ program for the bitmap.

View 14 Replies View Related

C# :: Draw Single Pixel On Window

Mar 27, 2014

Im new to c#. In c++ I have made a window and painted it with dots and concentric circles, like a radar PPI screen. Trying to do this in c#, I can't find how to draw a single pixel on the window.

Also, what should I be drawing on: the form, panel, picturebox...?

View 2 Replies View Related

C :: Running A VBS Script Int Without Command Window

Dec 19, 2014

I have created an scientific calculator application and I have a VBS script that runs some of the files. I want to create a C program that runs that VBS script. however, a command window flashes before the application opens. So basically I need a short C (or C++) program that runs a VBS script without a command window popping up. I am on Windows 8 and my compiler is GCC/G++ under cygwin. Here is what I have now that DOES NOT work.

Code:

#include <windows.h>
int main()
{
ShellExecute( NULL, NULL, "StartUp.vbs", NULL, NULL, SW_HIDE);
return 0;
}

View 2 Replies View Related

C++ :: Keeping Output Window Open

Jun 24, 2014

My program accepts strings, places them in a vector and then "bleeps!" out words of my choosing, in this case, "broccoli". But I'm having trouble keeping the output window open even with my Keep_window_open() implementation.

#include "iostream"
#include "string"
#include "vector"
#include "algorithm"
#include "cmath"
using namespace std;

[code]....

View 2 Replies View Related

C++ :: Clearing Cin Buffer - Output Window

Jul 10, 2014

I am having some issue with clearing cin buffer. The following code does not wait for me to see the output window and till I hit return character.

#include "iostream"
#include "stdio.h"
#include "math.h"
#include "string"
#include "sstream"
using namespace std;

[Code] ....

I tried
cin.flush, cin.ignore(numeric_limits<streamsize>::max(), '
'); cin.clear(); fflush(stdin);.
None of them worked

I am working on Microsoft visual studio express 2013 for windows desktop.

View 3 Replies View Related

C++ :: Adding Content To Window Using Ncurses

Aug 12, 2013

I'm makeing a card game with ncurses. I have all the card and player objects in order but i'm stuck trying to get the gui to work.

I'm using multiple windows for different players deck and pile. Now to the problem: I can get all the windows to show with borders in the console but i can't get any content printed in the windows and I rally can't see why!?

I have been reading the guide on [URL] but I don't get any further on the problem right now.

PS. the complete code incl. Makefile can be found at:
github.com/DanBrehmer/cardGame
#ifndef GUI_H
#define GUI_H
#include <ncurses.h>

[Code]....

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved