C# :: WPF Browser Application Not Displaying Controls?
Nov 22, 2014
This is my very first attempt at running a wpf browser app... I've create the project and i can see controls when i add them to the entry page, here's the default for the page
<Page x:Class="SandBoxWeb.Page1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
[Code].....
and i can see a nice bright green square with an orange outline. But when i debug, a new tab opens up in my browser and i can't see a single thing,it's just a white screen.
View 6 Replies
ADVERTISEMENT
Jan 31, 2013
there is a way to iterate through the controls on a webpage. For instance, I tried EnumChildWindows using the parent window of the browser, but I haven't had any luck - it returns nothing. s where I can start researching how to find the child controls?
I'm using Visual Studio 2010, programming in C++.
View 6 Replies
View Related
Nov 8, 2012
i want to open image in windows from application but it's not showing the image. here is my code/////
using (OpenFileDialog dlg = new OpenFileDialog())
{
dlg.InitialDirectory = "c:";
dlg.Title = "Open Image";
[Code].....
View 1 Replies
View Related
Nov 29, 2014
What happens if I make a server application using tcp protocol and then establish connection with a client application but the server crash and then the client send data. Will the data be lost or the system will continue trying to send it?
View 2 Replies
View Related
Jan 11, 2013
I want to create a plugin with c++ which will be supported by all Browser,i am stuck how to start.
View 2 Replies
View Related
May 9, 2012
I want to create an application that starts an application and passes input to that application. I know how to start a process using the classes in System.Diagnostics, but I don't know how to pass data to the process.
For example, and this is just an example, I would like to be able to automatically start an application that requires a username and password and automatically enter the username and password. Of course, that might open the door to security vulnerabilities, but that's not the point of the exercise.
How to implement the functionality I described? Is there a general way to go about doing this or does it depend entirely on the idiosyncrasies of the application in question?
View 2 Replies
View Related
Oct 26, 2013
Any chances for a c program to check for browser inputs?
View 1 Replies
View Related
Dec 8, 2014
I'm using a Windows.System.Forms.Webbrowser and the document text contains
...<style type="text/css">
Table {
page-break-after: always;
}
table:last-of-type {
page-break-after: auto
}
</style>...
As soon as call ShowPrintPreviewDialog() to show the print preview dialog, it appears to be ignoring
table:table:last-of-type
because the last page in the document is blank.
View 2 Replies
View Related
May 4, 2014
I am making a web browser and I have successfully made it so it shows the actual html but I want to know how to run the html within the program. I am using mac so it can't be the #include "windows.h" stuff and preferably I would like it to be cross-platform.
View 3 Replies
View Related
Aug 11, 2013
I'm trying to create a simple webbrowser at my app.
code sample:
....
ATL::CAxWindow m_wndContainer;
ATL::CComPtr<IWebBrowser2> m_spWebBrowser;
HWND hWnd = m_wndContainer.Create(NULL,
CRect(0,0,200,100),
(LPCTSTR)0,
WS_CAPTION|WS_THICKFRAME|WS_OVERLAPPED|WS_MINIMIZEBOX|WS_MAXIMIZEBOX);
CoCreateInstance(CLSID_WebBrowser,NULL,CLSCTX_INPROC,IID_IWebBrowser2,(void**) &m_spWebBrowser);
...
everything is work fine except the fact the it seems that it create an IE version 7.0 and my machine have IE 8 installed.
it not suppose to create the IE according to my installed version?how do i suppose to do it?
View 1 Replies
View Related
Sep 13, 2014
I have written a text based web browser from scratch. Meaning that I'm not using libcurl in any way to retrieve the web pages.Now I'd like to add HTTPS functionality to it, but I can't seem to find a guide like Beej's Guide to Network Programming related to HTTPS.
View 3 Replies
View Related
Sep 3, 2014
I have been working on my own custom web browser. If i insert a web browser in my tab control and name it i can easily just go webbrowser1.Navigate() in my button click to use the webbrowser methods.
I made a method CreateTab and it automatically adds a web browser to my tab along with a default web page.
My problem is selecting this webbrowser in other button clicks so i can call Home, Back, forward, etc.
Here is me method for creating a tab.
private void CreateTabItem()
{ //create a new tab
TabItem item = new TabItem();
item.Header = "Fitness" + i ;
WebBrowser browser = new WebBrowser();
//browser.Name = "Website";
[Code] ....
View 1 Replies
View Related
Sep 17, 2013
My earlier attempt to get an answer didn't work, so i want to make my question more straight forward.
Is it possible to create a C++ DLL with Web Browser like CDHtmlDialog embedded in it?
View 1 Replies
View Related
Jun 16, 2014
I would like to know how to make Lynx follow meta refresh links automatically, At the moment it just provides a "clickable" link you can accept the refresh. I would like this to be automatic.
--- Initial problem ---
We have a DB Backup script written in PHP/HTML and uses the page refresh to loop the backup (every 2 minutes). Using a full fledged browser is not really an option on our machine as the resources are very tight. So we tried Lynx and it has the perfect footprint but the only problem is it doesn't refresh the page.
I'm thinking I just need some way to force Lynx to reload the page after the time has elapsed. Maybe create a new function that starts a timer and hold the url until the timer ends then force Lynx to visit that url. Im a PHP Procedural kinda guy and I cant think how to set this timer event safely without corrupting or crashing the program or creating memory leaks.
(source code im using: [URL])
This is the function that handles meta refresh.
Code: /*
* Given a refresh-URL content string, parses the delay time and the URL
* string. Ignore the remainder of the content.
*/
void LYParseRefreshURL(char *content,
char **p_seconds,
char **p_address)
[code].....
View 4 Replies
View Related
May 11, 2012
Is there a way to get the URL when the user opens a web page with a common web browser?
View 3 Replies
View Related
Jan 5, 2014
I'm trying to build an app, but i don't know which is the best language choice. For starters, the app should be able to:
1. run from context menu
2. when selecting some text from a web browser (ff, ie), that text is captured (preferably not in clipboard) and sent as argument to the program via context menu and the program starts executing...
Is this possible?
e.g. [URL] ....
View 2 Replies
View Related
May 19, 2013
I create an IWebBrowser2* object and attached it to new window.
I create also a simple html page containing JScript alert(JSON) command.
when i load the page from IE the page works fine.but when i load the page from my object i get JSON undefined.
do i need to set my object with some setting?
View 1 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
Nov 4, 2014
I was looking around on the internet and i noticed you could change internet explorer's emulation mode from Desktop to Windows Phone, i was wondering can the same thing be achieved in the C# webbrowser as i know it heavily rely's on IE. I know you can change the standards on the browser through the IE versions but is changing it to Windows Phone Brwoser possible, if so how can i change it?
View 5 Replies
View Related
Oct 11, 2013
I have a COM Object created using ATL (without MFC Support)
The Object has 1 method that opens a Dialog (that does all the rest) and when finish - returns 2 values back (1 is enough)
Currently I call it from another EXE:
hr = CoCreateInstance(
CLSID_MyControl,
NULL,
CLSCTX_INPROC_SERVER,
IID_IMyControl,
(void**) &pMyControl
);
and then:
hr = pMyControl->MyMethod (ATL::CComBSTR(InputString1), ATL::CComBSTR(InputString2), &IntReturned, &IntReturned);
Is it possible to call it as is from a browser ?
How can I Instantiate the object and invoke my method (with params) from the browser ?
will it open the dialog ?
View 3 Replies
View Related
May 7, 2014
I am dynamically creating a data set and row and on one row i have a calender input text field which shows the date. My boss would also like me to add a calender icon on the same row next to the input field.
AddGridRow(dt, "Rating Date <font color='red'>(252)</font>", "ST_RATG_DA", "ST_RATG_DA_ID", paircode: "-1");
They want the calender to be right after the text box row definition:
AddGridRow(DataTable dt, string itemName, string dataColumn, string pubIDColumn, bool isPARAMTR = false, string paramTable = "", string paramColumn = "", string paircode = "")
View 4 Replies
View Related
Oct 4, 2012
i have task scheduling application which execute every 30 minute i want to keep this process when system is log off in c# console application
View 2 Replies
View Related
Aug 9, 2013
I have an C++ application which uses Microsoft Web browser ActiveX control to launch any URL within the application. The browser is embedded in C++ form and It's working fine with all the feature Microsoft has exposed through Interface(IID_IWebBrowser2).But while any url that is using session cookie has been launched, even after closing the browser the session cookies are not getting deleted. For example if user login info is stored as session cookies,the url is using the cookies and getting launched without asking for user log in info.
But if I close the browser, and again relaunch , the cookies should be deleted and the url will not find the cookies to be used for log in . That is not happening here. Although this is session cookies , it's not getting deleted and being used by embedded browser. However, if the url is launched in IE, it is behaving as expected.
So, Do I need to delete the cookies explicitly? If Yes, How to do that?
View 2 Replies
View Related
Feb 1, 2015
When I drag a control onto the Xamarin studio layout the control just slides back into the toolbox again. The only way to add controls is to edit the .axml file which is not at all ideal.
I have tried re-installing all the components again multiple times and even tried out using a different computer, still no luck. How to use the mono framework on the Visual studio IDE and build the apk using Xamarin studios?
Details -
Xamarin studio 5.7
Tested on Windows 8, 8.1 and 7
View 10 Replies
View Related
Feb 21, 2015
I created a simple calculator in Win App. When I played it, the form is displayed blank. Not a single control is shown.
The only thing I've done differently is adding a Coded UI Test in my test project. This is the first time I'm going to try to add a coded UI test so I wonder if that's the cause for this.
View 4 Replies
View Related
Aug 16, 2014
If I rename a control, when I build, I get an error because deep in the code, the old name exists, but my rename doesn't change the old name. Am I doing rename wrong? (I just go to "Name" in properties and type the new name.)
Same idea with control deleting. So I add a control (textBox, label, whatever). I later decide to delete the control. When building, it still has code for the old control and won't let me proceed.
View 2 Replies
View Related