Popups Windows On The Same Page
Apr 9, 2010
I'm new on the Development Block, and I would like to know if there is anyone who can help me with popup windows. What I need is a popup window that will apear on the same page as the one on this link: [URL]
View 2 Replies
ADVERTISEMENT
May 17, 2012
I need sample vb.net code to save single windows form as many page and reload the page whenever i call that page...
View 1 Replies
Apr 4, 2010
How to block popups
View 1 Replies
Aug 11, 2010
i am having a tad of a problem when it comes to popups and new windows. I am currently opening new windows in my webbrowser using the href command and this has been working fine for about 40% of websites but I am running into a few problems as the other 60% of popups are still opening in Internet Explorer windows.I am currently using the
On Error Resume Next
Dim myElement As HtmlElement = CType(TabControl1.SelectedTab.Controls.Item(0), WebBrowser).Document.ActiveElement
Dim target As String = myElement.GetAttribute("href")[code]....
I am having problems loading login forms (asking for username and password to connect to the internet) and any window that uses javascript commands in the href to load the popups.For example:If anyone has encountered such a problem before and knows how to fix it it would be great if you could post up some code or a link to a walk through so I can see how its done.
View 2 Replies
Dec 26, 2010
How to get a nice pop-up of default values for a function? Here's what I mean: I assume it's an enum or object but I'm not sure where to define it or what exactly it would be called.
View 4 Replies
Aug 18, 2009
I have made a simple web browser in VB Express 2008 that goes to www.metvuw.co.nz for weather viewing. The problem is when you click on a link to show a picture (it is not just a picture it is a html page) of the weather it opens up in a new window in IE, is it possible to have it just open in the same window (in my browser) and use the back button to go back to the previous page? Ie just like when you click a normal link that doesn't open up a new tab or window.
View 2 Replies
Oct 8, 2009
My help files have a lot of image maps which link to popups, which I implemented as described in the Help for HHW. They work fine in the context of the help system, but if I open the html file in a browser (Firefox or IE), they don't work - nothing happens at all when I click on the hot spots.
View 2 Replies
Jan 21, 2010
If my program adds a registry entry, will it cause a UAC popup?
View 3 Replies
Sep 21, 2009
How do i block popups on a tabbed webbrowser? I know how to do it on one thats not tabbed though. This is what i got so far but it shows an error that says exactly "Value of type 'System.Windows.Forms.Control' cannot be converted to 'System.Windows.Forms.WebBrowserDocumentCompletedEventArgs.'"[code]
View 5 Replies
Oct 9, 2010
I was wondering, how can I block pop-ups (Ex: Script Errors, advertisements) in a Visual Basic web browser?Also, I was wondering is there a way to add a web browser to every tab I add. What I mean is to get my window problem to work, I had to add a webbrowser to a tab page. How can I make it to where I add a new tab, that it will automatically add a new web browser
View 5 Replies
Mar 31, 2010
I have a large project in Vb.net which drives a web browser control around. What's the best, and easiest, way to manage browser pop ups? Note, I am not just looking to cancel or close them. I need to manage them just like the main window.
View 1 Replies
Apr 26, 2009
I'm using the WebBrowser control to automate some things in the background of my application but I'm getting this popup. How can I disable these popups in the webbrowser?
View 2 Replies
Aug 27, 2010
I am using Visual Basic 2008. However, the Report a Bug function does not work, which in itself is a major bug.While I am typing in the code editor, these annoying popups keep popping up and completely blocking my view of the code. I have no idea what these popups are showing and do not need them. I have not been able to find any way of turning them off. I consider this another major bug.
View 7 Replies
Jun 23, 2010
i was wondering is there anyway to stop the error popup messages when i assign a datasource to a DataGridView (and there are errors). i was hoping i could wrap the assigning statement into a Try Catch and handle the errors myself instead of having them popup.
View 2 Replies
Mar 8, 2012
Not an "ad" popup, but a prompt or a "yes/no" question.
View 5 Replies
Apr 6, 2012
I have a web application that allows a user to view family members.
When the user clicks on a family member, it displays the member's basic info. There is also a grid displaying that family member's related family members. (e.g. User can click on the Father link. From that popup, they can then click on the Father's Father link, then click on the Father's Father's Grandson link, etc.).
To reduce the number of popups that appear on the screen, I want to prevent the user from continually clicking on family links past three members.
What is the best way to keep track on how many data forms have popped up? Or can this reliably be done with a web application?
View 2 Replies
Jan 10, 2009
Im making a webbrowser prograam! and i want it to automatic press on enter or just on OK if a popup comes up!
How i do this? I also not want it to press my enterkey, since i want to make this work when i got the program minimized too!
View 2 Replies
Jun 14, 2011
Is there any way to do a data base with texboxs im starting to hate userinput popups. And Without using Access DataBase
View 2 Replies
Oct 21, 2010
I'm trying to handle browser popups using the NewWindow event of the WebBrowser control. The one main thing I needed is the cookie from the main browser control on my form to be passed to the popup window. Below is the only way I've been able to open the popup and pass the Document.Window.Opener value to it so that when java script is executed, it knows where the opener window is. I am getting the following error right now when trying to set the cookie from my webbrowser control to the iexplore instance of the popup window that opened.
[Code]...
View 1 Replies
Apr 13, 2012
I am new for asp development, i have made a project in vb.net 2010 now i want to run that projects' form in asp.net or webbrowser.
View 2 Replies
Feb 22, 2010
Does windows app have master form the same as master page in asp.net?With master page I can add company logo and app name only one time.
View 1 Replies
Mar 9, 2012
net to make a Windows Phone application. I have a listBox on page1 called listBox1 and in page 2 I have a button called btnAdd. I want to be able to add an item into the listbox1 from page1 whenever btnAdd is pressed in page2. I knew how to do this on VB6 but it seems different on vb.Net.
View 1 Replies
Feb 14, 2012
I am developing a windows application using vb.net, I have a simple html page with place holders in it, I load the page into a stream reader, replace the place holders and then I need to print the html content, anybody have any idea how to print the html content as html and not source.P.S. code in vb.bet or c# is ok.
View 1 Replies
Feb 14, 2012
I have a simple html page with place holders in it, when the user fill some info i replace these info in the html page and then print this page, my question is how to print an html page with its embedded format?
View 1 Replies
Mar 7, 2011
I am new to ASP.net 4.0 and am learning and writing a web site application in VS 2010 that will eventually become our company's intranet web site. As part of the start page, I want to display the user's name in a welcome message like: "Welcome: E Young". The user's login name should come from their Windows login when the log into their computer. Once logged into their computer, they will then start IE8 and access our company's intranet. The start page of our intranet site should display the user's windows login name.
The company's intranet is being hosted on a new, virtual file server that is running Windows 2008 R2.I installed IIS 7.5 and have attempted to configure it but I am new to IIS 7.5 also. The users will access the company's intranet via IE 8 using the url for our intranet site. I am developing the ASP.net web site using VS 2010 on my development computer then transferring the files from my computer to the new intranet computer's C:Inetpubwwwroot folder.
That all seems to be working fine except for the Welcome message. When I run the web site project from my VS 2010 IDE on my development computer, I can see my Windows login name correctly displayed on the web page. However, after I copy the two web site files from my development computer to our intranet server's wwwroot folder, then attempt to show the intranet web page from my development computer using IE 8, nothing is displayed. Put another way, my Windows user name displays correctly in VS 2010 IDE on my development computer but not from our intranet. The web.config file has authentication mode="Windows"
IE 8 does have windows authentication enabled on my development computer as does IIS 7.5 on our intranet server yet the web site is not able to pickup the user's windows login name and display it for some reason.
When I look at the Authentication window in IIS 7.5 it only shows the following three authentications: Forms, Anonymous, and ASP.Net Impersonation. I ran a command line program that turned on Windows Authentication, but it does not show Windows Authentication as enabled in the Authentication screen in IIS 7.5. The three authentications I just mentioned are disabled.
[Code]...
View 3 Replies
Jun 12, 2011
I have a text input in textbox1 in tab page 1 and i want that text from textbox1 will be displayed in textbox2 in tab page 2.
View 3 Replies
Aug 2, 2010
I have an aspx page and I want to access an application on the client after seeking user permission. Both the windows application and the website are to be made in VB.NET.
View 2 Replies
Mar 12, 2012
i would like to know how i can get a page source code using vb.net webclient for windows phone 7.I found a C# example but i need a vb.net example.
C# (The code i found on internet)
public void GetFeed()
{
WebClient client = new WebClient();
[code]....
View 1 Replies
Oct 5, 2010
I wrote a page Page method in my aspx page. in web service method I need to call FindControl method return textbox and get text box value. But my findControl will take MasterPage object to iterate.
see my code
<script type = "text/javascript">
function ShowCurrentDateTime() {
$.ajax({
[Code]....
How to pass Master Page object or Page to Page method?. So I can use in Sared method.
Is there any way I can access Textbox value directly in Page method? I need access couple of controls in Page Method.
View 3 Replies
Nov 4, 2010
HOW TO RUN THE JAVASCRIPT FUNCTION ON PAGE ONLOAD EVENT IN CONTENT PAGE OF MASTER PAGE.? means i have masterpage and the content page of master page namely default.aspx in vb.net.i wanna run javascript function in Default.aspx and i have called the function body onload in master page.when i run my website it shows the error "" Microsoft JScript Runtime Error : Object Expected ""
View 4 Replies